patternIndex {clim.pact} | R Documentation |
Create a Index for a spatial pattern identified from a map
object, eg link{corField}
, link{mapField}
, or
link{composite.field}
. The index is computed using a spatial correlation.
patternIndex(map,field,anomaly=TRUE)
map |
Map describing spatial structure. |
field |
Field in which the pattern is searched. |
anomaly |
If true, compute and use the anomalies of the given field. |
list containing the fields:
index | index |
yy | years |
mm | months |
dd | days |
R.E. Benestad
## Not run: sst <- retrieve.nc("DNMI_sst.nc") data(oslo.t2m) csst <- composite.field(sst,oslo.t2m) patternIndex(csst,sst,anomaly=FALSE) lsst<-mapField(sst) patternIndex(lsst,sst) ## End(Not run)