Literature DB >> 29188019

lakemorpho: Calculating lake morphometry metrics in R.

Jeffrey Hollister1, Joseph Stachelek2.   

Abstract

Metrics describing the shape and size of lakes, known as lake morphometry metrics, are important for any limnological study. In cases where a lake has long been the subject of study these data are often already collected and are openly available. Many other lakes have these data collected, but access is challenging as it is often stored on individual computers (or worse, in filing cabinets) and is available only to the primary investigators. The vast majority of lakes fall into a third category in which the data are not available. This makes broad scale modelling of lake ecology a challenge as some of the key information about in-lake processes are unavailable. While this valuable in situ information may be difficult to obtain, several national datasets exist that may be used to model and estimate lake morphometry. In particular, digital elevation models and hydrography have been shown to be predictive of several lake morphometry metrics. The R package lakemorpho has been developed to utilize these data and estimate the following morphometry metrics: surface area, shoreline length, major axis length, minor axis length, major and minor axis length ratio, shoreline development, maximum depth, mean depth, volume, maximum lake length, mean lake width, maximum lake width, and fetch. In this software tool article we describe the motivation behind developing lakemorpho, discuss the implementation in R, and describe the use of lakemorpho with an example of a typical use case.

Entities:  

Keywords:  R; lake depth; lake morphometry; lake volume; limnology

Year:  2017        PMID: 29188019      PMCID: PMC5698920          DOI: 10.12688/f1000research.12512.1

Source DB:  PubMed          Journal:  F1000Res        ISSN: 2046-1402


Introduction

The study and quantification of lake shape (i.e. lake morphology and morphometry) is one of the foundations of limnology, and for students of limnology, some of the first lessons are centered around a typical suite of metrics and how to calculate them [1]. It is also widely accepted that the morphometry of lakes and ponds can impact available nutrients and thus overall productivity. For instance, the widely used Vollenweider input-output models that are used to estimate nutrient concentrations rely on hydraulic residence time and sometimes mean depth, both of which are derived from total lake volume [2, 3]. Also, clear water versus turbid water states in lakes have been linked in part to lake morphometry, in particular mean depth [4, 5]. In short, limnologists have long recognized the importance of lake morphology as one factor controlling a variety of ecological processes in lakes. Traditional methods for calculating lake morphometry metrics have relied upon the use of paper bathymetry maps, planimeters, or simple heuristics [6– 9]. In addition, detailed bathymetry is a requirement for the calculation of most lake morphometry metrics, but is generally only available for a relatively small number of lakes. Although this is not a problem when the focus of a study is a single lake, a small number of lakes, or a group of well-studied lakes, reliance on complete bathymetry becomes a limitation when attempting to conduct regional or national-scale lake studies. For instance, Soranno et al. found that for some water quality datasets lake depth, in spite of its importance, was not always available [10]. In cases such as these, alternative approaches for estimating lake morphometry are required. Recent work has demonstrated the ability to estimate many of these metrics from ubiquitous spatial data [9, 11– 13]. For instance, maximum depth and lake volume may be predicted using the lake polygon and surrounding topography [9, 11] provided by the National Hydrography Dataset Plus and the National Elevation Dataset, respectively [14, 15]. These methods were initially developed with proprietary tools, thus limiting their accessibility. In an effort to reach a broader audience, the tools were converted to R, expanded to include a more complete suite of lake morphometry metrics and compiled into an R Package.

Methods

Implementation in R

Using R as a Geographic Information System is now possible, as several packages provide spatial data handling, geospatial analysis, and visualization. It is because of these packages that lakemorpho was implemented as an R package [16]. In particular, lakemorpho relies on the following packages: maptools, rgdal, raster, rgeos, sp, and geosphere [17– 23]. In addition to these packages, two external libraries, the Geospatial Data Abstraction Library (GDAL) and Geometry Engine, Open Source (GEOS), are needed. Their availability to R and installation varies by operating system [24, 25].

Using lakemorpho

