Sentinel-class: Sentinel class

Description Slots See Also Examples

Description

A class to handle Sentinel-1 SAR data. This class inherits from the SAR-class.

Slots

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.

See Also

SAR-class, GeolocationPoints-class, SARSet-class

Examples

 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

ragram documentation built on May 2, 2019, 4:42 p.m.