openapi: 3.0.1 info: title: au-location-analytics description: Produce location profile report for a site in Australia version: '1.0' servers: - url: https://api.bigdataearth.com/au/location-analytics paths: '/lat={lat}&lon={lon}&type={type}&uid={uid}': get: summary: Produce location profile report description: 'This API returns 8 download links in relation to the location profile report generated, including links to an integrated PDF report, an overview image and 6 charts. Upon request, separate links to many more detailed charts (as many as 80+) included in the PDF report can be exposed and added. Detailed data sources analysed are shown in the report. **Sample reports** are available at [https://www.propertylocation.com.au/](https://www.propertylocation.com.au/)' operationId: 5b13c37227093d81d6342fd7 parameters: - name: lat in: path description: location latitude (e.g. -30.123456) required: true schema: type: number - name: lon in: path description: location longitude (e.g. 150.123456) required: true schema: type: number - name: type in: path description: product type specified required: true schema: type: string - name: uid in: path description: usage id specified required: true schema: type: string responses: '200': description: Successful response content: application/json: schema: $ref: '#/components/schemas/LocationProfile' example: latitude: 0 longitude: 0 product_type: string usage_id: string links: - report_pdf: string report_image1: string report_chart1: string report_chart2: string report_chart3: string report_chart4: string report_chart5: string report_chart6: string components: schemas: LocationProfile: properties: latitude: type: number description: Location latitude longitude: type: number description: Location longitude product_type: type: string description: Product type specified usage_id: type: string description: Usage id specified links: type: array items: $ref: '#/components/schemas/WebLink' WebLink: properties: report_pdf: type: string description: link to a pdf report report_image1: type: string description: link to an overview image report_chart1: type: string description: link to a chart showing elevation 2D profile report_chart2: type: string description: link to a chart showing elevation 3D surface report_chart3: type: string description: link to a chart showing average elevation report_chart4: type: string description: link to a chart showing average slope report_chart5: type: string description: link to a chart showing contours report_chart6: type: string description: link to a chart showing flow directions securitySchemes: apiKeyHeader: type: apiKey name: Ocp-Apim-Subscription-Key in: header apiKeyQuery: type: apiKey name: subscription-key in: query security: - apiKeyHeader: [ ] - apiKeyQuery: [ ]