openapi: 3.0.1 info: title: us-vegetation-analytics description: Generate vegetation cover report for a suburb location in the state of California version: '1.0' servers: - url: https://api.bigdataearth.com/us/vegetation-analytics paths: '/lat={lat}&lon={lon}&type={type}&uid={uid}': get: summary: Generate vegetation cover report description: 'This API returns 8 download links in relation to the vegetation location profile report generated, containing (1) classified vegetation map, and (2) estimated vegetation density in a neighbourhood. 1m-resolution NAIP aerial imagery is analysed. **Samples** are available at [https://www.propertylocation360.com/](https://www.propertylocation360.com/georisk_us.html). For the latest R&D on vegetation classification and other image processing, please check [BigData Earth](http://www.bigdataearth.com/products-and-solutions/high-resolution-vegetation-mapping-by-states/) website.' operationId: 5b13dd00992b93f7a6a23caa parameters: - name: lat in: path description: location latitude (e.g. 34.123456) required: true schema: type: number - name: lon in: path description: location longitude (e.g. -119.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: [ ]