Skip to main content
Advertisement
Browse Subject Areas
?

Click through the PLOS taxonomy to find articles in your field.

For more information about PLOS Subject Areas, click here.

  • Loading metrics

marmap: A Package for Importing, Plotting and Analyzing Bathymetric and Topographic Data in R

  • Eric Pante ,

    Contributed equally to this work with: Eric Pante, Benoit Simon-Bouhet

    pante.eric@gmail.com

    Affiliation Littoral, Environnement et Sociétés Joint Research Unit 7266 Centre National de la Recherche Scientifique, Université de La Rochelle, La Rochelle, France

  • Benoit Simon-Bouhet

    Contributed equally to this work with: Eric Pante, Benoit Simon-Bouhet

    Affiliation Littoral, Environnement et Sociétés Joint Research Unit 7266 Centre National de la Recherche Scientifique, Université de La Rochelle, La Rochelle, France

Abstract

In this communication we introduce marmap, a package designed for downloading, plotting and manipulating bathymetric and topographic data in R. marmap can query the ETOPO1 bathymetry and topography database hosted by the NOAA, use simple latitude-longitude-depth data in ascii format, and take advantage of the advanced plotting tools available in R to build publication-quality bathymetric maps. Functions to query data (bathymetry, sampling information…) are available interactively by clicking on marmap maps. Bathymetric and topographic data can also be used to calculate projected surface areas within specified depth/altitude intervals, and constrain the calculation of realistic shortest path distances. Such information can be used in molecular ecology, for example, to evaluate genetic isolation by distance in a spatially-explicit framework.

Introduction

Marine ecologists still lack simple, highly-customizable tools for building and using marine charts, open-source tools being particularly lacking. Currently, apart from commercial solutions, marine ecologists can use GIS tools such as GRASS GIS [1], or the graphical user interface provided by GeoMapApp [2] and Google Earth [3] to prepare publication-quality bathymetric charts, but these tools either require knowledge in the field of GIS, or are limited in the number of functions, datasets, and analyses available. The R environment [4] is a convenient platform for generating maps, thanks to its built-in functions for data matrix manipulation and advanced graphics. The package marmap [5], introduced herein, takes advantage of these built-in functions, as well as packages for spatial analysis developed by others, to provide a simple and flexible tool for importing, manipulating, plotting and exporting bathymetric data. It provides a simple platform for bathymetric data analysis and plotting even with limited experience with R, and allows production of publication-quality maps. The entirety of the marmap package was coded in the R language, providing advanced R users with the opportunity to fine-tune or expand any function. Also, because all bathymetric data are imported as R objects, the arsenal of R tools can be utilized for analyses not implemented in the marmap package.

Description of the marmap Package

Portability

Binaries and source code for the marmap package are freely available on the Comprehensive R Archive Network (CRAN [6]), along with a tutorial (also called “R vignette”). marmap contains R code exclusively, which maximizes its portability across platforms. CRAN makes the source code and binaries available for Unix-like and Windows operating systems [5].

Importing and Plotting Bathymetric Data

marmap offers different ways to upload bathymetric information, which should provide flexible data preparation, depending on need and access to online resources. First, bathymetric data can be downloaded directly from within R by querying the ETOPO1 database [7] hosted by the NOAA. Second, three-column data frames (with longitude, latitude, and depth data) can be imported from different sources, such as the US National Ocean and Atmospheric Administration (NOAA) [8]. Third, marmap has functions to prepare and use a local SQL database, stored on the user's hard drive. Use of a personalized SQL bathymetry database is convenient for querying subsets of very large bathymetric datasets such as the 5Go ETOPO1. Finally, data can be imported like any other dataset into R, and converted using marmap functions. While marmap was originally designed for marine ecologists, it is fully compatible with topographical data, which can be treated along with bathymetric data, or analysed on their own.

Once loaded into R, bathymetric data are re-organized as a matrix that is used for manipulation, plotting and exporting. These data are represented as an R class called “bathy”, valid within a marmap session. The creation of a custom R class allows the use of generic functions such as plot and summary. Bathymetric data of class “bathy” can be plotted with the streamlined marmap plotting tools, or used with other geographic analysis packages (e.g. “maps” [9]). Bathymetric data can be plotted as simple contour plots, with control over the range, density and look of isobaths, or with automatic isobath choice and placement. Contour plots can be coupled with heat maps with built-in and customizable color ramps (Figure 1A,E). Sampling data (GPS points, tracks, polygons, etc…) and text (legends, labels, scales, etc…) can simply be added to marmap maps using R low-level functions.

thumbnail
Figure 1. Examples of two and three dimensional plots created using marmap tools.

