Learn R Programming

adehabitat (version 1.1-1)

getXYcoords: Computes the X and Y Coordinates of the Pixels of a Raster Map

Description

getXYcoords computes the geographical coordinates of the rows and columns of pixels of a raster map.

Usage

getXYcoords(w)

Arguments

w
an object of class asc, kasc, sahrlocs, or mapattr.

Value

  • Returns a list with two components:
  • xthe x coordinates of the columns of pixels of the map
  • ythe y coordinates of the rows of pixels of the map

See Also

import.asc, as.kasc, as.sahrlocs, storemapattr

Examples

Run this code
data(puechabon)
(elev <- getkasc(puechabon$kasc, "Elevation"))
(coords <- getXYcoords(elev))
nrow(elev) == length(coords$x)
ncol(elev) == length(coords$y)

Run the code above in your browser using DataLab