GET
/
datasets
/
properties
/
se
/
orthophotos
curl --request GET \
  --url https://api.tic.io/datasets/properties/se/orthophotos \
  --header 'x-api-key: <api-key>'
[
  {
    "lantmateriet_OrderImageFileId": 123,
    "flightYear": 123,
    "flightAltitude": 123,
    "resolution": 123,
    "spectralType": "<string>",
    "fileName": "<string>",
    "url": "<string>",
    "error": "<string>",
    "processingTimeMs": 123,
    "fromCache": true,
    "flightRecordingStarted": "2023-11-07T05:31:56Z",
    "flightRecordingEnded": "2023-11-07T05:31:56Z"
  }
]

Get a list of all high-resolution orthophotos for each year based on given center latitude and longitude.

The response will include the open URL to the high resolution image which you can directly reference. Please note that typical response times are 50-100 ms per image so make sure your request doesn’t time out since a response could contain up to 10 years of high-resolutions images (expect 1-3 seconds of non cached images).

Use the bufferDistance to set a distance from 20 meters up to 200 meters (default 100 meters) from the center.

Authorizations

x-api-key
string
header
required

Query Parameters

latitude
number
required

The latitude of the position

longitude
number
required

The longitude of the position

bufferDistance
number
default:100

Buffer in meters

Response

200 - application/json

OK

The response is of type object[].