Learn R Programming

GEOmap (version 2.1)

subsetTOPO: Subset a Topo map

Description

Extract a subset of a topo DEM

Usage

subsetTOPO(TOPO, ALOC, PROJ, nx=500, ny=500, nb = 4, mb = 4, hb = 8)

Arguments

TOPO
DEM list including x,y,z
ALOC
list including LAT LON vectors for extracting an array from the DEM
PROJ
projection
nx
number of points in x grid, default=500
ny
number of points in y grid, default=500
nb
see function mba.surf, default = 4
mb
see function mba.surf, default = 4
hb
see function mba.surf , default= 8

Value

  • xvector x-coordinates
  • yvector y-coordinates
  • z2D matrix of elevations

Details

Used for extracting a subset of ETOPO5 or ETOPO2

See Also

GEOTOPO

Examples

Run this code
library(geomapdata)
data(ETOPO5)
PLOC=list(LON=c(137.008, 141.000),LAT=c(34.000, 36.992),
            x=c(137.008, 141.000), y=c(34.000, 36.992) )

 PROJ = setPROJ(type=2, LAT0=mean(PLOC$y) , LON0=mean(PLOC$x) )
JAPANtopo = subsetTOPO(ETOPO5, PLOC, PROJ)

Run the code above in your browser using DataLab