The GEOSS Discovery And Access Broker APIs
Authors: Fabrizio Papeschi, Mattia Santoro, Stefano Nativi
API version: 1.4.3-beta

AccessOptions

Module: AccessOptions

This object provides a set of parameters to use as options with the GINode accessLink method. E.g.:

 var accessOptions1 = {
                                 "CRS": "EPSG:4326",
                                 "format": "IMAGE_PNG",
                                 "firstAxisSize": {
                                    "label": "Lat",
                                    "value": 300
                                 },
                                 "secondAxisSize": {
                                    "label": "Lon",
                                    "value": 300
                                 },
                                 "spatialSubset": {
                                     "south": -60.0,
                                     "west": -180.0,
                                     "north": 90.000007823,
                                     "east": 180.000018775
                                 },
                                 "temporalSubset": {
                                     "from" : "2000-01-01T00:00:00Z",
                                     "to": "2013-01-01"        
                                 }
                          };
var accessOptions2 = { "CRS": "EPSG:3857", "format": "IMAGE_JPEG", "firstAxisSize": { "label": "X", "value": 455 }, "secondAxisSize": { "label": "Y", "value": 300 }, "spatialSubset": { "south": -60.0, "west": -180.0, "north": 90.000007823, "east": 180.000018775 }, "temporalSubset": { "from" : "2000-01-01T00:00:00Z", "to": "2013-01-01" } };

Properties

CRS

String

optional

A valid data output Coordinate Reference System expressed with the EPSG Geodetic Parameter Registry (e.g.: "EPSG:4326").

firstAxisSize

AxisSize

optional

The size of the first axis of the data.

format

String

optional

A valid data output format (e.g.: "NetCDF").

secondAxisSize

AxisSize

optional

The size of the second axis of the data.

spatialSubset

Bbox

optional

The data output spatial subset.

temporalSubset

TimePeriod

optional

The data output temporal subset.