Left panel (A): data from the NW Atlantic Ocean, showing the NE coast of the USA and the New England and Corner Rise seamounts chains. The blue line represents the position of two- (B) and three- (C) dimensional cross sections, the red rectangle delimiting the area covered by the belt transect. The bottom left figure (D) represents the NW Atlantic data as plotted with the wireframe function from package lattice [21], based on data imported with marmap. Right panel: map of Papua New Guinea and satellite islands (E; see text). The middle figure (F) represents the results of a least-cost path analysis around the Hawaiian islands (coastline in thick black, dark grey: 1000 m isobath, light grey 4000 m isobath; red line: path avoiding waters shallower than 1000 m, blue line: path avoiding waters shallower than 4000 m). The bottom figure (G) represents the results of projected surface area calculations for the bathyal and abyssal areas around the Hawaiian islands. R code is available in File S1.

https://doi.org/10.1371/journal.pone.0073051.g001

For example, creating a map of Papua New Guinea can be done in three lines of code, in a new R session:

  1. > library(marmap)
  2. > getNOAA.bathy(lon1 = 140,lon2 = 155,lat1 = −13,lat2 = 0, resolution = 1) ->papoue
  3. >plot(papoue, image = TRUE)

The first line loads marmap, the second queries bathymetric data (resolution of 1 minute) and stores the result in a variable of class “bathy,” and the third line creates a map with automatic isobath choice and built-in color ramp. The upper right map on Figure 1, plotted with isobaths of different widths and colors as well as a custom color ramp was produced with these two lines (the first creating and storing a custom palette, and the second creating the map; details on commands and their arguments are available in the marmap documentation on CRAN):

  1. > colorRampPalette(c("red","purple","blue","cadetblue1","white")) -> blues
  2. >plot(papoue, image = T, bpal = blues(100),
  3. deep = c(−9000, −3000,0), shallow = c(−3000, −10, 0), step = c(1000, 1000, 0),
  4. col = c("lightgrey","darkgrey","black"), lwd = c(0.3,0.3,0.6), lty = c(1,1,1),
  5. drawlabel = c(F,F,F))

Using Bathymetric for Further Ecological Analysis

By interactively clicking on a map, the user can retrieve bathymetric data (either from a point or an area), sampling information (e.g. list of specimens sampled within a particular geographic area), or two- and three-dimensional depth cross-sections (Figure 1B–C). Projected surface areas can also be estimated for specified depth ranges, such as the bathyal and abyssal zones around Hawaii (Figure 1G).

Based on functions developed by Jacob van Etten in the raster and gdistance packages [10], [11], marmap facilitates analysis of geographically-explicit ecological data, by allowing least-cost path calculation constrained by bathymetry and/or topography. Shortest great-circle (haversine) distance between pairs of sites, avoiding land masses or depth layers, are calculated. Outputs of least-cost path analysis can be in the form of great-circle distance, taking into account the curvature of the Earth, and in the form of geographical paths that can be plotted on marmap maps, and used to compute two- and three-dimensional depth cross-sections. Distance data can be easily exported for direct use in landscape genetics software such as TESS [12]. Data can also be used directly from within R to perform Mantel tests or other analyses [13][15].

Interactions with other Packages

marmap interacts with multiple existing R packages for visualization and analysis, such as lattice for building three-dimensional plots (Figure 1C–D), and gdistance for least-cost path calculations (see above). marmap also contains functions to ease interactions with other packages dedicated to the analysis of spatial data. Data from class bathy can be transformed into raster objets for use in the raster package [10] (functions trans.mat and as.raster). Bathy objects can also be converted into the class SpatialGridDataFrame for use in the sp package [16], [17] (function as.SpatialGridDataFrame). These transformed objects can be converted back into objects of class bathy using the as.bathy function. In the example below, the package raster is used to change the projection of a dataset extracted from ETOPO1. The first line creates a raster object from a bathy object, the second defines the target projection (PROJ.4 format), the third creates a new projected raster object, and the last converts the new raster projection into a bathy object for plotting with marmap. Figure 2 provides an example of such transformed data.

  1. > r1<- as.raster(original.marmap.data)
  2. > new.projection <- "+proj = ortho"
  3. > r2<- projectRaster(r1,crs = new.projection)
  4. >projected.marmap.data <- as.bathy(r2)
thumbnail
Figure 2. Exemple of ETOPO1 data downloaded with the marmap package, transformed with the raster package, and plotted with marmap.

Orthographic projection, resolution of 10 minutes. R code is available in File S1.

https://doi.org/10.1371/journal.pone.0073051.g002

Conclusions

marmap was designed to provide easy-to-use tools for importing and using bathymetric and topographic data in R. While marmap has been primarily designed for research, and the rapid production of publication-quality maps (examples: [18][20]), its simplicity of use should make it interesting as a teaching tool as well.

