Description Usage Format Source References Examples
GSHHS - A Global Self-consistent, Hierarchical, High-resolution Shoreline Database. GSHHS is a high-resolution shoreline data set amalgamated from two data bases in the public domain. The data have undergone extensive processing and are free of internal inconsistencies such as erratic points and crossing segments. The shorelines are constructed entirely from hierarchically arranged closed polygons. The data can be used to simplify data searches and data selections, or to study the statistical characteristics of shorelines and land-masses. It comes with access software and routines to facilitate decimation based on a standard line-reduction algorithm.
The dataset provided herein have been extracted using the software provided by the National Geophysical Data Center of NOAA Satellite and Information Service. The original dataset contains lakes, islands within lakes etc. This dataset contain only the coastlines.
The dataset has been implemented in R using the getRgshhsMap function of maptools.
This dataset is a Proj.4 modified version of gshhsmapdata to a Polar Stereographic map projection correct at 60 degrees North.
1 | data(gshhsmapdata-polstere)
|
A data.frame containing two elements, latitude (lat) and longitude (lon) in decimal degrees.
http://www.ngdc.noaa.gov/mgg/shorelines/gshhs.html
GSHHS is developed and maintained by:
Dr. Paul Wessel, SOEST, University of Hawai'i, Honlulu, HI. wessel@soest.hawaii.edu, and
Dr. Walter H. F. Smith, NOAA Laboratory for Satellite Altimetry, National Oceanographic Data Center, Silver Spring, MD. Walter.HF.Smith@noaa.gov
Wessel, P., and W. H. F. Smith, A Global Self-consistent, Hierarchical, High-resolution Shoreline Database, J. Geophys. Res., 101, #B4, pp. 8741-8743, 1996.
1 2 3 4 5 6 7 | # Plot the ordinary map directly.
plot(gshhsmapdata$lon,gshhsmapdata$lat,type="l")
# To create a map projection use package proj4
library(proj4)
tmp <- project(list(gshhsmapdata$lon-180,gshhsmapdata$lat),"+proj=merc")
plot(tmp$x,tmp$y,type="l")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.