Bathymetry          package:marelacTeaching          R Documentation

_W_o_r_l_d _b_a_t_h_y_m_e_t_r_i_c _d_a_t_a

_D_e_s_c_r_i_p_t_i_o_n:

     This dataset, as used by Andersson et al. (2004) contains
     elevations, m of the world at 1 dg intervals.

_U_s_a_g_e:

     Bathymetry

_F_o_r_m_a_t:

     A list with the bathymetry (depth) and hypsometry (altitude) of
     the world. It contains:

     _x the latitude,

     _y the longitude,

     _z the height (m).

_A_u_t_h_o_r(_s):

     Karline Soetaert <k.soetaert@nioo.knaw.nl>

_R_e_f_e_r_e_n_c_e_s:

     Andersson, H., Wijsman, J., Herman, P., Middelburg, J., Soetaert,
     K., Heip, C., 2004. Respiration patterns in the deep ocean.
     Geophysical Research Letters 31, LO3304.

_E_x_a_m_p_l_e_s:

     par(mar=c(2,2,2,2))
     image(Bathymetry$x,Bathymetry$y,Bathymetry$z,col=femmecol(100),
           asp=TRUE,xlab="dg",ylab="dg")
     contour(Bathymetry$x,Bathymetry$y,Bathymetry$z,asp=TRUE,add=TRUE)

     # remove land
     zz     <- Bathymetry$z
     zz[zz>0]<-0

     image(Bathymetry$x,Bathymetry$y,zz,col=c(femmecol(100),"black"),asp=TRUE)
     contour(Bathymetry$x,Bathymetry$y,zz,asp=TRUE,add=TRUE)

