Description Slots See Also Examples
A class to handle Sentinel-1 SAR data.
This class inherits from the SAR-class
.
address
Character. Address of the SAR data main folder.
polarization
Character. Polarization of the SAR record (e.g. VV or HH).
geolocationPoints
GeolocationPoints-class
object that contains GCPs/TPs.
node
Character. Direction of the satellite (ascending or descending).
orbit
Integer. Orbit number (e.g. sentinel has 175 in total).
imgSubstring
Character. This substring is searched for when image data is read.
SAR-class
, GeolocationPoints-class
, SARSet-class
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | # orbits 130 and 57
master <- new('Sentinel', address=system.file('extdata/S1A_IW_GRDH_1SDV_20151220T155517.SAFE',
package='ragram'))
slave <- new('Sentinel', address=system.file('extdata/S1A_IW_GRDH_1SDV_20151215T154711.SAFE',
package='ragram'))
# alternatively
master <- sarRecord(system.file('extdata/S1A_IW_GRDH_1SDV_20151220T155517.SAFE', package='ragram'),
satellite = 'sentinel')
slave <- sarRecord(system.file('extdata/S1A_IW_GRDH_1SDV_20151215T154711.SAFE', package='ragram'),
satellite = 'sentinel')
master@orbit
master@polarization
master@node
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.