Download OpenAPI specification:Download
This API provides the following capabilities for clients.
This API is designed on top of the following specifications.
OGC API Features (WFS 3) specification is standardized by OGC. OGC API Features specifies the fundamental API building blocks for interacting with features. See also https://ogcapi.ogc.org/features/
Spatial Data on the Web Best Practices defines that
Abstraction of real world phenomena. A digital representation of a real world entity or an abstraction of the real world. Examples of features include almost anything that can be placed in time and space, including desks, buildings, cities, trees, forest stands, ecosystems, delivery vehicles, snow removal routes, oil wells, oil pipelines, oil spill, and so on. The terms feature and object are often used synonymously [ISO-19101]. > Ref: https://www.w3.org/TR/sdw-bp/#dfn-feature
Follows OGC API - Features (WFS 3) Part-1 Core: 7.2.
{- "title": "The AxelGlobe Tasking API",
- "description": "Access to the tasking capabilities on the AxelGlobe via a Web API that conforms to the OGC API - Features (WFS 3) specification.",
- "links": [
- {
- "rel": "self",
- "type": "application/json",
- "title": "Landing page"
}, - {
- "rel": "service",
- "type": "application/openapi+json;version=3.1",
- "title": "the API definition"
}, - {
- "rel": "conformance",
- "type": "application/json",
- "title": "OGC API - Features (WFS 3) conformance classes implemented by this server"
}, - {
- "rel": "data",
- "type": "application/json",
- "title": "Metadata about the feature collections"
}
]
}
Feature collections metadata. Follows OGC API - Features (WFS 3) Part-1 Core: 7.11.
{- "links": [
- {
- "rel": "self",
- "type": "application/json",
- "title": "this document"
}
], - "collections": [
- {
- "id": "satellites",
- "title": "AxelGlobe Satellites",
- "description": "Satellites in the AxelGlobe constellation",
- "links": [
- {
- "rel": "items",
- "type": "application/geo+json",
- "title": "Satellites"
}
], - "itemType": "feature",
}, - {
- "id": "tasks",
- "title": "AxelGlobe Tasks",
- "description": "Manage tasks in the AxelGlobe constellation",
- "extent": {
- "temporal": {
- "interval": [
- "2023-01-01T00:00:00Z",
- null
],
}
}, - "links": [
- {
- "rel": "items",
- "type": "application/geo+json",
- "title": "AxelGlobe Tasks"
}
], - "itemType": "feature",
}, - {
- "id": "capture_opportunities",
- "title": "Capture Opportunities",
- "description": "Manage capture opportunities within the AxelGlobe constellation",
- "extent": {
- "temporal": {
- "interval": [
- "2023-01-01T00:00:00Z",
- null
],
}
}, - "links": [
- {
- "rel": "items",
- "type": "application/geo+json",
- "title": "Capture Opportunities"
}
], - "itemType": "feature",
}, - {
- "id": "scheduled_captures",
- "title": "Scheduled Captures",
- "description": "Details of scheduled captures in the AxelGlobe constellation",
- "extent": {
- "temporal": {
- "interval": [
- "2023-01-01T00:00:00Z",
- null
],
}
}, - "links": [
- {
- "rel": "items",
- "type": "application/geo+json",
- "title": "Scheduled Captures"
}
], - "itemType": "feature",
}
]
}
A satellite is one of features on this API. If a client get a feature of the satellite, the client can know what kind of instruments the satellite is equipped with.
Follows OGC API - Features (WFS 3) Part-1 Core: 7.12.
{- "id": "satellites",
- "title": "AxelGlobe Satellites",
- "description": "Satellites in the AxelGlobe constellation",
- "extent": {
- "temporal": {
- "interval": [
- [
- "2023-01-01T00:00:00Z",
- null
]
],
}
}, - "itemType": "feature",
}
Retrieve a set of satellite features to see a satellite's information.
limit | integer [ 1 .. 10000 ] Default: 10 The optional limit parameter limits the number of items that are presented in the response document. Only items are counted that are on the first level of the collection in the response document. Nested objects contained within the explicitly requested items shall not be counted. Minimum = 1. Maximum = 10000. Default = 10. |
offset | integer [ 0 .. 10000 ] Default: 0 The optional offset parameter for requesting a set of items. Used along with the |
{- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [ ]
}, - "properties": {
- "instruments": [
- "msi"
], - "gsd": "5.0",
- "eo:bands": [
- {
- "name": "band1",
- "common_name": "red",
- "description": "string",
- "center_wavelength": 0.652,
- "full_width_half_max": 0.063,
- "solar_illumination": 1.5716542224007
}
], - "sat:orbit_state": "ascending"
}, - "id": "GRUS-1A",
- "links": [
- {
- "rel": "self",
- "type": "application/geo+json"
}
]
}
], - "links": [
- {
- "rel": "self",
- "type": "application/geo+json"
}, - {
- "rel": "next",
- "type": "application/geo+json"
}
], - "timeStamp": "2019-08-24T14:15:22Z",
- "numberMatched": 1,
- "numberReturned": 1
}
featureId required | string local identifier of a feature |
{- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [ ]
}, - "properties": {
- "instruments": [
- "msi"
], - "gsd": "5.0",
- "eo:bands": [
- {
- "name": "band1",
- "common_name": "red",
- "description": "string",
- "center_wavelength": 0.652,
- "full_width_half_max": 0.063,
- "solar_illumination": 1.5716542224007
}
], - "sat:orbit_state": "ascending"
}, - "id": "GRUS-1A",
- "links": [
- {
- "rel": "self",
- "type": "application/geo+json"
}
]
}
A task is one of features on this API. With exchanging the task feature data between clients and servers, the client can create a task feature definition and know the definitions. Based on the requested task definitions, the satellites will plan how to realize them.
Follows OGC API - Features (WFS 3) Part-1 Core: 7.12.
{- "id": "tasks",
- "title": "AxelGlobe Tasks",
- "description": "Manage tasks in the AxelGlobe constellation",
- "extent": {
- "temporal": {
- "interval": [
- [
- "2023-01-01T00:00:00Z",
- null
]
],
}
}, - "itemType": "feature",
}
Retrieve a set of task features to see requested tasks.
limit | integer [ 1 .. 20 ] Default: 10 The optional limit parameter limits the number of items that are presented in the response document. |
offset | integer [ 0 .. 10000 ] Default: 0 The optional offset parameter for requesting a set of items. Used along with the |
Array of numbers or Array of numbers The syntax must be Examples:
| |
datetime | string Either a date-time or an interval. Date and time expressions adhere to RFC 3339. Intervals may be bounded or half-bounded (double-dots at start or end). Examples:
Only features that have a temporal property that intersects the value of
|
{- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 139.6606936839409,
- 35.73457782656135
], - [
- 139.6606936839409,
- 35.61163535349367
], - [
- 139.79529292900543,
- 35.61163535349367
], - [
- 139.79529292900543,
- 35.73457782656135
], - [
- 139.6606936839409,
- 35.73457782656135
]
]
]
}, - "properties": {
- "valid_start": "2017-08-17T08:05:32Z",
- "valid_end": "2017-08-17T08:05:32Z",
- "title": "Crop, Tokyo, Japan",
- "off_nadir_angle": [
- 0,
- 10
], - "interval_days": 1,
- "satellites": [
- {
- "id": "GRUS-1A",
- "priority": 40
}, - {
- "id": "GRUS-1B",
- "priority": 50
}
]
}, - "id": "d830bcc8-d06d-47a0-b18e-6fbecd6a2728",
- "links": [
- {
- "rel": "self",
- "type": "application/geo+json"
}
]
}
], - "links": [
- {
- "rel": "self",
- "type": "application/geo+json"
}, - {
- "rel": "next",
- "type": "application/geo+json"
}
], - "timeStamp": "2019-08-24T14:15:22Z",
- "numberMatched": 2,
- "numberReturned": 1
}
Request a task. Follows OGC API - Features - Part 4: Create, Replace, Update and Delete 6.2.
A feature GeoJSON to represent your task definition.
type required | string Value: "Feature" | ||||||||||||||||||
required | object The width of the smallest rectangle which can contain the geometry must not exceed | ||||||||||||||||||
| |||||||||||||||||||
required | object | ||||||||||||||||||
|
{- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 139.6606936839409,
- 35.73457782656135
], - [
- 139.6606936839409,
- 35.61163535349367
], - [
- 139.79529292900543,
- 35.61163535349367
], - [
- 139.79529292900543,
- 35.73457782656135
], - [
- 139.6606936839409,
- 35.73457782656135
]
]
]
}, - "properties": {
- "valid_start": "2017-08-17T08:05:32Z",
- "valid_end": "2017-08-17T08:05:32Z",
- "title": "Crop, Tokyo, Japan",
- "off_nadir_angle": [
- 0,
- 10
], - "interval_days": 1,
- "satellites": [
- {
- "id": "GRUS-1A",
- "priority": 40
}, - {
- "id": "GRUS-1B",
- "priority": 50
}
]
}
}
{- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 139.6606936839409,
- 35.73457782656135
], - [
- 139.6606936839409,
- 35.61163535349367
], - [
- 139.79529292900543,
- 35.61163535349367
], - [
- 139.79529292900543,
- 35.73457782656135
], - [
- 139.6606936839409,
- 35.73457782656135
]
]
]
}, - "properties": {
- "valid_start": "2017-08-17T08:05:32Z",
- "valid_end": "2017-08-17T08:05:32Z",
- "title": "Crop, Tokyo, Japan",
- "off_nadir_angle": [
- 0,
- 10
], - "interval_days": 1,
- "satellites": [
- {
- "id": "GRUS-1A",
- "priority": 40
}, - {
- "id": "GRUS-1B",
- "priority": 50
}
]
}, - "id": "d830bcc8-d06d-47a0-b18e-6fbecd6a2728",
- "links": [
- {
- "rel": "self",
- "type": "application/geo+json"
}
]
}
featureId required | string local identifier of a feature |
{- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 139.6606936839409,
- 35.73457782656135
], - [
- 139.6606936839409,
- 35.61163535349367
], - [
- 139.79529292900543,
- 35.61163535349367
], - [
- 139.79529292900543,
- 35.73457782656135
], - [
- 139.6606936839409,
- 35.73457782656135
]
]
]
}, - "properties": {
- "valid_start": "2017-08-17T08:05:32Z",
- "valid_end": "2017-08-17T08:05:32Z",
- "title": "Crop, Tokyo, Japan",
- "off_nadir_angle": [
- 0,
- 10
], - "interval_days": 1,
- "satellites": [
- {
- "id": "GRUS-1A",
- "priority": 40
}, - {
- "id": "GRUS-1B",
- "priority": 50
}
]
}, - "id": "d830bcc8-d06d-47a0-b18e-6fbecd6a2728",
- "links": [
- {
- "rel": "self",
- "type": "application/geo+json"
}
]
}
A capture opportunity is one of features on this API.
The satellite operation system will calculate when you have opportunities related to the requested tasks.
Through putting operation, a client can request/unrequest the system to consider the opportunity during the scheduling. You can choose which opportunity will be better to your use case.
There is a caveat. Requesting a capture opportunity doesn't guarantee that the system will always schedule for the capture opportunity. Whether the system can schedule for the capture opportunity or not depends on the relationship to the definition of other tasks adjacent to the requested task.
e.g. If one adjacent task is defined with higher priority and high capture frequency, then your requested opportunity might not be scheduled.
Follows OGC API - Features (WFS 3) Part-1 Core: 7.12.
{- "id": "capture_opportunities",
- "title": "Capture Opportunity",
- "description": "Manage capture opportunities within the AxelGlobe constellation",
- "links": [
], - "extent": {
- "temporal": {
- "interval": [
- [
- "2023-01-01T00:00:00Z",
- null
]
],
}
}, - "itemType": "feature",
}
Get queryable response of capture opportunities collection to understand what kind of queryables are supported.
{- "$id": "${server.url}/collections/capture_opportunities/queryables",
- "type": "object",
- "title": "The queryables resource for the capture opportunities",
- "additionalProperties": false,
- "properties": {
- "task_id": {
- "title": "Task Id",
- "description": "Identifier of the task which is related to the capture opportunities.",
- "type": "string"
}
}
}
Retrieve a set of capture opportunity features to see opportunities related to the requested task.
limit | integer [ 1 .. 10000 ] Default: 10 The optional limit parameter limits the number of items that are presented in the response document. Only items are counted that are on the first level of the collection in the response document. Nested objects contained within the explicitly requested items shall not be counted. Minimum = 1. Maximum = 10000. Default = 10. |
offset | integer [ 0 .. 10000 ] Default: 0 The optional offset parameter for requesting a set of items. Used along with the |
datetime | string Either a date-time or an interval. Date and time expressions adhere to RFC 3339. Intervals may be bounded or half-bounded (double-dots at start or end). Examples:
Only features that have a temporal property that intersects the value of
If a feature has multiple temporal properties, it is the decision of the server whether only a single temporal property is used to determine the extent or all relevant temporal properties. |
filter-lang | string Value: "cql2-text" Any predicate language that can be suitably expressed as the value of an HTTP query parameter may be specified as the value of the filter parameter. In order to specify that specific language that is being used, this clause defines the filter-lang parameter. |
filter-crs | string <uri-reference> For reasons discussed in the W3C/OGC Spatial Data on the Web Best Practices document, spatial coordinates by default are in the coordinate reference system WGS 84 longitude and latitude for 2D coordinates and WGS 84 longitude, latitude and ellipsoidal height in meters for 3D coordinates. For server that support geometries in other coordinate reference systems, the filter-crs parameter defined in this clause allows clients to assert which CRS is being used to encode geometric values in a filter expression. Otherwiese, the filter-crs parameter has no use. |
filter | string The Filter requirements class defines a general parameter, filter, whose value is a filter expression to be applied when retrieving resources. This is necessary to determine which resources should be included in a result set. |
{- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [ ]
}, - "properties": {
- "capture_start": "2017-08-17T08:05:32Z",
- "capture_end": "2017-08-17T08:05:32Z",
- "forecast_cloud_cover": 18,
- "off_nadir_angle": 12.2,
- "solar_zenith_angle": 7.3,
- "satellite_id": "GRUS-1A",
- "status": "AVAILABLE",
- "task_ids": [
- "6ff7d299-a9b8-4a28-bbe6-1a904c655a5f",
- "7e03c4bd-5199-4e63-b257-f92d8d3663aa"
]
}, - "id": "d830bcc8-d06d-47a0-b18e-6fbecd6a2728",
- "links": [
- {
- "rel": "self",
- "type": "application/geo+json"
}
]
}
], - "links": [
- {
- "rel": "self",
- "type": "application/geo+json"
}, - {
- "rel": "next",
- "type": "application/geo+json"
}
], - "timeStamp": "2019-08-24T14:15:22Z",
- "numberMatched": 1,
- "numberReturned": 1
}
featureId required | string local identifier of a feature |
{- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [ ]
}, - "properties": {
- "capture_start": "2017-08-17T08:05:32Z",
- "capture_end": "2017-08-17T08:05:32Z",
- "forecast_cloud_cover": 18,
- "off_nadir_angle": 12.2,
- "solar_zenith_angle": 7.3,
- "satellite_id": "GRUS-1A",
- "status": "AVAILABLE",
- "task_ids": [
- "6ff7d299-a9b8-4a28-bbe6-1a904c655a5f",
- "7e03c4bd-5199-4e63-b257-f92d8d3663aa"
]
}, - "id": "d830bcc8-d06d-47a0-b18e-6fbecd6a2728",
- "links": [
- {
- "rel": "self",
- "type": "application/geo+json"
}
]
}
Reserve or cancel a capture opportunity. Follows OGC API - Features - Part 4: Create, Replace, Update and Delete 6.3.
featureId required | string local identifier of a feature |
Put an capture opportunity GeoJSON to reserve or cancel it.
type required | string Value: "Feature" | ||||
required | object (emptyGeometry) | ||||
| |||||
required | object | ||||
| |||||
id required | string (The capture opportunity unique id which is generated randomly as an unguessable format.) |
{- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [ ]
}, - "properties": {
- "status": "REQUESTED"
}, - "id": "d830bcc8-d06d-47a0-b18e-6fbecd6a2728"
}
{- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [ ]
}, - "properties": {
- "capture_start": "2017-08-17T08:05:32Z",
- "capture_end": "2017-08-17T08:05:32Z",
- "forecast_cloud_cover": 18,
- "off_nadir_angle": 12.2,
- "solar_zenith_angle": 7.3,
- "satellite_id": "GRUS-1A",
- "status": "AVAILABLE",
- "task_ids": [
- "6ff7d299-a9b8-4a28-bbe6-1a904c655a5f",
- "7e03c4bd-5199-4e63-b257-f92d8d3663aa"
]
}, - "id": "d830bcc8-d06d-47a0-b18e-6fbecd6a2728",
- "links": [
- {
- "rel": "self",
- "type": "application/geo+json"
}
]
}
Follows OGC API - Features (WFS 3) Part-1 Core: 7.12.
{- "id": "scheduled_captures",
- "title": "Scheduled Captures",
- "description": "Details of scheduled captures in the AxelGlobe constellation",
- "links": [
], - "extent": {
- "temporal": {
- "interval": [
- [
- "2023-01-01T00:00:00Z",
- null
]
],
}
}, - "itemType": "feature",
}
Get queryable response of scheduled captures collection to understand what kind of queryables are supported.
{- "$id": "${server.url}/collections/scheduled_captures/queryables",
- "type": "object",
- "title": "The queryables resource for the scheduled captures",
- "additionalProperties": false,
- "properties": {
- "task_id": {
- "title": "Task Id",
- "description": "Identifier of the task which is related to the scheduled captures.",
- "type": "string"
}
}
}
Retrieve a set of scheduled capture features to observe the output related to the requested task.
limit | integer [ 1 .. 10000 ] Default: 10 The optional limit parameter limits the number of items that are presented in the response document. Only items are counted that are on the first level of the collection in the response document. Nested objects contained within the explicitly requested items shall not be counted. Minimum = 1. Maximum = 10000. Default = 10. |
offset | integer [ 0 .. 10000 ] Default: 0 The optional offset parameter for requesting a set of items. Used along with the |
datetime | string Either a date-time or an interval. Date and time expressions adhere to RFC 3339. Intervals may be bounded or half-bounded (double-dots at start or end). Examples:
Only features that have a temporal property that intersects the value of
If a feature has multiple temporal properties, it is the decision of the server whether only a single temporal property is used to determine the extent or all relevant temporal properties. |
filter-lang | string Value: "cql2-text" Any predicate language that can be suitably expressed as the value of an HTTP query parameter may be specified as the value of the filter parameter. In order to specify that specific language that is being used, this clause defines the filter-lang parameter. |
filter-crs | string <uri-reference> For reasons discussed in the W3C/OGC Spatial Data on the Web Best Practices document, spatial coordinates by default are in the coordinate reference system WGS 84 longitude and latitude for 2D coordinates and WGS 84 longitude, latitude and ellipsoidal height in meters for 3D coordinates. For server that support geometries in other coordinate reference systems, the filter-crs parameter defined in this clause allows clients to assert which CRS is being used to encode geometric values in a filter expression. Otherwiese, the filter-crs parameter has no use. |
filter | string The Filter requirements class defines a general parameter, filter, whose value is a filter expression to be applied when retrieving resources. This is necessary to determine which resources should be included in a result set. |
{- "type": "FeatureCollection",
- "features": [
- {
- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 139.53553504388867,
- 35.99719319224633
], - [
- 139.825357957616,
- 35.63226688449768
], - [
- 140.08338595253883,
- 35.74747897648079
], - [
- 139.79600880179623,
- 36.0970559449987
], - [
- 139.53553504388867,
- 35.99719319224633
]
]
]
}, - "properties": {
- "capture_start": "2017-08-17T08:05:32Z",
- "capture_end": "2017-08-17T08:05:32Z",
- "task_ids": [
- "6ff7d299-a9b8-4a28-bbe6-1a904c655a5f",
- "32cef5ba-abd4-489f-b281-408eeee942b5"
], - "status": "UPLINKED",
- "processings": [
- {
- "status": "VERIFIED",
- "bounds": {
- "type": "MultiPolygon",
- "coordinates": [
- [
- [
- [
- 18.3366196422015,
- 42.0309241624373
], - [
- 18.2371598759408,
- 42.0147207706653
], - [
- 17.9512870135204,
- 42.9576189571609
], - [
- 18.0338969034156,
- 42.9708832504099
], - [
- 18.001933972167,
- 43.0749368510496
], - [
- 18.1033907614836,
- 43.0913672144521
], - [
- 18.1546901900114,
- 42.9232693666271
], - [
- 18.2232527425587,
- 42.9340645314761
], - [
- 18.1914955395659,
- 43.0385509246056
], - [
- 18.2937443754583,
- 43.0547999934987
], - [
- 18.3060583639145,
- 43.0141099965095
], - [
- 18.3824880760371,
- 43.026023206512
], - [
- 18.3508339171867,
- 43.130982983602
], - [
- 18.4542385564496,
- 43.1473256722603
], - [
- 18.5050696352045,
- 42.9776364624311
], - [
- 18.5749608673269,
- 42.9882806501904
], - [
- 18.5434817593133,
- 43.0938097434233
], - [
- 18.6479814265915,
- 43.1099572059068
], - [
- 18.9287740499413,
- 42.1488063617687
], - [
- 18.844750419105,
- 42.1356258272611
], - [
- 18.8699262408467,
- 42.0483874608366
], - [
- 18.7676222399592,
- 42.0325110257989
], - [
- 18.7236455489362,
- 42.1838830428972
], - [
- 18.6549470537336,
- 42.1728606041526
], - [
- 18.6802587741241,
- 42.08608921311
], - [
- 18.5790170959902,
- 42.0700211202019
], - [
- 18.5724468321688,
- 42.0924475622367
], - [
- 18.497789491158,
- 42.0804294816488
], - [
- 18.5231756017305,
- 41.9940603189181
], - [
- 18.4229474988786,
- 41.9780343965268
], - [
- 18.3785796515508,
- 42.1280113064236
], - [
- 18.311073043094,
- 42.1169392618357
], - [
- 18.3366196422015,
- 42.0309241624373
]
]
]
]
}
}
]
}, - "id": "42531a73-88bb-443b-8852-d7b01dbf27ca",
- "links": [
- {
- "rel": "self",
- "type": "application/geo+json"
}
]
}
], - "links": [
- {
- "rel": "self",
- "type": "application/geo+json"
}, - {
- "rel": "next",
- "type": "application/geo+json"
}
], - "timeStamp": "2019-08-24T14:15:22Z",
- "numberMatched": 2,
- "numberReturned": 1
}
featureId required | string local identifier of a feature |
{- "type": "Feature",
- "geometry": {
- "type": "Polygon",
- "coordinates": [
- [
- [
- 139.53553504388867,
- 35.99719319224633
], - [
- 139.825357957616,
- 35.63226688449768
], - [
- 140.08338595253883,
- 35.74747897648079
], - [
- 139.79600880179623,
- 36.0970559449987
], - [
- 139.53553504388867,
- 35.99719319224633
]
]
]
}, - "properties": {
- "capture_start": "2017-08-17T08:05:32Z",
- "capture_end": "2017-08-17T08:05:32Z",
- "task_ids": [
- "6ff7d299-a9b8-4a28-bbe6-1a904c655a5f",
- "32cef5ba-abd4-489f-b281-408eeee942b5"
], - "status": "UPLINKED",
- "processings": [
- {
- "status": "VERIFIED",
- "bounds": {
- "type": "MultiPolygon",
- "coordinates": [
- [
- [
- [
- 18.3366196422015,
- 42.0309241624373
], - [
- 18.2371598759408,
- 42.0147207706653
], - [
- 17.9512870135204,
- 42.9576189571609
], - [
- 18.0338969034156,
- 42.9708832504099
], - [
- 18.001933972167,
- 43.0749368510496
], - [
- 18.1033907614836,
- 43.0913672144521
], - [
- 18.1546901900114,
- 42.9232693666271
], - [
- 18.2232527425587,
- 42.9340645314761
], - [
- 18.1914955395659,
- 43.0385509246056
], - [
- 18.2937443754583,
- 43.0547999934987
], - [
- 18.3060583639145,
- 43.0141099965095
], - [
- 18.3824880760371,
- 43.026023206512
], - [
- 18.3508339171867,
- 43.130982983602
], - [
- 18.4542385564496,
- 43.1473256722603
], - [
- 18.5050696352045,
- 42.9776364624311
], - [
- 18.5749608673269,
- 42.9882806501904
], - [
- 18.5434817593133,
- 43.0938097434233
], - [
- 18.6479814265915,
- 43.1099572059068
], - [
- 18.9287740499413,
- 42.1488063617687
], - [
- 18.844750419105,
- 42.1356258272611
], - [
- 18.8699262408467,
- 42.0483874608366
], - [
- 18.7676222399592,
- 42.0325110257989
], - [
- 18.7236455489362,
- 42.1838830428972
], - [
- 18.6549470537336,
- 42.1728606041526
], - [
- 18.6802587741241,
- 42.08608921311
], - [
- 18.5790170959902,
- 42.0700211202019
], - [
- 18.5724468321688,
- 42.0924475622367
], - [
- 18.497789491158,
- 42.0804294816488
], - [
- 18.5231756017305,
- 41.9940603189181
], - [
- 18.4229474988786,
- 41.9780343965268
], - [
- 18.3785796515508,
- 42.1280113064236
], - [
- 18.311073043094,
- 42.1169392618357
], - [
- 18.3366196422015,
- 42.0309241624373
]
]
]
]
}
}
]
}, - "id": "42531a73-88bb-443b-8852-d7b01dbf27ca",
- "links": [
- {
- "rel": "self",
- "type": "application/geo+json"
}
]
}