Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Introduction
The ocedata package [1] provides data that may be of use to oceanographers,
either working with their own R code or working with the oce package [2]. One
such dataset, called levitus
, holds sea surface temperature and salinity
(SST and SSS), based on the 2013 version of the World Ocean Atlas. An updated
version of this atlas is suggested by the WOA authors to be an improvement [3],
and so it will be used for an updated version of levitus
in the upcoming
version of ocedata.
This blog item deals with differences between the two datasets.
Analysis
First, the netcdf files for temperature and salinity were downloaded from online sources [4,5]. Then the data were loaded as follows.
1 2 3 4 5 6 7 8 9 10 | library(ncdf4) con <- nc_open("woa13_decav_t00_01v2.nc") ## make a vector for later convenience longitude <- as.vector(ncvar_get(con, "lon")) latitude <- as.vector(ncvar_get(con, "lat")) SST <- ncvar_get(con, "t_an")[,,1] nc_close(con) con <- nc_open("woa13_decav_s00_01v2.nc") SSS <- ncvar_get(con, "s_an")[,,1] nc_close(con) |
Next, load the levitus dataset from the existing ocedata
package
and compute the differences
1 2 3 4 5 6 | library(oce) data("levitus", package="ocedata") library(MASS) # for truehist par(mfrow=c(2,1), mar=c(3, 3, 1, 1), mgp=c(2, 0.5, 0)) dSST <- SST - levitus$SST dSSS <- SSS - levitus$SSS |
The main differences are said to be in data-sparse regions, e.g. high latitudes, so an interesting check is to plot spatial patterns.
1 2 3 4 5 6 7 8 9 10 | par(mfrow=c(2,1), mar=c(3, 3, 1, 1), mgp=c(2, 0.5, 0)) data(coastlineWorld) imagep(longitude, latitude, dSST, zlim=c(-3,3)) polygon(coastlineWorld[["longitude"]], coastlineWorld[["latitude"]], col='lightgray') mtext("SST change", side=3, adj=1) imagep(longitude, latitude, dSSS, zlim=c(-3,3)) polygon(coastlineWorld[["longitude"]], coastlineWorld[["latitude"]], col='lightgray') mtext("SSS change", side=3, adj=1) |
The figures confirm that the differences are mainly in high latitudes, with estimates in Hudson’s Bay being particularly altered. A closer examination of the author’s general locale may interest him, if nobody else…
1 2 3 4 | imagep(longitude, latitude, dSST, zlim=c(-3,3), xlim=c(-90,-30), ylim=c(30, 90), asp=1) polygon(coastlineWorld[["longitude"]], coastlineWorld[["latitude"]], col='lightgray') mtext("SST change", side=3, adj=1) |
1 2 3 4 | imagep(longitude, latitude, dSSS, zlim=c(-3,3), xlim=c(-90,-30), ylim=c(30, 90), asp=1) polygon(coastlineWorld[["longitude"]], coastlineWorld[["latitude"]], col='lightgray') mtext("SSS change", side=3, adj=1) |
Conclusions
The patterns of variation are as expected: the updated WOA differs mainly in high latitudes. The differences seem mainly to arise in regions that are anomalous compared to other waters at similar latitudes. For example, the estimates for SST and SSS in Hudson’s Bay are markedly different in the two atlases. I am not too surprised by this, and I’m not too concerned either; I doubt that many researchers (other than some modelers) would have paid much attention to WOA estimates for Hudson’s Bay. However, the changes in the northern Labrador Sea are quite concerning, given the importance of that region to Atlantic watermass formation, and the likelihood that WOA is used to initialize numerical models.
References and resources
-
Jekyll source code for this blog entry: 2015-08-22-woa-2013-2.Rmd
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.