The lakemorpho package includes one function to create a lakeMorpho object, several functions to calculate morphometry metrics, a default plotting function, two example datasets, and an example lakeMorpho object. A typical workflow for using lakemorpho to calculate lake metrics would include pulling spatial data into R (e.g. as shapefiles, tiff, etc.), creating a lakeMorpho object and calculating the desired lake morphometry metrics. The following sections provide details on the type of input data required and demonstrate use of the available functions with the provided example data. Many of the lake morphometry metrics rely on the same information about the lake. For instance, the functions to estimate maximum depth, mean depth, and volume rely on statistical summaries of the surrounding topography as well as the maximum in-lake distance to shoreline [9, 11]. To avoid recalculating these values, a lakeMorpho object was created to link information on surrounding topography to the original datasets and facilitate default plotting of the outputs. All lake morphometry functions in the lakemorpho package require an object of class lakeMorpho as input. Some functions also return an updated lakeMorpho object that includes calculated spatial objects as output. At a minimum, a lakeMorpho object contains (see Figure 1):
Figure 1.

Diagram of lakemorpho object.

"lake" - A SpatialPolygons or SpatialPolygonsDataFrame object of the original input lake data. "elev" - A RasterLayer representing the elevation in a suitably large area around the lake. "surround" - A SpatialPolygons or SpatialPolygonsDataFrame object representing the land area defined as the surrounding topography. "lakeDistance" - A RasterLayer object of the euclidean distance from the shoreline to center of each pixel. Maximum value is equal to the maximum in-lake distance. "lakeOnEdge" - A logical value indicating if the "surround" polygon falls on the edge of the "elev" raster (i.e. would contain missing (i.e. NA) elevation data). The lakeSurroundTopo function is the primary mechanism for creating a lakeMorpho object. There are two required inputs and one optional input for lakeSurroundTopo. The first required input is a SpatialPolygons or SpatialPolygonsDataFrame of the lake [21]. Only a single lake is accepted as input, although this lake may be composed of multiple polygons (i.e. a lake with islands). If metrics for multiple lakes are required they will need to be passed to the suite of lakemorpho functions separately. The second required input is a RasterLayer of the elevation surrounding the lake [22]. The default raster size is taken from the resolution of the input elevation data but may be specified separately. The third input specifies the area representing the surrounding topography. By default, this is a buffer of the lake shoreline, with the buffer width equal to the maximum in-lake distance. An optional SpatialPolygons object of any polygon intersecting the lake (e.g. catchments) can be used to define the surrounding topography instead of the default buffer. An object of class l akeMorpho is returned from lakeSurroundTopo. In addition to providing the required inputs, users should pay attention to both the extent of the input elevation dataset as well as the coordinate reference systems being used. First, the elevation data must be of a large enough extent so that the surrounding topography does not include land area outside that extent (i.e. would return NA values). As noted above, the lakeOnEdge item indicates if the surrounding topography is on the edge of the user supplied elevation and thus would return some missing data. Second, all of the functions of lakemorpho assume that projections have been handled prior to creating the lakemorpho class or calculating the metrics. If the input data are not of the same projection, lakeSurroundTopo will return an error. The data must be re-projected into the same coordinate reference system (CRS). The units of all metrics are determined by the CRS and care must be taken to make sure that the vertical units of the elevation are the same as horizontal units of the projection. For instance, elevation data may be available in meters yet the CRS is specified in feet. In cases such as these, a conversion of the vertical data should be done. Lastly, care must be taken in choosing an appropriate CRS for the area under consideration. This is because all CRS will distort area, distance, shape, or direction. Thus a projection that minimizies distortions of distance and area are preferrable. A useful reference for further exploring coordinate reference system is Iliffe and Lott's 2008 book on the topic [26]. Usage of lakeSurroundTopo and generation of a lakeMorpho object from the example data included with lakemorpho is done as follows: The resulting object contains the minimum set of components that make up a lakeMorpho object. We can verify that the components are of the expected class with the following command: Each of the remaining functions expects a lakeMorpho object as input and returns a numeric value. Some of the functions also have a side effect of adding a spatial object to the input lakeMorpho object. calcLakeMetrics The calcLakeMetrics function is a convenience function that will calculate all of the lakemorpho metrics for a single lakeMorpho object. It requires an input lakeMorpho object, a bearing for calculating lakeFetch, and pointDens for maximum lake length and width (defined below). lakeFetch Fetch is the maximum open water distance in a given direction and can be used an indicator of mixing as greater fetch implies greater potential for waves due to wind effects [27]. The lakeFetch function calculates fetch along an input bearing. The input bearing may be any value from 0 to 360 where 0 and 360 both represent north, and the fetch for opposite directions (e.g. east and west) are identical. To calculate the fetch of an input lake use: lakeMajorAxisLength The major axis of a lake is defined as the longest line intersecting the convex hull formed around its polygon while passing through its center. In contrast to lakeMaxLength, its value represents the distance across a lake without regard to land-water configuration. To calculate the major axis length of an input lake use: lakeMaxDepth Maximum lake depth provides information that may be used, along with flow rates, to estimate the residence time of a lake. While there is no substitute for field verified measurements, maximum lake depth may be estimated from the surrounding topography. The lakeMaxDepth function uses the methods outlined in Hollister et al. [11] to provide an estimate of the maximum lake depth. It requires only a lakeMorpho object as input. Optionally, a correction factor based off of verified depth data may be specified if one is known. To calculate maximum depth use: It is important to note that the accuracies of these maximum depth predictions do vary across regions and often a correction factor using field measured data is required. For example, Hollister et al. [11] demonstrate that for the New England and Mid-Atlantic regions of the United States East coast, the initial predictions were larger than the true values and needed to be reduced. lakeMaxLength Maximum lake length is the longest open water distance within a lake and, similar to fetch, is a metric that can be used to estimate mixing potential [1, 28]. The current implementation of this calculation in lakemorpho places points at equal distances along the shoreline of the lake and then finds the longest point-to-point distance that also does not intersect land (e.g. peninsulas or islands). The optional parameter addLine has a default value of TRUE and allows the SpatialLines object to be stored on the input lakeMorpho object ( Figure 2).
Figure 2.

