Download data from Brio_grande%2Enc


Parent directory

Global attributes

NC_GLOBAL
comment
These data were obtained from ARGOS system and are divided into two groups, characterized by flag 1 and flag 2. Parameters from anemometer number 1 are presented in both flags
source
Moored buoy from PNBOIA
description
Buoy rio_grande
history
Created Fri Dec 8 11:04:39 2017
institution
GOOS-Brasil
data_management
SALT - Sea & Limno Technology

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.

avg_radiation

:

units
W/m2

rel_humid

:

units
%
long_name
Relative Humidity

wave_period

:

units
s
long_name
Wave period

cm_dir1

:

units
degrees_from_north
long_name
Current direction from first level current meter

temp_air

:

units
degree_Celsius
long_name
Air temperature

wave_dir

:

units
degrees_from_north
long_name
Mean wave direction

battery

:

units
V
long_name
Battery voltage

latitude

:

units
degrees_north
long_name
Latitude

wind_dir1

:

units
degrees_from_north
long_name
Average wind direction - Anemometer 1

cm_int1

:

units
cm/s
long_name
Current speed from first level current meter

cm_int3

:

units
cm/s
long_name
Current speed from third level current meter

cm_int2

:

units
cm/s
long_name
Current speed from second level current meter

wave_hs

:

units
m
long_name
Significant wave height

sst

:

units
degree_Celsius
long_name
Sea surface temperature

wind_gust1_f2

:

units
m/s
long_name
Wind gust - Anemometer 1 from flag 2 (see comment)

pressure

:

units
hPa
long_name
Atmosferic pressure

wave_h_max

:

units
m
long_name
Maximum wave height

wind_dir1_f2

:

units
degrees_from_north
long_name
Average wind direction - Anemometer 1 from flag 2 (see comment)

dew_point

:

units
degree_Celsius
long_name
Dew point

avg_wind_int1_f2

:

units
m/s
long_name
Average wind speed - Anemometer 1 from flag 2 (see comment)

cm_dir3

:

units
degrees_from_north
long_name
Current direction from third level current meter

cm_dir2

:

units
degrees_from_north
long_name
Current direction from second level current meter

longitude

:

units
degrees_east
long_name
Longitude

avg_wind_int1

:

units
m/s
long_name
Average wind speed - Anemometer 1

avg_wind_int2

:

units
m/s
long_name
Average wind speed - Anemometer 2

time

:

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

wind_gust2

:

units
m/s
long_name
Wind gust - Anemometer 2

avg_dir2

:

units
degrees_from_north
long_name
Average wind direction - Anemometer 2

wind_gust1

:

units
m/s
long_name
Wind gust - Anemometer 1

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/Brio_grande.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/Brio_grande.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/Brio_grande.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/Brio_grande.nc")
>>> import pprint
>>> pprint.pprint( dataset.keys() )
['avg_radiation',
 'rel_humid',
 'wave_period',
 'cm_dir1',
 'temp_air',
 'wave_dir',
 'battery',
 'latitude',
 'wind_dir1',
 'cm_int1',
 'cm_int3',
 'cm_int2',
 'wave_hs',
 'sst',
 'wind_gust1_f2',
 'pressure',
 'wave_h_max',
 'wind_dir1_f2',
 'dew_point',
 'avg_wind_int1_f2',
 'cm_dir3',
 'cm_dir2',
 'longitude',
 'avg_wind_int1',
 'avg_wind_int2',
 'time',
 'wind_gust2',
 'avg_dir2',
 'wind_gust1']

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/Brio_grande.nc (i.e., the .html extension should be omitted when opening this dataset on an Opendap client).


pydap/3.1.1