R/cornerPoint.R

Defines functions cornerPoint

Documented in cornerPoint

#' cornerPoint 
#'
#' cornerPoint 
#'
#'
#' @inheritParams common_attributes 
#' @param xCoordinate X Location of the georeferencing point in the X diminsion of the coordinate system. See [xCoordinate()]
#' @param yCoordinate Location of the georeferencing point in the Y dimension of the coordinate system. See [yCoordinate()]
#' @param pointInPixel Location within the pixel of the georeferencing point. See [pointInPixel()]
#' @param corner Identification of the corner in the grid corresponding to the coordinates provided. See [corner()]
#'
#' @return a cornerPoint list object
#'
#' @export

 cornerPoint <- function(xCoordinate = NULL,
 yCoordinate = NULL,
 pointInPixel = NULL,
 corner = NULL){ 
Filter(Negate(is.null),
 list(
xCoordinate = xCoordinate,
yCoordinate = yCoordinate,
pointInPixel = pointInPixel,
corner = corner))}
cboettig/build.eml documentation built on May 8, 2019, 8:57 p.m.