Diagram of the lakemorpho object before and after calculating a lake metric.

To calculate maximum lake length use: The pointDens parameter can have an impact on both the processing time and the resulting value and both of these can vary as a function of the complexity of the shape of the lake with less complex lakes providing more consistent lake length across a number of points. Given this caveat, care must be taken in choosing an appropriate number of points (and thus lines) to use to calculate maximum lake length. Several densities should be tested and the smallest number of points that produce a stable estimate should be used. lakeMaxWidth Maximum lake width is the maximum shore to shore distance that is perpendicular to the line representing maximum lake length and is another metric related to mixing [1, 28]. The lakeMaxWidth function requires a lakeMorpho object and pointDens value which is used to determine the number of points along the maximum lake length line. The issue with pointDens, discussed above, also exists for the use of pointDens with lakeMaxWidth and care should be taken to determine an appropriate number of lines to test. Usage of lakeMaxWidth is: lakeMeanDepth Mean depth of a lake is calculated as the volume of the lake divided by the area [1, 28]. This function requires only a lakeMorpho object and returns a numeric value of the mean depth. Usage of the function is: There is an optional zmax argument that allows a user to specify a maximum lake depth if one is available. If not supplied, the maximum depth will be estimated using lakeMaxDepth. For instance, in the above example, the maximum depth without using a correction factor is estimated at 99 meters which results in a mean depth estimate of 28.95. The measured maximum depth, 32 meters, is much less than the estimate depth. To use this information you would simply add the measured valued in for the zmax argument. lakeMeanWidth The mean width of a lake is defined as lake area divided by maximum lake length [1, 28]. Input for this function is a lakeMorpho object that has the maximum lake length line added via 'lakeMaxLength`. This requirement is checked and returns an error if the maximum length line is missing. lakeMinorAxisLength The minor axis of a lake is defined as the shortest line intersecting the convex hull formed around the lake polygon while passing through its center. In contrast to lakeMaxWidth, its value represents the distance across a lake with regard to the the convex hull and without consideration of the land-water configuration. lakeMinorMajorRatio The ratio of the lake major axis length to the minor axis length is also known as the aspect ratio. Circular lakes have aspect ratios approaching 1 while thin-elongated lakes have aspect ratios approaching 0. If major and minor axis length have not already been added to the lakeMorpho object, these are calculated. The addLine argument adds the lines for the lake's minor and major axes to the lakeMorpho object. lakeShorelineDevelopment The shoreline development metric provides a measure of the complexity of the shoreline. It is a ratio of the perimeter of the lake to the perimeter of a circle of the same area. Values will be 1 or greater with value of 1 indicating a circular lake. This metric is used as an indicator of potential habitat [1, 28]. It only requires a lakeMorpho object as input. lakeShorelineLength and lakeSurfaceArea Shoreline length is simply the total perimeter of the lake polygon and, as with all other functions, requires a lakeMorpho object as input. To calculate the shoreline length: Similarly, surface area for a lake is the total area of the lake polygon. It is calculated via: lakeVolume The lakeVolume function uses maximum lake depth (see lakeMaxDepth) and methods outlined by Hollister et al. [9] to estimate lake volume. The method assumes that the maximum in-lake distance (D max) from the shoreline is also the deepest part of the lake (Z max). The lakeVolume function creates a raster of the in-lake distance to shoreline and converts those distances, using Z , to depths and then summing the volume of each pixel to estimate total lake volume. Similar to lakeMeanDepth, there is a zmax argument to be used for a known maximum lake depth.

