Description Slots See Also Examples
A class to handle Sentinel-1 SAR data.
This class inherits from the SAR-class.
addressCharacter. Address of the SAR data main folder.
polarizationCharacter. Polarization of the SAR record (e.g. VV or HH).
geolocationPointsGeolocationPoints-class object that contains GCPs/TPs.
nodeCharacter. Direction of the satellite (ascending or descending).
orbitInteger. Orbit number (e.g. sentinel has 175 in total).
imgSubstringCharacter. 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.