as.SpatialGridDataFrame: Convert bathymetric data to a spatial grid

View source: R/as.SpatialGridDataFrame.R

as.SpatialGridDataFrameR Documentation

Convert bathymetric data to a spatial grid

Description

Transforms an object of class bathy to a SpatialGridDataFrame object.

Usage

as.SpatialGridDataFrame(bathy)

Arguments

bathy

an object of class bathy

Details

as.SpatialGridDataFrame transforms bathy objects into objects of class SpatialGridDataFrame as defined in the sp package. All methods from the sp package are thus available for bathymetric data (e.g. rotations, projections...).

Value

An object of class SpatialGridDataFrame with the same characteristics as the bathy object (same longitudinal and latitudinal ranges, same resolution).

Author(s)

Benoit Simon-Bouhet

See Also

as.xyz, as.bathy, as.raster

Examples

# load Hawaii bathymetric data
data(hawaii)

# use as.SpatialGridDataFrame
sp.hawaii <- as.SpatialGridDataFrame(hawaii)

# Summaries
summary(hawaii)
summary(sp.hawaii)

# structure of the SpatialGridDataFrame object
str(sp.hawaii)

# Plots
plot(hawaii,image=TRUE,lwd=.2)
image(sp.hawaii)

ericpante/marmap documentation built on April 4, 2023, 2:56 p.m.