Use case

A common application of lakemorpho is to calculate the full suite of lake metrics for multiple lakes. This use case demonstrates how to do that with a commonly encountered GIS data file, the shapefile. To do this we iterate through the lakes, calculate metrics for each lake and include the metrics on an output shapefile. The data for this use case is from Rhode Island ( Figure 3). The data for the lakes were downloaded from the Rhode Island Geographic Information Systems (RIGIS) [29] and the elevation data are from Amazon Web Services Terrain Tiles via the elevatr package [30].
Figure 3.

Map of lakes used in the case study example of the lakemorpho package.

Read in data

This use case relies on the sp and rgdal packages for the spatial data handling. These are dependencies for lakemorpho, thus no additional installs are required. To read in the data we utilized rgdal::readOGR and read in the ri_lakes.shp from the current directory. This file is available for download from https://github.com/USEPA/lakemorpho_manuscript/blob/master/ri_lakes.zip.

Iterate through lakes and calculate metrics

In R, there are many ways to iterate. For simplicity and clarity we use a for loop to iterate through all lakes and calculate the full suite of lake metrics with calcLakeMetrics. We will utilize the elevatr package which provides access to elevation data from various sources [30]. In this example we will use the Amazon Web Services terrain tiles. The vertical elevation data are in meters and the Rhode Island lake data are projected in Rhode Island State Plane Feet, thus we will convert the elevation data into feet. We can now merge the morphometry metrics back to the lake polygons.

Conclusions

The lakemorpho package provides functions to calculate common lake morphometry metrics in R. For those conducting lake analyses in R this allows for streamlined analysis workflows. Also, lakemorpho provides a foundation for additional metrics. For instance, it might be possible to combine hydrological methods for estimating stream flow into and out of lakes with lake volume and add a function for calculating residence time. Beyond adding additional metrics, more fundamental rewriting of the package may also be useful. For instance, lakemorpho currently is built on top of the current spatial data standard for R, sp. This allows a clean interface with many existing tools; however, it is likely that sp will be replaced in the next several years by the sf package [21, 31]. Future versions of lakemorpho might benefit from using the sf tool chain and the "tidy data" framework [32]. In summary, lakemorpho provides limnologists and aquatic ecologists with a consistent framework in R for calculating a suite of the most common lake morphometry metrics. This paper outlines the currently available functions and provides an example through a typical use case of calculating many metrics for several lakes.

Software availability

