Lon2Index | R Documentation |
This auxiliary function returns the index of position of a region of longitudes in a given vector of longitudes.
Lon2Index(lon, lonmin, lonmax)
lon |
vector of longitudes values. |
lonmin |
a numeric value indicating the minimum longitude of the region (understand as the left marging of the region). |
lonmax |
a numeric value indicating the maximum longitude of the region (understand as the right mariging of the region). |
the index of positions of all values inside the region in the vector lon.
lon <- 1 : 360
pos <- Lon2Index(lon, lonmin = -20, lonmax = 20)
lon[pos]
pos <- Lon2Index(lon, lonmin = 340, lonmax = 20)
lon[pos]
lon <- -180 : 180
pos <- Lon2Index(lon, lonmin = -20, lonmax = 20)
lon[pos]
pos <- Lon2Index(lon, lonmin = 340, lonmax = 20)
lon[pos]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.