../../_images/logo_rasdaman.png ../../_images/OSGeo_incubation.png

Bemerkung

Das Projekt ist nur Teil der OSGeoLive Virtuelle Maschine Disk (VMDK)

Rasdaman Quickstart

Rasdaman is a Big Data Engine for flexible ad-hoc analytics on multi-dimensional spatio-temporal sensor, image, simulation, and statistics data of unlimited size. The Web Coverage Processing Service (WCPS) query language is an Open Geospatial Consortium (OGC) standard wich allows filtering and processing of multi-dimensional raster coverages, such as sensor, simulation, image, and statistics data using web services. The WCPS queries are translated to rasdaman query language, rasql, and are executed on rasdaman. This quick start shows how to access and manipulate an example 2D coverage using WCPS language.

Setup

The first step before trying any of the following queries is to start rasdaman and Tomcat. Open the Databases directory on the Desktop, and then Start Rasdaman Server. Allow two to three minutes for rasdaman and especially Tomcat to fully start (once the rasdaman web client loads in the browser).

Afterwards, you can open Rasdaman-Earthlook Demo from the same directory, which will launch a local demonstrator in the browser. For a more hands-on tutorial though, continue with the next examples here.

Running WCPS queries

Entweder:

Running coverage

The example coverage which will be used subsequently is a 6 MB image as below:

../../_images/rasdaman_ndvi1.png

Access full coverage

The WCPS query to access the full coverage is as follows:

for c in (NIR) return encode(c, "png")

Click on coverage request to execute it in the browser.

Select a subset of the coverage

The WCPS query to access a subset of the coverage is as follows:

for c in (NIR) return encode(c[i(0:500),j(0:500)], "png")

Click on the subsetting request to execute it on the browser.

The query result is an image as follows:

../../_images/rasdaman_ndvi2.png

Band extraction from the coverage

The WCPS query to access the red band of the coverage is as follows:

for c in (NIR) return encode(c.red, "png")

Click on band extraction to execute it; you should see the following image in the browser as a result:

../../_images/rasdaman_ndvi3.png

Arithmetic operation: Extracting NDVI of the coverage

The NDVI (Normalized Difference Vegetation Index) is a measure for the probability of vegetation in remote sensing, i.e., the closer to +1 a pixel is, the more likely it is plants. The WCPS query to derive NDVI from the coverage is as follows:

for c in ( NIR ) return
encode(
  (unsigned char) (
     (((float)c.0 - (float)c.1) /
      ((float)c.0 + (float)c.1)) > 0
  ) * 255
, "png" )
../../_images/rasdaman_ndvi4.png

Was kommt als Nächstes?