Description Usage Arguments Details Value See Also Examples
Partitioning the hemisphere into segments of equal angular resolution for both zenith and azimuth angles.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | makePolarGrid(
z,
a = makeAimage(z),
angleWidth = asAngle(1),
sequential = FALSE
)
## S4 method for signature 'ZenithImage'
makePolarGrid(
z,
a = makeAimage(z),
angleWidth = asAngle(1),
sequential = FALSE
)
|
z |
|
a |
|
angleWidth |
|
sequential |
logical. If it is |
Intersecting rings with sectors makes a grid in which each segment
is a portion of the hemisphere. Each pixel of the grid is labeled with an ID
that codify both ring and sector ID. For example, a grid with a regular
interval of 1 degree has segment from 1001 to 360090. This numbers are
calculated with: sectorID x 1000 + ringsID
, where sectorID
is
the ID number of the sector and ringsID
is the ID number of the ring.
PolarSegmentation
.
makeZimage
, makeAimage
, makePolarSectors
, makeRings
.
1 2 3 4 5 6 | z <- makeZimage(480, lensPolyCoef())
a <- makeAimage(z)
g <- makePolarGrid(z, a, angleWidth = asAngle(10))
g
head(levels(g)[[1]])
plot(g)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.