
Last chance! 50% off unlimited learning
Sale ends in
Transforms an object of class bathy
to a SpatialGridDataFrame
object.
as.SpatialGridDataFrame(bathy)
an object of class bathy
An object of class SpatialGridDataFrame
with the same characteristics as the bathy
object (same longitudinal and latitudinal ranges, same resolution).
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...).
# NOT RUN {
# 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)
# }
Run the code above in your browser using DataLab