Description Usage Arguments Value See Also Examples
Returns the differences in angles within the intersection area of two SAR records.
Uses the angles provided by GCPs/TPs of both records.
The angles for the slave image are interpolated using Kriging (krige
).
Returns the results as a SpatialPointsDataFrame
object.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | anglesDif(object, slave = NULL, z = "thetaIn", variogram.fit = T,
plot.fit = F, interpolate = F, aggregate.fact = 1000, ...)
## S4 method for signature 'SAR,ANY'
anglesDif(object, slave = NULL, z = "thetaIn",
variogram.fit = T, plot.fit = F, interpolate = F,
aggregate.fact = 1000, ...)
## S4 method for signature 'SAR,SAR'
anglesDif(object, slave = NULL, z = "thetaIn",
variogram.fit = T, plot.fit = F, interpolate = F,
aggregate.fact = 1000, ...)
## S4 method for signature 'SARSet,ANY'
anglesDif(object, slave = NULL, z = "thetaIn",
variogram.fit = T, plot.fit = F, interpolate = F,
aggregate.fact = 1000, ...)
|
object |
Object of the |
slave |
Object of the |
z |
Character. Either incidence ('thetaIn', default) or elevation angles 'thetaEl'. |
variogram.fit |
Logical. Fit a Gaussian variogram? |
plot.fit |
Logical. Plot the fitted variogram? |
interpolate |
Logical. Interpolate angles? |
aggregate.fact |
Integer. Aggregation factor expressed as number of cells in each direction (horizontally and vertically).
Or two integers (horizontal and vertical aggregation factor) or three integers (when also aggregating over layers).
See |
... |
Further arguments (ignored). |
SpatialPointsDataFrame
angles
, plotAnglesDif
, GeolocationPoints-class
1 2 3 4 5 6 7 8 9 10 11 | data(kili)
anglesDif(kili[[1]], kili[[5]])
plotAnglesDif(kili[[1]], kili[[5]])
anglesDif(master, slave, interpolate=TRUE, aggregate.fact=100)
plotAnglesDif(master, slave, interpolate=TRUE, aggregate.fact=100)
anglesDif.sp <- anglesDif(master, slave, interpolate = TRUE, aggregate.fact=10)
anglesDif.raster <- rasterFromXYZ(anglesDif.sp)
plot(anglesDif.raster)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.