Link não encontrado

Utilize o link acima para obter os dados via protocolo OpenDAP.

Exemplos de utilização:

Python via Pydap
# pip install Pydap matplotlib 
from pydap.client import open_url
import matplotlib.pyplot as pl
buoy = open_url('
link_para_netcdf
'
) temp = buoy.variables['temperature'][:] time = buoy.variables['time'][:] pl.plot(time,temp[:,0],'.') x1,x2,y1,y2 = pl.axis() pl.axis((x1,x2,-10,40)) pl.show()
Python via netCDF4
# pip install netcdf4 matplotlib 
from netCDF4 import Dataset
import matplotlib.pyplot as pl
buoy = Dataset('
link_para_netcdf
'
) temp = buoy.variables['temperature'][:] time = buoy.variables['time'][:] pl.plot(time,temp[:,0],'.') x1,x2,y1,y2 = pl.axis() pl.axis((x1,x2,-10,40)) pl.show()
Octave
% pkg install -forge -verbose -auto octcdf 
buoy = netcdf('
link_para_netcdf
'
, 'r'); temp = buoy{'temperature'}(:); time = buoy{'time'}(:); plot(time, temp(:,1),'.'); A = axis; axis([A(1),A(2),-10,40]);
MATLAB®
% MATLAB R2012b ou superior 
temp = ncread('
link_para_netcdf
'
, 'temperature'); time = ncread('
link_para_netcdf
'
, 'time'); plot(time, temp(:,1),'.'); A = axis; axis([A(1),A(2),-10,40]);
×

PIRATA

Prediction and Research Moored Array in the Tropical Atlantic

Selecione uma boia para ver mais informações.

Download dos dados

Temperatura

Salinidade

Superfície

×
×

Processando…