Latest

The node is currently out of the water.

2012-12-13 15:00:00 AST  RSS

Water Temperature 5.83 C
Salinity 29.29  
Conductivity 2.91 S/m
Nitrate 7.7 µM
Turbidity 0.86 NTU
Dissolved O2 6.05 ml/l
O2 Saturation 7.21 ml/l
Dissolved Organics 11.29 QSDE
Chlorophyll 0.52 µg/l
Battery Voltage 9.06 Volts

2012-11-27 06:45:00 AST  RSS

Air Temperature -2.6 C
Wind Speed 0.0 knots
Wind Direction 0 ° True
Wind Speed (Peak Gust) 0.0 knots
Pressure 1034.5 mbar
Pressure Tendency -0.1 mbar/h
Rain 0.00 mm
Rain over 24 hours 0 mm
Solar Radiation 24 W/m²
UV Index 0.7  
Humidity 80 %
Wind Chill -5.9 C
Heat Index -2.8 C

Google Earth Feed  WAP Feed

LOBOViz CGI Data Service

The LOBOViz server has a public CGI (Common Gateway Interface) that allows remote clients to request and receive LOBO sensor data via HTTP (Hyper-Text Transfer Protocol). This page describes how to access the CGI and retrieve sensor data.

CGI URL

The LOBOViz data CGI for this server is published at the following URL:

  • http://nwarm.loboviz.com/cgi-bin/nph-data.cgi

CGI Data Query Parameters

Parameters are appended to the URL after a '?' character and are each is subsequently separated by a '&' character.

The following common parameters are supported:

ParameterDescription
min_datefirst day of data query in format [YYYYMMDD]
max_datelast day of data query in format [YYYYMMDD]
ycomma-separated list of measurement names for dependent variable(s)
data_formatrequired to be 'text' for text output

Rather than specific min_date and max_date, there are two alternate date selectors:

ParameterDescription
days=nthe most recent n days from today
newest=nthe most recent n measurements

The following common measurement names are examples of the 'y=' independent variable list:

NameDescription
cdomcolored dissolved organic matter
conductivityconductivity
oxygendissolved oxygen
fluorescencefluorescence
nitratenitrate concentration
oxygen_satoxygen saturation
voltagepower supply voltage
salinitysalinity
scatteringscattering coeff
temperaturewater temperature
turbidityturbidity

CGI Data Result Format

The data are returned as tab-separated text representations of numeric values. The first line of the returned data is a header of tab separated names and units for each data column. Each subsequent line displays local date/time in format [YYYY-MM-DD hh:mm:ss], followed by a numeric value for each requested measurement, all fields separated by tabs.

Example

For example, if you want to retrieve nitrate and salinity for September 29, 2008 to October 7, 2008 the URL would be:

http://nwarm.loboviz.com/cgi-data/nph-data.cgi?min_date=20080929&max_date=20081007&y=nitrate,salinity&data_format=text

Click the above URL to see the tab-separated text data returned by the server. That is common example: exact identifiers for sites and sensors can be found by using the PermaLink feature on the graph results page.

Scripted Usage

Any programming language with HTTP support can be used to directly access the LOBO data CGI and process the returned sensor measurements. Alternately, an HTTP utility such as wget can be invoked to retrieve the data and save to local file for later processing.