Supporting Information

Acknowledgments

The authors thank Mikael Guichard for his help with remote data accession, as well as Amélia Viricel and two anonymous reviewers for constructive criticism of the manuscript.

Author Contributions

Conceived and designed the experiments: EGP BSB. Performed the experiments: EGP BSB. Analyzed the data: EGP BSB. Contributed reagents/materials/analysis tools: EGP BSB. Wrote the paper: EGP BSB.

References

  1. 1. GRASS Development Team (2012) Geographic Resources Analysis Support System (GRASS GIS) Software. Open Source Geospatial Foundation, USA. Available: http://grass.osgeo.org. Accessed: 2013 Apr 5.
  2. 2. Ryan W, Carbotte S, Coplan J, O'Hara S, Melkonian A, et al. (2009) Global multi-resolution topography synthesis. Geochemistry, Geophysics, Geosystems 10: Q03014.
  3. 3. Google (2013) Google Earth. Available: http://www.google.fr/earth/. Accessed: 2013 Mar 27.
  4. 4. R Development Core Team (2012) R: A Language and Environment for Statistical Computing R Foundation for Statistical Computing, Vienna, Austria. ISBN 3-900051-07-0. Available: http://www.R-project.org. Accessed: 2013 Apr 5.
  5. 5. Pante E, Simon-Bouhet B (2013) marmap: Import, plot and analyze bathymetric and topographic data. R package version 0.5 Available: http://CRAN.R-project.org/package=marmap. Accessed: 2013 Apr 10.
  6. 6. CRAN (2013) The Comprehensive R Archive Network. Available: http://cran.r-project.org/. Accessed: 2013 Apr 5.
  7. 7. Amante C, Eakins BW (2009) Etopo1 1 arc-minute global relief model: Procedures, data sources and analysis. NOAA Technical Memorandum NESDIS NGDC-24 1–19.
  8. 8. NOAA National Geophysical Data Center (2013) GEODAS Grid Translator - Design a grid. Available: http://www.ngdc.noaa.gov/mgg/gdas/gd_ designagrid.html. Accessed: 2013 Apr 5.
  9. 9. Original S code by Richard A Becker and Allan R Wilks R version by Ray Brown-rigg Enhancements by Thomas P Minka (2013) maps: Draw Geographical Maps. Available: http://CRAN.R-project.org/package=maps. R package version 2.3–2. Accessed: 2013 Apr 10.
  10. 10. van Etten RJHJ (2012) raster: Geographic data analysis and modeling. Available: http://CRAN.R-project.org/package=raster. R package version 2.0–41. Accessed: 2013 Apr 10.
  11. 11. van Etten J (2012) gdistance: Distances and routes on geographical grids. R package version 1.1–4. Available: http://CRAN.R-project.org/package=gdistance. Accessed: 2013 Apr 10.
  12. 12. Durand E, Jay F, Gaggiotti O, François O (2009) Spatial inference of admixture proportions and secondary contact zones. Molecular Biology and Evolution 26: 1963–1973.
  13. 13. Dray S, Dufour A, Chessel D (2007) The ade4 package-II: Two-table and K-table methods. R News 7: 47–52.
  14. 14. Dray S, Dufour A (2007) The ade4 package: implementing the duality diagram for ecologists. Journal of Statistical Software 22: 1–20.
  15. 15. Chessel D, Dufour A, Thioulouse J (2004) The ade4 package -I- One-table methods. R News 4: 5–10.
  16. 16. Pebesma EJ, Bivand RS (2005) Classes and methods for spatial data in R. R News. 5: 9–13.
  17. 17. Bivand RS, Pebesma EJ, Gomez-Rubio V (2008) Applied spatial data analysis with R. Springer, NY. Available: http://www.asdar-book.org/.
  18. 18. Thoma JN, Pante E, Brugler MR, France SC (2009) Deep-sea octocorals and antipatharians show no evidence of seamount-scale endemism in the NW Atlantic. Marine Ecology Progress Series 397: 25–35.
  19. 19. Pante E, Corbari L, Thubaut J, Chan TY, Mana R, et al. (2012) Exploration of the deep-sea fauna of Papua New Guinea. Oceanography 25: 214–225.
  20. 20. Pante E, Watling L (2012) Chrysogorgia from the New England and Corner Seamounts: Atlantic – Pacific connections. Journal of the Marine Biological Association of the United Kingdom 92: 911–927.
  21. 21. Sarkar D (2008) Lattice: Multivariate Data Visualization with R. New York: Springer. ISBN 978-0-387-75968-5. Available: http://lmdvr.r-forge.r-project.org. Accessed: 2013 Apr 10.