sealevel-package {sealevel} | R Documentation |
This package provides utility functions to read data from sea level data archives such as PSMSL, CSIRO, Colorado.edu and Soest.
Package: | sealevel |
Type: | Package |
Version: | 1.0 |
Date: | 2011-06-23 |
License: | GPL-3 |
LazyLoad: | yes |
Fedor Baart Maintainer: Fedor Baart <f.baart@tudelft.nl>
# look up the url psmslurl <- get.psmsl.url(type="annual") # store it localy (can't read zip files from the web) path <- basename(psmslurl) # download it download.file(psmslurl, path) ## Not run: # read it, takes a while stations <- read.psmsl(description=path) ## End(Not run) # and clean up unlink(path)