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
'
) lon = buoy['longitude'][:] lat = buoy['latitude'][:] pl.plot(lon, lat) pl.plot(lon[-1], lat[-1], 'r.', markersize=10) pl.axis('equal') pl.show()
Python via netCDF4
# pip install netcdf4 matplotlib 
from netCDF4 import Dataset
import matplotlib.pyplot as pl
buoy = Dataset('
link_para_netcdf
'
) lon = buoy.variables['longitude'][:] lat = buoy.variables['latitude'][:] pl.plot(lon,lat) pl.plot(lon[-1], lat[-1], 'r.', markersize=10) pl.axis('equal') pl.show()
Octave
% pkg install -forge netcdf 
buoy = netcdf('
link_para_netcdf
'
, 'r'); lon = buoy{'longitude'}(:); lat = buoy{'latitude'}(:); plot(lon, lat); hold on; plot(lon(end), lat(end), 'r.', 'markersize', 20); axis equal; hold off;
MATLAB®
% MATLAB R2012b ou superior 
lon = ncread('
link_para_netcdf
'
, 'longitude'); lat = ncread('
link_para_netcdf
'
, 'latitude'); plot(lon, lat); hold on; plot(lon(end), lat(end), 'r.', 'markersize', 20); axis equal; hold off;
×

ISABP

International South Atlantic Buoy Programme

Selecione uma boia na lista abaixo ou no mapa para ver mais informações.

×

Processando…