> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tic.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get ortophotos by latitude and longitude

> Gets available ortophotos by latitude and longitude

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.


## OpenAPI

````yaml get /datasets/properties/se/orthophotos
openapi: 3.0.4
info:
  title: TIC API
  description: ''
  version: v1
servers:
  - url: https://api.tic.io/
security:
  - ApiKey: []
tags:
  - name: BolagsverketStatistics
  - name: Companies
  - name: Companies_SE_
  - name: DocumentDelivery
  - name: EuropeanCommission
  - name: FinancialDocuments
  - name: Finansinspektionen
  - name: Free
  - name: ICA
  - name: ICAStatistics
  - name: Lists
  - name: Media
  - name: Persons
  - name: Persons_SE_
  - name: Properties_SE_
  - name: PTSPortings
  - name: Reseller
  - name: SearchBankruptciesReports
  - name: SearchCompanies
  - name: SearchCompaniesReports
  - name: SearchCompanyWorkplaces
  - name: SearchPerson
  - name: SearchProperties_SE_
  - name: SearchVehicles
  - name: TeamDocumentOrders
  - name: Teams
  - name: User
  - name: Vehicles_SE_
  - name: WatchLists
paths:
  /datasets/properties/se/orthophotos:
    get:
      tags:
        - Properties_SE_
      summary: Get ortophotos by latitude and longitude
      description: Gets available ortophotos by latitude and longitude
      operationId: GetOrthophotoByLocation
      parameters:
        - name: latitude
          in: query
          description: The latitude of the position
          required: true
          schema:
            type: number
            format: double
        - name: longitude
          in: query
          description: The longitude of the position
          required: true
          schema:
            type: number
            format: double
        - name: bufferDistance
          in: query
          description: Buffer in meters
          schema:
            type: number
            format: double
            default: 100
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Orthophoto_Dto
components:
  schemas:
    Ormeo_Library_Lantmateriet_Dto_Lantmateriet_Orthophoto_Dto:
      type: object
      properties:
        lantmateriet_OrderImageFileId:
          type: integer
          format: int32
        flightYear:
          type: integer
          format: int32
          nullable: true
        flightAltitude:
          type: integer
          format: int32
          nullable: true
        resolution:
          type: number
          format: double
          nullable: true
        spectralType:
          type: string
          nullable: true
        fileName:
          type: string
          nullable: true
        fileNameLength:
          type: integer
          format: int64
        fileNameReduced:
          type: string
          nullable: true
        fileNameReducedLength:
          type: integer
          format: int64
        url:
          type: string
          nullable: true
          readOnly: true
        urlReduced:
          type: string
          nullable: true
          readOnly: true
        error:
          type: string
          nullable: true
        processingTimeMs:
          type: integer
          format: int64
          nullable: true
        fromCache:
          type: boolean
        flightRecordingStarted:
          type: string
          format: date-time
          nullable: true
        flightRecordingEnded:
          type: string
          format: date-time
          nullable: true
        totalArea:
          type: integer
          format: int32
        numberOfAreas:
          type: integer
          format: int32
      additionalProperties: false
  securitySchemes:
    ApiKey:
      type: apiKey
      name: x-api-key
      in: header

````