Download data from B123310%2Enc


Parent directory

Global attributes

NC_GLOBAL
source
Drift buoy from PNBOIA
description
Buoy 123310
data_management
SALT - Sea & Limno Technology
institution
GOOS-Brasil
history
Created Fri Nov 18 18:25:23 2016

Downloading data

In the form below you can specify desired variables and their dimensions, and have the data downloaded in different formats depending on the server configuration.

latitude

:

units
degrees_north
long_name
Latitude

press

:

units
hPa
long_name
Atmosferic pressure

temp

:

units
degree_Celsius
long_name
Sea surface temperature

longitude

:

units
degrees_east
long_name
Longitude

time

:

units
days since 0001-01-01 00:00:00.0
calendar
gregorian

as

Downloading data with Ferret

To access this dataset with the Ferret visualization and analysis environment from PMEL:

$ ferret
yes? use "http://goosbrasil.org:8080/pnboia/B123310.nc"
yes? show data

Downloading data with GrADS

To access this dataset with the GrADS data analysis and visualization software developed by COLA:

$ gradsdap
ga-> sdfopen http://goosbrasil.org:8080/pnboia/B123310.nc
ga-> query file

Downloading data with IDL

To access this dataset with the OPeNDAP IDL Client, a tool for the IDL data analysis and visualization package:

IDL> url = 'http://goosbrasil.org:8080/pnboia/B123310.nc'
IDL> stat = opendap_get(url, def, mode='dds')
IDL> help, def, /structures

Downloading data with Pydap

To access this dataset using the Pydap Python module:

$ python
>>> from pydap.client import open_url
>>> dataset = open_url("http://goosbrasil.org:8080/pnboia/B123310.nc")
>>> import pprint
>>> pprint.pprint( dataset.keys() )
['latitude', 'press', 'temp', 'longitude', 'time']

Downloading data with other Opendap clients

There are other Opendap clients that can access this dataset, including Matlab and several command line utilities. You should know that the URL for this dataset is http://goosbrasil.org:8080/pnboia/B123310.nc (i.e., the .html extension should be omitted when opening this dataset on an Opendap client).


pydap/3.1.1