Sea Level Anomalies#
Visualize dynamic sea level anomaly (colors) and ocean bathymetry/topography (contours) in the region of the Azores as a function of space and time.
See the Climatology.jl docs for more information.
#Let's start a temporary environment for this notebook, and add julia packages that we will \n",
if !isdefined(Main,:Dataverse)
using Pkg; Pkg.activate(temp=true)
Pkg.add.(["Climatology", "NCDatasets", "Dataverse", "CairoMakie"])
end
using Climatology, NCDatasets, Dataverse, CairoMakie
fil="sla_podaac.nc"
sla=read(SeaLevelAnomaly(name=fil[1:end-3],path=tempdir()))
plot(sla) #,topo=topo)