The lakemorpho version 1.1.0 package is currently available directly from the Comprehensive R Archive Network (CRAN) and may simply be installed and loaded in R via: To access the help pages (including a version of this manuscript) use: There are tentative plans to continue developing new functions for lakemorpho and these new features will be available first through the development version on GitHub at http://github.com/usepa/lakemorpho. To install and load the development version requires use of the devtools package. This may be done with: Archived source code as at the time of publication: http://doi.org/10.5281/zenodo.863051 [33] In this manuscript, the Hollister and Stachelek outline the functionality and use of the lakemorpho R package. The package includes a number of tools that allow users to calculate morphological, including a some generally complex metrics that are not easy to recreate using existing functionality in available spatial packages. Packages such as these go a long way to preventing the constant re-inventing of the wheel by graduate students and other researchers in generating code to calculate these metrics. This package is a significant contribution to the field and this paper does a reasonable job of describing the package. I have a few minor suggestions that I think will improve the manuscript and applicability of the package. Some of these metrics are not immediately intuitive to most readers. It would be super useful to have a figure, maybe with a series of panels, that shows the reader what each of these metrics are on some example lakes where it matters. This would be great to have accompanying the section “Lake Morphology Functions”. There needs to be a description of what the option ‘pointDens’ means. Does it have units? Is it relative to the projection or independent of it? Further, while this may be difficult, would it be possible to show the sensitivity of output metrics to pointDens for complex lakes? It would be great to know if there was a reliable metric that could be used, perhaps a default informed by the total lake area or SDF? Such a default or heuristic would be really useful to the purported use here (calculations on a large number of less-studied lakes). Basically, if I use this on 1 million lakes at the continental scale, I really need an informed way to pick that pointDens value. Right now, this package has depth-related calculations for lakes which do not have observed bathymetry. It would be really useful if the package could be generalized to use observed bathymetry rasters in the calculation of max and mean depth. Such data are increasingly available (e.g. http://bathybase.org). A lot of 1-D hydrodynamic models need an estimate of the hypsometric curve. It would be great if an additional function could be included that would use either an estimated bathymetry or a provided bathy raster (see earlier comment) and output the lake’s hypsometric curve. Very useful in hydrodynamic modeling. Here are a few additional publications you might consider referencing. At the moment, references to existing lake morphological literature is a little thin. Especially check out other work of Håkanson as he’s a morphology master. Håkanson, L. (2005), The Importance of Lake Morphometry for the Structure and Function of Lakes [1] Dunalska, J. a. (2011), Impact of morphometric and catchment variables on summer organic carbon richness in deep temperate lakes [2] Read, E. K. et al. (2015), The importance of lake-specific characteristics for water quality across the continental United States [3] I look forward to using this useful tool! I have read this submission. I believe that I have an appropriate level of expertise to confirm that it is of an acceptable scientific standard. The lakemorpho package fills a need in the limnological community (and beyond) for easily deriving lake morphometry metrics in a repeatable and documented way. The package is relatively simple to use and understand, and implements common, published methods for calculate lake morphometry metrics. Additionally, the authors implement a tool for predicting lake depth, which is a difficult lake parameter to obtain. I only a have minor suggestions for changes in the language and documentation for the package. Most of these changes are related to the order in which ideas are presented in the paper. While reading the paper, I had several questions that were later answered, but I think the authors can avoid the questions altogether by simply rearranging some of the text (see specific comments below). Additionally, I think it’s important for the authors to include an error estimate of the lake depth predictions – prediction error is notoriously high for lake depth, and I think it’s important for users to understand this. I recommend this paper for publication after the following changes are considered – and I look forward to using the package! Minor revisions: - Recommend removing “…and for students of limnology, some of the first lessons are centered around a typical suite of metrics and how to calculate them.” from the first sentence and instead lead with morphometry affecting water quality. - What is a “suitably large area around the lake”? 50m, 100m? - I think you can remove bulleted list from the first paragraph of the lakeMorpho and lakeSurroundTopo section. It only roughly introduces pieces of the lakeMorpho object, and left me with more questions than answers (e.g., previous question RE: suitably large area around the lake which you answer later). You answered all of the questions immediately in the next paragraphs, which left me feeling like you could just leave out the list, or use it as a summary list at the end of the section. - “If metrics for multiple lakes are required they will need to be passed to the suite of lakemorpho functions separately.” This seems to be in direct contradiction with the purpose of the package – which is to derive morphometry metrics for a large number of lakes. It becomes clear later in the text that you address this with a use-case. I think you should state this up front – “Although each lake must be passed through lakemorpho functions separately, we provide a use case to show how a user can easily calculate these metrics for several lakes”. - This sentence is really confusing: “First, the elevation data must be of a large enough extent so that the surrounding topography does not include land area outside that extent (i.e. would return NA values)”. My interpretation is: “The extent of the elevation data must be equal to or greater than the extent of the area surrounding the lake that you are summarizing”. I think this is confusing because you are not using “surrounding topography” in a general sense but as a defined area that is part of the user input. Perhaps use a different naming convention? You’re describing the surrounding topography (through summarizing the elevation data) within a specified area. Perhaps elevation = your fabric and buffer area = your stencil? This is adopting language from the USGS geoknife package. It may not make sense to use fabric since you only have one type of raster input, but I think stencil is a nice word to use for your variable buffer/watershed area. I see you call this “surround” in the lakemorpho object, so that may be a good option as well. - Maybe give some error measurement from the max depth predictions in the Hollister paper? I think it’s important for users to understand there is substantial error in these models. - I think you should briefly describe the Hollister methods for calculating zmax in this paper. Also, the mean depth calculation is unclear from the text. How is volume calculated? By estimating depth at each pixel of the lake? Do you know anything about the error of these estimates? Ok – now I see that you give a good description of volume. Maybe move volume up earlier (before mean depth)? - In the lake shoreline development section: “This metric is used as an indicator of potential habitat” It is also used an indicator of potential terrestrial-aquatic linkages [1]. I have read this submission. I believe that I have an appropriate level of expertise to confirm that it is of an acceptable scientific standard.
  6 in total

