CZUncertainty: CZUncertainty

Description Usage Arguments Value Examples

Description

This function will return the uncertainty associated with the predicted climate zone along with other potential climate zones.

Usage

1

Arguments

data

The co-ordinates for the location you are trying to predict the climate zone of.

Value

The uncertainty associated with the located climate zone along with other potential climate zones.

Examples

1
2
3
4
5
6
7
8
data<- data.frame(Site = c("GC","UFS","NEG"),
  Longitude = c(-15.42,10.98,34.78),
  Latitude = c(27.82,47.42,30.86))
data <- data.frame(data,
  rndCoord.lon = RoundCoordinates(data$Longitude),
  rndCoord.lat = RoundCoordinates(data$Latitude))
data <- data.frame(data,ClimateZ=LookupCZ(data))
data <- data.frame(data, CZUncertainty(data))

kgc documentation built on May 2, 2019, 1:47 p.m.