isoWater

Introduction

isoWater includes two sets of tools. The first supports queries to the Waterisotopes Database (wiDB, https://waterisotopesDB.org) to identify and download data. The second uses Bayesian estimation to infer information about the origin of a water sample based on its stable isotope ratios.

wiDB Queries

Three functions are available to streamline queries to the wiDB. wiDB_values() is designed to expose the list of terms used in the database’s categorical metadata fields, helping the user design other queries:

wiDB_values(c("types", "countries"))
## $types
##  [1] "Beer"            "Bottled"         "Canal"           "Cave_drip"      
##  [5] "Cloud_or_fog"    "Firn_core"       "Ground"          "Ice_core"       
##  [9] "Lake_or_pond"    "Leaf"            "Milk"            "Mine"           
## [13] "Ocean"           "Precipitation"   "Rime"            "River/Stream"   
## [17] "River_or_stream" "Snow_pit"        "Soil"            "Spring"         
## [21] "Sprinkler"       "Stem"            "Tap"             "Vapor"          
## [25] "Wetland"        
## 
## $countries
##   [1] "AD" "AE" "AF" "AL" "AM" "AO" "AQ" "AR" "AT" "AU" "BA" "BB" "BD" "BE" "BF"
##  [16] "BG" "BH" "BI" "BJ" "BM" "BO" "BR" "BW" "BY" "BZ" "CA" "CD" "CF" "CH" "CL"
##  [31] "CM" "CN" "CO" "CR" "CU" "CV" "CY" "CZ" "DE" "DJ" "DK" "DO" "DZ" "EC" "EE"
##  [46] "EG" "ES" "ET" "FI" "FK" "FM" "FO" "FR" "GA" "GB" "GE" "GF" "GH" "GI" "GL"
##  [61] "GR" "GT" "GU" "GY" "HK" "HN" "HR" "HU" "ID" "IE" "IL" "IN" "IO" "IQ" "IR"
##  [76] "IS" "IT" "JO" "JP" "KE" "KG" "KH" "KI" "KR" "KW" "KY" "KZ" "LA" "LB" "LK"
##  [91] "LS" "LT" "LU" "LV" "LY" "MA" "MC" "MD" "MG" "MK" "ML" "MM" "MN" "MT" "MU"
## [106] "MX" "MY" "MZ" "NA" "NE" "NG" "NI" "NL" "NO" "NP" "NZ" "OM" "PA" "PE" "PF"
## [121] "PG" "PH" "PK" "PL" "PR" "PS" "PT" "PW" "PY" "QA" "RE" "RO" "RS" "RU" "SA"
## [136] "SC" "SD" "SE" "SG" "SH" "SI" "SJ" "SK" "SN" "ST" "SV" "SY" "SZ" "TD" "TH"
## [151] "TJ" "TN" "TR" "TW" "TZ" "UA" "UG" "UK" "UM" "US" "UY" "UZ" "VE" "VN" "WS"
## [166] "ZA" "ZM" "ZW"

wiDB_sites() queries the database and returns a data.frame containing the latitude and longitude coordinates for all sites matching the provided query criteria. This supports quick screening of data availability, for example:

ls = wiDB_sites(countries = "US", types = "Lake_or_pond")
ps = wiDB_sites(countries = "US", types = "Precipitation")
omar = par("mar")
par(mar = c(4, 4, 1, 1))
plot(ls[, 2:1], xlim = c(-125, -68), ylim = c(25, 50))
points(ps[, 2:1], col = "red")

par(mar = omar)

Now we can refine our query and request isotope data using the function wiDB_data(). We will focus in on the area around Ames, Iowa, where the sites query showed both lake and precipitation data.

ld = wiDB_data(minLat = 41, maxLat = 42, minLong = -94, maxLong = -93, types = "Lake")
## Warning in wiDB_data(minLat = 41, maxLat = 42, minLong = -94, maxLong = -93, :
## No records returned
pd = wiDB_data(minLat = 41, maxLat = 42, minLong = -94, maxLong = -93, types = "Precipitation")
ld$data
##         Site_ID         Site_Name Latitude Longitude Elevation Sample_ID
## 1 NLA06608-2036 South Banner Lake 41.43839 -93.55097    238.24    710256
## 2 NLA06608-0008      Lake Ahquabi 41.29211 -93.59040    261.56    710288
## 3 NLA06608-0008      Lake Ahquabi 41.29211 -93.59040    261.56    710971
## 4 NLA06608-2056 Badger Creek Lake 41.46950 -93.92037    278.75    710972
##           Type Start_Date Start_Time_Zone     Collection_Date
## 1 Lake_or_pond         NA              NA 2007-07-11 00:00:00
## 2 Lake_or_pond         NA              NA 2007-07-12 00:00:00
## 3 Lake_or_pond         NA              NA 2007-08-22 00:00:00
## 4 Lake_or_pond         NA              NA 2007-08-22 00:00:00
##   Collection_Time_Zone  Phase Depth_meters Sample_Comments       d2H       d18O
## 1                   NA Liquid            0              NA -15.56189 -0.5534326
## 2                   NA Liquid            0              NA -25.35876 -2.0486228
## 3                   NA Liquid            0              NA -20.81503 -1.9292234
## 4                   NA Liquid            0              NA -27.77034 -3.3816347
##   D17O d2H_Analytical_SD d18O_Analytical_SD D17O_Analytical_SD
## 1   NA                NA                 NA                 NA
## 2   NA                NA                 NA                 NA
## 3   NA                NA                 NA                 NA
## 4   NA                NA                 NA                 NA
##   WI_Analysis_Source Project_ID
## 1      EPA_Corvallis         10
## 2      EPA_Corvallis         10
## 3      EPA_Corvallis         10
## 4      EPA_Corvallis         10
pd$projects
##   Project_ID Contact_Name Contact_Email
## 1         31           NA            NA
##                                                                                                                               Citation
## 1 W.W. Simpkins, Isotopic composition of precipitation in central Iowa, Journal of Hydrology, Volume 172, Issue 1, 1995, Pages 185-207
##                                            URL                Project_Name
## 1 https://doi.org/10.1016/0022-1694(95)02694-K Iqbal, 2008; Simpkins, 1995

Notice that the object returned by the data function is a named list that includes the requested data and a summary of the projects (data sources) from which those data are derived. See the documentation for this function for details, and always remember to cite any data you use!

Let’s look at the data a little more closely:

omar = par("mar")
par(mar = c(5, 5, 1, 1))
plot(pd$data$d18O, pd$data$d2H, xlab = expression(delta^{18}*"O"),
     ylab = expression(delta^{2}*"H"))
abline(10, 8)
points(ld$data$d18O, ld$data$d2H, col = "red")

par(mar = omar)

It appears that the precipitation values vary widely and cluster around the Global Meteoric Water Line, and the lake values are relatively high and somewhat below the GMWL, suggesting that they may be somewhat evaporatively enriched.

Meteoric Water Line source

What if we wanted to ‘correct’ for the isotopic effects of evaporation, giving sample values that could be compared directly with one or more unevaporated sources. In other words, based on isotopic data for a water sample and parameters describing a local meteoric water line (MWL), estimate the isotope ratios of the sample’s source prior to evaporation. If you have data you’d like to use to constrain the MWL, like we do here, the mwl function will produce a data object describing the line:

#extract the precipitation H and O isotope values
HO = data.frame(pd$data$d2H, pd$data$d18O)
MWL = mwl(HO)
## Warning in mwl(HO): Missing values removed from HO

If you don’t have local data for a MWL, the function mwlSource() (see below) has parameters for the Global Meteoric Water Line embedded as a default.

Now bundle the data for your water sample as an “iso” data object using the function iso(). Note that isoWater uses a bivariate normal distribution to describe all water sample values; thus the parameters in an iso object include the H and O isotope values, their 1 standard deviation uncertainties, and the error covariance for H and O. For measured sample values the covariance might be expected to be zero (the default value in iso()), but for many values (e.g., potential sample or source values estimated from multiple measurements) the H and O error covariance will be substantial.

#we will analyze one of our lake water samples, and assume realistic
#values of analytical uncertainty and no error covariance
obs = iso(ld$data$d2H[1], ld$data$d18O[1], 0.5, 0.1)

Lastly, we need to provide a prior distribution for the evaporation line slope, which is represented as a univariate normal distribution with mean and standard deviation parameters. These can be tricky to estimate, but there are number of papers out there that provide guidance, as well as some tools and data products that might help.

#assumed value that is reasonable for lake water evaporation in this
#location/climate
slope = c(5.2, 0.3)

With our inputs prepared, we can run the analysis using mwlSource().

mwls1 = mwlSource(obs, MWL, slope, ngens = 5e3)
## module glm loaded
mwls1$summary
##                    mean        sd       2.5%        25%         50%         75%
## E             8.1668697 1.2719711   6.086836   7.218841   8.0423434   9.0136391
## S             5.2366682 0.3000482   4.683854   5.026578   5.2356563   5.4272938
## deviance     -0.3322565 1.9702129  -2.263488  -1.739797  -0.9347807   0.4523214
## source_d18O  -8.7198167 1.2730128 -11.692351  -9.562841  -8.5986296  -7.7602749
## source_d2H  -58.3559483 7.3623660 -75.186548 -62.753742 -57.3946759 -52.9586724
##                  97.5%     Rhat n.eff
## E            11.180497 1.227904    15
## S             5.866917 1.007347   310
## deviance      4.945826 1.001015  7500
## source_d18O  -6.632157 1.259562    14
## source_d2H  -46.199175 1.251260    14

The summary object returned by the function provides two statistics that can be used to assess convergence (Rhat and effective sample size), in addition to summary statistics for the posterior distribution. For the relatively small chain lengths run in these examples we don’t expect strong convergence. The function’s output also includes an object containing all posterior samples (isoWater functions thin the posterior to 2500 samples per chain by default), which we can plot as a trace plot to visually assess burn-in and convergence:

plot(mwls1$results$source_d2H[1:2500], type = "l", ylim = range(mwls1$results$source_d2H))
lines(mwls1$results$source_d2H[2501:5000], col=2)
lines(mwls1$results$source_d2H[5001:7500], col=3)

The MWL model uses one of two line statistics to constrain the source water prior distribution. The default, shown above, uses the MWL prediction interval as the prior, appropriate if the source is best represented as a single sample of the type used to define the MWL. Alternatively, the argument stype = 2 can be provided to use the confidence interval as the prior constraint, appropriate for samples where the source is best represented as a mixture of many samples of the type used to define the MWL. You can see that this makes a substantial difference in the resulting posterior distribution, so make sure you’re using the right statistics for your problem:

mwls2 = mwlSource(obs, MWL, slope, stype = 2, ngens = 5e3)
omar = par("mar")
par(mar = c(5, 5, 1, 1))
plot(HO[, 2:1], xlim = c(-20, 0), ylim = c(-140, 0),
     xlab = expression(delta^{18}*"O"),
     ylab = expression(delta^{2}*"H"))
abline(MWL[2], MWL[1])
points(obs[2:1], col = "red")
points(mwls1$results$source_d18O, mwls1$results$source_d2H, col = "blue")
points(mwls2$results$source_d18O, mwls2$results$source_d2H, col = "green")

par(mar = omar)

Mixture source

What if instead of just back-correcting our sample values for evaporation, we wanted to explicitly assess the relative contribution of different water sources to the sample? In other words, based on isotope values for two or more potential water sources, what is the mixture of sources that contributed to the sample? The mixSource() function works similarly to mwlSource(), but requires different arguments to define the mixing model source priors. Values for all sources are provided in a single iso object:

#prep our data - we'll average the precipitation values by quarter
q = quarters(as.POSIXct(pd$data$Collection_Date))
qu = sort(unique(q))
ql = length(qu)

pd_q = data.frame("H" = numeric(ql), "O" = numeric(ql),
                  "Hsd" = numeric(ql), "Osd" = numeric(ql),
                  "HOc" = numeric(ql))
for(i in seq_along(qu)){
  pd_q$H[i] = mean(pd$data$d2H[q == qu[i]], na.rm = TRUE)
  pd_q$O[i] = mean(pd$data$d18O[q == qu[i]], na.rm = TRUE)
  pd_q$Hsd[i] = sd(pd$data$d2H[q == qu[i]], na.rm = TRUE)
  pd_q$Osd[i] = sd(pd$data$d18O[q == qu[i]], na.rm = TRUE)
  pd_q$HOc[i] = cov(pd$data$d18O[q == qu[i]], pd$data$d2H[q == qu[i]],
                    use = "pairwise.complete.obs")
}
pd_q
##            H          O      Hsd      Osd       HOc
## 1 -111.36000 -15.634667 59.49320 7.434212 439.68889
## 2  -32.91821  -4.784643 24.80235 3.257371  77.32559
## 3  -26.05879  -4.285000 19.06960 2.374869  44.77920
## 4  -54.53600  -9.051429 36.48143 4.546960 163.92950
#make the iso object, providing the stats calculated above
sources = iso(pd_q$H, pd_q$O, pd_q$Hsd, pd_q$Osd, pd_q$HOc)

Now we can run the analysis; let’s use the parallel option (also available in mwlSource()) to speed this up and run slightly longer chains:

mixs1 = mixSource(obs, sources, slope, ngens = 2e4, ncores = 2)
mixs1$summary
##                     mean        sd          2.5%          25%         50%
## E              7.9872527 1.3696797   5.761052620   7.04434915   7.8137545
## S              5.2106240 0.2757981   4.689347940   5.02614026   5.2091221
## deviance      -0.3379285 1.9729082  -2.263560739  -1.73895626  -0.9369124
## fracs[1]       0.2612318 0.1525540   0.028036967   0.14739134   0.2418514
## fracs[2]       0.2253313 0.1574923   0.009335320   0.08682875   0.2005774
## fracs[3]       0.3007492 0.1766572   0.032108586   0.15280000   0.2862316
## fracs[4]       0.2126878 0.1661361   0.006535698   0.07084060   0.1824765
## mixture_d18O  -8.5406782 1.3580881 -11.701182993  -9.38181432  -8.3698458
## mixture_d2H  -57.3460007 8.5027474 -77.393964149 -62.36003784 -56.1015750
##                      75%       97.5%     Rhat n.eff
## E              8.8426461  11.1471171 1.037180    49
## S              5.3946339   5.7564580 1.016040   110
## deviance       0.4423052   4.9285746 1.000972  5000
## fracs[1]       0.3443392   0.5783725 1.091419    29
## fracs[2]       0.3427406   0.5537044 1.187453    16
## fracs[3]       0.4412753   0.6553788 1.089248    34
## fracs[4]       0.3269098   0.5804653 1.036719    94
## mixture_d18O  -7.6044416  -6.3284394 1.031459    54
## mixture_d2H  -51.3553640 -43.8351660 1.033767    51

Again, we’re a long way from having a strongly converged simulation in which the posterior is likely to be a representative sample of the population parameters, but the initial ‘hint’ is that the lake sample values are consistent with a sub-equal source contribution from precipitation in each calendar quarter. Notice, too, that the evaporation-corrected sample values (‘mixture_d18O’ and ‘mixture_d2H’) are broadly similar to the equivalent values we obtained with the MWL model, above.

The default options use a prior that weights each source evenly, but if we have other information we can use the arguments mixprior and shp to prescribe different distributions. Values in mixprior are relative, so for example if we think Q1 is likely to have contributed twice as much as the other seasons…this may or may not have a strong impact on the results, depending on the strength of the constraints provided by the isotopic data:

mixs2 = mixSource(obs, sources, slope, prior = c(2, 1, 1, 1), ngens = 2e4, ncores = 2)
boxplot(mixs1$results[, 3:6], outline = FALSE)
boxplot(mixs2$results[, 3:6], add = TRUE, col = rgb(1, 0, 0, 0.5),
        outline = FALSE)