Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Introduction

...

Server information


version

URLhttp://<catalog-url>/<serviceName>/MapServer/exts/SeismicServer/version

Report seismic server version number and license expiry date.

...

This section describes how to get data and metadata for seismic 2D lines. A seismic 2D line is represented by a single feature in a feature class. The URL resource scheme will therefore refer to the containing feature layer and object id for the line feature.survey comprising several navigation lines will be stored in a single feature layer. Each feature  represents one survey line. Each survey line has an associated one-band floating point raster containing the amplitude values. The dimensions of this raster and associated metadata can be read using the info REST call.  The raster data itself can be retrieved using the data request documented in this section.

The URL resource scheme to address a single seismic line will refer to the feature layer containing the surveys and the feature representing a single seismic line:

http:// <seismic server>  /layer/<layer id>/line/<line id>

 

info

 

URLhttp://<catalog-url>/<serviceName>/MapServer/exts/SeismicServer/layer/<layerid>/line/info

Report meta data about all seismic 2D lines contained in the given feature layer.

...

example : http://osl-ts-07.oslo.geodata.no/arcgis/rest/services/Australia2D/MapServer/exts/SeismicServer/layer/0/line/info?f=pjson

 

URLhttp://<catalog-url>/<serviceName>/MapServer/exts/SeismicServer/layer/<layerid>/line/<line oid>/info

Report meta data about the seismics 2D lines contained in the given feature layer with feature id <line oid>.

...

example : http://osl-ts-07.oslo.geodata.no/arcgis/rest/services/Australia2D/MapServer/exts/SeismicServer/layer/0/line/1/info?f=pjson

 

...

 

data

 

URLhttp://<catalog-url>/<serviceName>/MapServer/exts/SeismicServer/layer/<layerid>/line/<line oid>/data

Return amplitude data for a given seismic line. The request will return a one band floating point raster in the form of a float32 array. The desired dimensions of the output raster is set by the caller using the width and height arguments. Use the info request to read the original dimensions of the raster. If the output dimensions differ form the raster's original dimensions the raster will be resampled.

...