Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DataLayersGetOptions

import type { DataLayersGetOptions } from "https://googleapis.deno.dev/v1/solar:v1.ts";

Additional options for Solar#dataLayersGet.

interface DataLayersGetOptions {
exactQualityRequired?: boolean;
[location.latitude]?: number;
[location.longitude]?: number;
pixelSizeMeters?: number;
radiusMeters?: number;
requiredQuality?:
| "IMAGERY_QUALITY_UNSPECIFIED"
| "HIGH"
| "MEDIUM"
| "LOW";
view?:
| "DATA_LAYER_VIEW_UNSPECIFIED"
| "DSM_LAYER"
| "IMAGERY_LAYERS"
| "IMAGERY_AND_ANNUAL_FLUX_LAYERS"
| "IMAGERY_AND_ALL_FLUX_LAYERS"
| "FULL_LAYERS";
}

§Properties

§
exactQualityRequired?: boolean
[src]

Optional. Whether to require exact quality of the imagery. If set to false, the required_quality field is interpreted as the minimum required quality, such that HIGH quality imagery may be returned when required_quality is set to MEDIUM. If set to true, required_quality is interpreted as the exact required quality and only MEDIUM quality imagery is returned if required_quality is set to MEDIUM.

§
[location.latitude]?: number
[src]

The latitude in degrees. It must be in the range [-90.0, +90.0].

§
[location.longitude]?: number
[src]

The longitude in degrees. It must be in the range [-180.0, +180.0].

§
pixelSizeMeters?: number
[src]

Optional. The minimum scale, in meters per pixel, of the data to return. Values of 0.1 (the default, if this field is not set explicitly), 0.25, 0.5, and 1.0 are supported. Imagery components whose normal resolution is less than pixel_size_meters will be returned at the resolution specified by pixel_size_meters; imagery components whose normal resolution is equal to or greater than pixel_size_meters will be returned at that normal resolution.

§
radiusMeters?: number
[src]

Required. The radius, in meters, defining the region surrounding that centre point for which data should be returned. The limitations on this value are: * Any value up to 100m can always be specified. * Values over 100m can be specified, as long as radius_meters <= pixel_size_meters * 1000. * However, for values over 175m, the DataLayerView in the request must not include monthly flux or hourly shade.

§
requiredQuality?: "IMAGERY_QUALITY_UNSPECIFIED" | "HIGH" | "MEDIUM" | "LOW"
[src]

Optional. The minimum quality level allowed in the results. No result with lower quality than this will be returned. Not specifying this is equivalent to restricting to HIGH quality only.

§
view?: "DATA_LAYER_VIEW_UNSPECIFIED" | "DSM_LAYER" | "IMAGERY_LAYERS" | "IMAGERY_AND_ANNUAL_FLUX_LAYERS" | "IMAGERY_AND_ALL_FLUX_LAYERS" | "FULL_LAYERS"
[src]

Optional. The desired subset of the data to return.