1.  structSSI: Simultaneous and Selective Inference for Grouped or Hierarchically Structured Data.

Authors:  Kris Sankaran; Susan Holmes
Journal:  J Stat Softw       Date:  2014-09-12       Impact factor: 6.440

2.  The importance of lake-specific characteristics for water quality across the continental United States.

Authors:  Emily K Read; Vijay P Patil; Samantha K Oliver; Amy L Hetherington; Jennifer A Brentrup; Jacob A Zwart; Kirsten M Winters; Jessica R Corman; Emily R Nodine; R Iestyn Woolway; Hilary A Dugan; Aline Jaimes; Arianto B Santoso; Grace S Hong; Luke A Winslow; Paul C Hanson; Kathleen C Weathers
Journal:  Ecol Appl       Date:  2015-06       Impact factor: 4.657

3.  Predicting maximum lake depth from surrounding topography.

Authors:  Jeffrey W Hollister; W Bryan Milstead; M Andrea Urrutia
Journal:  PLoS One       Date:  2011-09-30       Impact factor: 3.240

Review 4.  Building a multi-scaled geospatial temporal ecology database from disparate data sources: fostering open science and data reuse.

Authors:  Patricia A Soranno; Edward G Bissell; Kendra S Cheruvelil; Samuel T Christel; Sarah M Collins; C Emi Fergus; Christopher T Filstrup; Jean-Francois Lapierre; Noah R Lottig; Samantha K Oliver; Caren E Scott; Nicole J Smith; Scott Stopyak; Shuai Yuan; Mary Tate Bremigan; John A Downing; Corinna Gries; Emily N Henry; Nick K Skaff; Emily H Stanley; Craig A Stow; Pang-Ning Tan; Tyler Wagner; Katherine E Webster
Journal:  Gigascience       Date:  2015-07-01       Impact factor: 6.524

5.  Estimating the volume and age of water stored in global lakes using a geo-statistical approach.

Authors:  Mathis Loïc Messager; Bernhard Lehner; Günther Grill; Irena Nedeva; Oliver Schmitt
Journal:  Nat Commun       Date:  2016-12-15       Impact factor: 14.919

6.  Estimating summer nutrient concentrations in Northeastern lakes from SPARROW load predictions and modeled lake depth and volume.

Authors:  W Bryan Milstead; Jeffrey W Hollister; Richard B Moore; Henry A Walker
Journal:  PLoS One       Date:  2013-11-19       Impact factor: 3.240

  6 in total
  5 in total

1.  Modeling Anthropogenic and Environmental Influences on Freshwater Harmful Algal Bloom Development Detected by MERIS Over the Central United States.

Authors:  J S Iiames; W B Salls; M H Mehaffey; M S Nash; J R Christensen; B A Schaeffer
Journal:  Water Resour Res       Date:  2021-10-19       Impact factor: 6.159

2.  Lake Water Levels and Associated Hydrologic Characteristics in the Conterminous U.S.

Authors:  C Emi Fergus; J Renée Brooks; Philip R Kaufmann; Alan T Herlihy; Amina I Pollard; Marc H Weber; Steven G Paulsen
Journal:  J Am Water Resour Assoc       Date:  2020-06-01

3.  Guiding riparian management in a transboundary watershed through high resolution spatial statistical network models.

Authors:  Stephanie Figary; Naomi Detenbeck; Cara O'Donnell
Journal:  J Environ Manage       Date:  2020-11-13       Impact factor: 6.789

4.  Rethinking the lake trophic state index.

Authors:  Farnaz Nojavan A; Betty J Kreakie; Jeffrey W Hollister; Song S Qian
Journal:  PeerJ       Date:  2019-11-12       Impact factor: 2.984

5.  Spatio-Temporal Modeling for Forecasting High-Risk Freshwater Cyanobacterial Harmful Algal Blooms in Florida.

Authors:  Mark H Myer; Erin Urquhart; Blake A Schaeffer; John M Johnston
Journal:  Front Environ Sci       Date:  2020-11-02
  5 in total

北京卡尤迪生物科技股份有限公司 © 2022-2023.