Basic usage

Notebook setup

[1]:
%matplotlib inline
%load_ext autoreload
%autoreload 2
[2]:
import sys
sys.path.append('../..')
[3]:
import numpy as np
import matplotlib.pyplot as plt
[4]:
import s1etad
from s1etad import Sentinel1Etad, ECorrectionType

Sentinel1Etad product

[5]:
filename = '../../sample-products/S1B_IW_ETA__AXDH_20200127T113414_20200127T113858_020002_025D72_0096.SAFE'
[6]:
eta = Sentinel1Etad(filename)
[7]:
eta
[7]:
Sentinel1Etad("../../sample-products/S1B_IW_ETA__AXDH_20200127T113414_20200127T113858_020002_025D72_0096.SAFE")  # 0x7fd46ed871d0
Number of Sentinel-1 slices: 11
Sentinel-1 products list:
  S1B_IW_SLC__1ADH_20200127T113414_20200127T113444_020002_025D72_FD42.SAFE
  S1B_IW_SLC__1ADH_20200127T113442_20200127T113510_020002_025D72_FC8F.SAFE
  S1B_IW_SLC__1ADH_20200127T113507_20200127T113534_020002_025D72_78DF.SAFE
  S1B_IW_SLC__1ADH_20200127T113532_20200127T113559_020002_025D72_1ABB.SAFE
  S1B_IW_SLC__1ADH_20200127T113557_20200127T113624_020002_025D72_6706.SAFE
  S1B_IW_SLC__1ADH_20200127T113622_20200127T113649_020002_025D72_78F0.SAFE
  S1B_IW_SLC__1ADH_20200127T113647_20200127T113715_020002_025D72_11FB.SAFE
  S1B_IW_SLC__1ADH_20200127T113712_20200127T113739_020002_025D72_FCC6.SAFE
  S1B_IW_SLC__1ADH_20200127T113737_20200127T113804_020002_025D72_1FED.SAFE
  S1B_IW_SLC__1ADH_20200127T113802_20200127T113829_020002_025D72_C434.SAFE
  S1B_IW_SLC__1ADH_20200127T113827_20200127T113858_020002_025D72_E443.SAFE
Number of swaths: 3
Swath list: IW1, IW2, IW3
Azimuth time:
  min: 2020-01-27 11:34:14.475597
  max: 2020-01-27 11:38:58.167033
Range time:
  min: 0.005371080957826855
  max: 0.006416814907377812
Grid sampling:
  x: 8.081406101630269e-07
  y: 0.028777788199999974
  unit: s
Grid spacing:
  x: 200.0
  y: 200.0
  unit: m
Processing settings:
  troposphericDelayCorrection: True
  ionosphericDelayCorrection: True
  solidEarthTideCorrection: True
  bistaticAzimuthCorrection: True
  dopplerShiftRangeCorrection: True
  FMMismatchAzimuthCorrection: True

Check which corrections have been enabled

[8]:
eta.processing_setting()
[8]:
{'troposphericDelayCorrection': True,
 'ionosphericDelayCorrection': True,
 'solidEarthTideCorrection': True,
 'bistaticAzimuthCorrection': True,
 'dopplerShiftRangeCorrection': True,
 'FMMismatchAzimuthCorrection': True}

The burst catalogue

It is a pandas dataframe to allow easy filtering.

See also use cases in the “Use case 1: Selecting the bursts” section for a more complete explanation on the burst catalogue and the query mechanism.

[9]:
eta.burst_catalogue.head()
[9]:
bIndex pIndex sIndex productID swathID azimuthTimeMin azimuthTimeMax
0 1 1 1 S1B_IW_SLC__1ADH_20200127T113414_20200127T1134... IW1 2020-01-27 11:34:14.475597000 2020-01-27 11:34:17.641153701
1 4 1 1 S1B_IW_SLC__1ADH_20200127T113414_20200127T1134... IW1 2020-01-27 11:34:17.209486879 2020-01-27 11:34:20.403821369
2 7 1 1 S1B_IW_SLC__1ADH_20200127T113414_20200127T1134... IW1 2020-01-27 11:34:19.972154546 2020-01-27 11:34:23.166489036
3 10 1 1 S1B_IW_SLC__1ADH_20200127T113414_20200127T1134... IW1 2020-01-27 11:34:22.734822213 2020-01-27 11:34:25.929156703
4 13 1 1 S1B_IW_SLC__1ADH_20200127T113414_20200127T1134... IW1 2020-01-27 11:34:25.497489880 2020-01-27 11:34:28.663046582

Tip: the total number of bursts in a product can be retrieved as follows:

[10]:
print('Total number of bursts:', len(eta.burst_catalogue))
Total number of bursts: 306

Swath objects

How many swaths are stored in a product?

[11]:
print('Number of swaths:', eta.number_of_swath)
print('Swath list:', eta.swath_list)
Number of swaths: 3
Swath list: ['IW1', 'IW2', 'IW3']

How to retrieve a Sentinel1EtadSwath object

[12]:
swath = eta['IW2']
[13]:
swath
[13]:
Sentinel1EtadSwath("/IW2")  0x7fd457cf9a90
Swaths ID: IW2
Number of bursts: 102
Burst list: [2, 5, 8, 11, 14, 17, 20, 23, 26, 29, 32, 35, 38, 41, 44, 47, 50, 53, 56, 59, 62, 65, 68, 71, 74, 77, 80, 83, 86, 89, 92, 95, 98, 101, 104, 107, 110, 113, 116, 119, 122, 125, 128, 131, 134, 137, 140, 143, 146, 149, 152, 155, 158, 161, 164, 167, 170, 173, 176, 179, 182, 185, 188, 191, 194, 197, 200, 203, 206, 209, 212, 215, 218, 221, 224, 227, 230, 233, 236, 239, 242, 245, 248, 251, 254, 257, 260, 263, 266, 269, 272, 275, 278, 281, 284, 287, 290, 293, 296, 299, 302, 305]
Sampling start:
  x: 0.00030628529125177
  y: 0.920889222400092
  units: s
Sampling:
  x: 8.081406101630269e-07
  y: 0.028777788199999974
  units: s

Burst objects

[14]:
burst = swath[2]
[15]:
burst
[15]:
Sentinel1EtadBurst("/IW2/Burst0002")  0x7fd45a0065d0
Swaths ID: IW2
Burst index: 2
Shape: (113, 479)
Sampling start:
  x: 0.00030628529125177
  y: 0.920889222400092
  units: s
Sampling:
  x: 8.081406101630269e-07
  y: 0.028777788199999974
  units: s

NOTE: one can only get bursts whose index is present in the “burst list” of the swath

[16]:
swath.burst_list
[16]:
[2,
 5,
 8,
 11,
 14,
 17,
 20,
 23,
 26,
 29,
 32,
 35,
 38,
 41,
 44,
 47,
 50,
 53,
 56,
 59,
 62,
 65,
 68,
 71,
 74,
 77,
 80,
 83,
 86,
 89,
 92,
 95,
 98,
 101,
 104,
 107,
 110,
 113,
 116,
 119,
 122,
 125,
 128,
 131,
 134,
 137,
 140,
 143,
 146,
 149,
 152,
 155,
 158,
 161,
 164,
 167,
 170,
 173,
 176,
 179,
 182,
 185,
 188,
 191,
 194,
 197,
 200,
 203,
 206,
 209,
 212,
 215,
 218,
 221,
 224,
 227,
 230,
 233,
 236,
 239,
 242,
 245,
 248,
 251,
 254,
 257,
 260,
 263,
 266,
 269,
 272,
 275,
 278,
 281,
 284,
 287,
 290,
 293,
 296,
 299,
 302,
 305]
[17]:
try:
    swath[1]
except IndexError as exc:
    print('ERROR: Ops someting went wrong:', repr(exc))
ERROR: Ops someting went wrong: IndexError('Burst0001 not found in /IW2')

String representation

Please note that the string representation of Sentinel1Etad object is a “one-line” string providing only basic information:

[18]:
print('Product:', str(eta))
print('Swath:', str(swath))
print('Burst:', str(burst))
Product: Sentinel1Etad("S1B_IW_ETA__AXDH_20200127T113414_20200127T113858_020002_025D72_0096.SAFE")
Swath: Sentinel1EtadSwath("/IW2")  0x7fd457cf9a90
Burst: Sentinel1EtadBurst("/IW2/Burst0002")  0x7fd45a0065d0

Anyway in Jupyter environments a richer representation is also available:

[19]:
eta
[19]:
Sentinel1Etad("../../sample-products/S1B_IW_ETA__AXDH_20200127T113414_20200127T113858_020002_025D72_0096.SAFE")  # 0x7fd46ed871d0
Number of Sentinel-1 slices: 11
Sentinel-1 products list:
  S1B_IW_SLC__1ADH_20200127T113414_20200127T113444_020002_025D72_FD42.SAFE
  S1B_IW_SLC__1ADH_20200127T113442_20200127T113510_020002_025D72_FC8F.SAFE
  S1B_IW_SLC__1ADH_20200127T113507_20200127T113534_020002_025D72_78DF.SAFE
  S1B_IW_SLC__1ADH_20200127T113532_20200127T113559_020002_025D72_1ABB.SAFE
  S1B_IW_SLC__1ADH_20200127T113557_20200127T113624_020002_025D72_6706.SAFE
  S1B_IW_SLC__1ADH_20200127T113622_20200127T113649_020002_025D72_78F0.SAFE
  S1B_IW_SLC__1ADH_20200127T113647_20200127T113715_020002_025D72_11FB.SAFE
  S1B_IW_SLC__1ADH_20200127T113712_20200127T113739_020002_025D72_FCC6.SAFE
  S1B_IW_SLC__1ADH_20200127T113737_20200127T113804_020002_025D72_1FED.SAFE
  S1B_IW_SLC__1ADH_20200127T113802_20200127T113829_020002_025D72_C434.SAFE
  S1B_IW_SLC__1ADH_20200127T113827_20200127T113858_020002_025D72_E443.SAFE
Number of swaths: 3
Swath list: IW1, IW2, IW3
Azimuth time:
  min: 2020-01-27 11:34:14.475597
  max: 2020-01-27 11:38:58.167033
Range time:
  min: 0.005371080957826855
  max: 0.006416814907377812
Grid sampling:
  x: 8.081406101630269e-07
  y: 0.028777788199999974
  unit: s
Grid spacing:
  x: 200.0
  y: 200.0
  unit: m
Processing settings:
  troposphericDelayCorrection: True
  ionosphericDelayCorrection: True
  solidEarthTideCorrection: True
  bistaticAzimuthCorrection: True
  dopplerShiftRangeCorrection: True
  FMMismatchAzimuthCorrection: True

Iteration

It is possible to iterate over products and swats in the same way one does it with any other python container.

[20]:
for swath in eta:
    print(swath)
    for burst in swath:
        print(burst.burst_index, burst.swath_id, burst)
    print()
Sentinel1EtadSwath("/IW1")  0x7fd45a015490
1 IW1 Sentinel1EtadBurst("/IW1/Burst0001")  0x7fd45a015610
4 IW1 Sentinel1EtadBurst("/IW1/Burst0004")  0x7fd45a015bd0
7 IW1 Sentinel1EtadBurst("/IW1/Burst0007")  0x7fd45a015fd0
10 IW1 Sentinel1EtadBurst("/IW1/Burst0010")  0x7fd45a018410
13 IW1 Sentinel1EtadBurst("/IW1/Burst0013")  0x7fd45a011990
16 IW1 Sentinel1EtadBurst("/IW1/Burst0016")  0x7fd45a015e50
19 IW1 Sentinel1EtadBurst("/IW1/Burst0019")  0x7fd45a015950
22 IW1 Sentinel1EtadBurst("/IW1/Burst0022")  0x7fd45a00f550
25 IW1 Sentinel1EtadBurst("/IW1/Burst0025")  0x7fd45a015f50
28 IW1 Sentinel1EtadBurst("/IW1/Burst0028")  0x7fd45a00f3d0
31 IW1 Sentinel1EtadBurst("/IW1/Burst0031")  0x7fd45a00ab50
34 IW1 Sentinel1EtadBurst("/IW1/Burst0034")  0x7fd45a00fc90
37 IW1 Sentinel1EtadBurst("/IW1/Burst0037")  0x7fd45a00f6d0
40 IW1 Sentinel1EtadBurst("/IW1/Burst0040")  0x7fd45a015cd0
43 IW1 Sentinel1EtadBurst("/IW1/Burst0043")  0x7fd45a015a90
46 IW1 Sentinel1EtadBurst("/IW1/Burst0046")  0x7fd45a00a710
49 IW1 Sentinel1EtadBurst("/IW1/Burst0049")  0x7fd45a006f90
52 IW1 Sentinel1EtadBurst("/IW1/Burst0052")  0x7fd45a006790
55 IW1 Sentinel1EtadBurst("/IW1/Burst0055")  0x7fd457cf9dd0
58 IW1 Sentinel1EtadBurst("/IW1/Burst0058")  0x7fd45a006a90
61 IW1 Sentinel1EtadBurst("/IW1/Burst0061")  0x7fd45a006b90
64 IW1 Sentinel1EtadBurst("/IW1/Burst0064")  0x7fd45a00a290
67 IW1 Sentinel1EtadBurst("/IW1/Burst0067")  0x7fd45a00a0d0
70 IW1 Sentinel1EtadBurst("/IW1/Burst0070")  0x7fd45a00a610
73 IW1 Sentinel1EtadBurst("/IW1/Burst0073")  0x7fd45a015a50
76 IW1 Sentinel1EtadBurst("/IW1/Burst0076")  0x7fd45a006150
79 IW1 Sentinel1EtadBurst("/IW1/Burst0079")  0x7fd45a00a4d0
82 IW1 Sentinel1EtadBurst("/IW1/Burst0082")  0x7fd45a006690
85 IW1 Sentinel1EtadBurst("/IW1/Burst0085")  0x7fd45a015f10
88 IW1 Sentinel1EtadBurst("/IW1/Burst0088")  0x7fd45a00f5d0
91 IW1 Sentinel1EtadBurst("/IW1/Burst0091")  0x7fd45a00f410
94 IW1 Sentinel1EtadBurst("/IW1/Burst0094")  0x7fd457cf9d50
97 IW1 Sentinel1EtadBurst("/IW1/Burst0097")  0x7fd457cf9cd0
100 IW1 Sentinel1EtadBurst("/IW1/Burst0100")  0x7fd457cf9510
103 IW1 Sentinel1EtadBurst("/IW1/Burst0103")  0x7fd457cf9b10
106 IW1 Sentinel1EtadBurst("/IW1/Burst0106")  0x7fd457cf9790
109 IW1 Sentinel1EtadBurst("/IW1/Burst0109")  0x7fd457cf9d10
112 IW1 Sentinel1EtadBurst("/IW1/Burst0112")  0x7fd457cf9250
115 IW1 Sentinel1EtadBurst("/IW1/Burst0115")  0x7fd457cf9c90
118 IW1 Sentinel1EtadBurst("/IW1/Burst0118")  0x7fd457ca5a10
121 IW1 Sentinel1EtadBurst("/IW1/Burst0121")  0x7fd457ca5450
124 IW1 Sentinel1EtadBurst("/IW1/Burst0124")  0x7fd457ca5050
127 IW1 Sentinel1EtadBurst("/IW1/Burst0127")  0x7fd46ed12990
130 IW1 Sentinel1EtadBurst("/IW1/Burst0130")  0x7fd457cba050
133 IW1 Sentinel1EtadBurst("/IW1/Burst0133")  0x7fd457ca5910
136 IW1 Sentinel1EtadBurst("/IW1/Burst0136")  0x7fd46d51bf90
139 IW1 Sentinel1EtadBurst("/IW1/Burst0139")  0x7fd46ed72ed0
142 IW1 Sentinel1EtadBurst("/IW1/Burst0142")  0x7fd46c8de7d0
145 IW1 Sentinel1EtadBurst("/IW1/Burst0145")  0x7fd46ed7ddd0
148 IW1 Sentinel1EtadBurst("/IW1/Burst0148")  0x7fd457ca5990
151 IW1 Sentinel1EtadBurst("/IW1/Burst0151")  0x7fd457ccbd10
154 IW1 Sentinel1EtadBurst("/IW1/Burst0154")  0x7fd45a018650
157 IW1 Sentinel1EtadBurst("/IW1/Burst0157")  0x7fd45a018550
160 IW1 Sentinel1EtadBurst("/IW1/Burst0160")  0x7fd45a018350
163 IW1 Sentinel1EtadBurst("/IW1/Burst0163")  0x7fd45a018810
166 IW1 Sentinel1EtadBurst("/IW1/Burst0166")  0x7fd45a018150
169 IW1 Sentinel1EtadBurst("/IW1/Burst0169")  0x7fd45a018250
172 IW1 Sentinel1EtadBurst("/IW1/Burst0172")  0x7fd45a0184d0
175 IW1 Sentinel1EtadBurst("/IW1/Burst0175")  0x7fd45a018b90
178 IW1 Sentinel1EtadBurst("/IW1/Burst0178")  0x7fd45a018750
181 IW1 Sentinel1EtadBurst("/IW1/Burst0181")  0x7fd45a018e10
184 IW1 Sentinel1EtadBurst("/IW1/Burst0184")  0x7fd45a018590
187 IW1 Sentinel1EtadBurst("/IW1/Burst0187")  0x7fd45a01a050
190 IW1 Sentinel1EtadBurst("/IW1/Burst0190")  0x7fd45a0181d0
193 IW1 Sentinel1EtadBurst("/IW1/Burst0193")  0x7fd45a01a250
196 IW1 Sentinel1EtadBurst("/IW1/Burst0196")  0x7fd45a018f10
199 IW1 Sentinel1EtadBurst("/IW1/Burst0199")  0x7fd45a01a450
202 IW1 Sentinel1EtadBurst("/IW1/Burst0202")  0x7fd45a01a310
205 IW1 Sentinel1EtadBurst("/IW1/Burst0205")  0x7fd45a01a0d0
208 IW1 Sentinel1EtadBurst("/IW1/Burst0208")  0x7fd45a01a290
211 IW1 Sentinel1EtadBurst("/IW1/Burst0211")  0x7fd45a01a550
214 IW1 Sentinel1EtadBurst("/IW1/Burst0214")  0x7fd45a01a950
217 IW1 Sentinel1EtadBurst("/IW1/Burst0217")  0x7fd45a01ad50
220 IW1 Sentinel1EtadBurst("/IW1/Burst0220")  0x7fd45a01b190
223 IW1 Sentinel1EtadBurst("/IW1/Burst0223")  0x7fd45a01aad0
226 IW1 Sentinel1EtadBurst("/IW1/Burst0226")  0x7fd45a01a8d0
229 IW1 Sentinel1EtadBurst("/IW1/Burst0229")  0x7fd45a01a7d0
232 IW1 Sentinel1EtadBurst("/IW1/Burst0232")  0x7fd45a01a6d0
235 IW1 Sentinel1EtadBurst("/IW1/Burst0235")  0x7fd45a01a650
238 IW1 Sentinel1EtadBurst("/IW1/Burst0238")  0x7fd45a01ac10
241 IW1 Sentinel1EtadBurst("/IW1/Burst0241")  0x7fd45a01b0d0
244 IW1 Sentinel1EtadBurst("/IW1/Burst0244")  0x7fd45a01b510
247 IW1 Sentinel1EtadBurst("/IW1/Burst0247")  0x7fd45a01a190
250 IW1 Sentinel1EtadBurst("/IW1/Burst0250")  0x7fd45a01b450
253 IW1 Sentinel1EtadBurst("/IW1/Burst0253")  0x7fd45a01b690
256 IW1 Sentinel1EtadBurst("/IW1/Burst0256")  0x7fd45a01b610
259 IW1 Sentinel1EtadBurst("/IW1/Burst0259")  0x7fd45a01b250
262 IW1 Sentinel1EtadBurst("/IW1/Burst0262")  0x7fd45a01b2d0
265 IW1 Sentinel1EtadBurst("/IW1/Burst0265")  0x7fd45a01b790
268 IW1 Sentinel1EtadBurst("/IW1/Burst0268")  0x7fd45a01b890
271 IW1 Sentinel1EtadBurst("/IW1/Burst0271")  0x7fd45a01b990
274 IW1 Sentinel1EtadBurst("/IW1/Burst0274")  0x7fd45a01ba90
277 IW1 Sentinel1EtadBurst("/IW1/Burst0277")  0x7fd45a01bb90
280 IW1 Sentinel1EtadBurst("/IW1/Burst0280")  0x7fd45a01bc90
283 IW1 Sentinel1EtadBurst("/IW1/Burst0283")  0x7fd45a01bd90
286 IW1 Sentinel1EtadBurst("/IW1/Burst0286")  0x7fd45a01bc10
289 IW1 Sentinel1EtadBurst("/IW1/Burst0289")  0x7fd45a01bf90
292 IW1 Sentinel1EtadBurst("/IW1/Burst0292")  0x7fd45a0193d0
295 IW1 Sentinel1EtadBurst("/IW1/Burst0295")  0x7fd45a019290
298 IW1 Sentinel1EtadBurst("/IW1/Burst0298")  0x7fd45a019190
301 IW1 Sentinel1EtadBurst("/IW1/Burst0301")  0x7fd45a019090
304 IW1 Sentinel1EtadBurst("/IW1/Burst0304")  0x7fd45a0194d0

Sentinel1EtadSwath("/IW2")  0x7fd457cf9a90
2 IW2 Sentinel1EtadBurst("/IW2/Burst0002")  0x7fd45a0065d0
5 IW2 Sentinel1EtadBurst("/IW2/Burst0005")  0x7fd45a019050
8 IW2 Sentinel1EtadBurst("/IW2/Burst0008")  0x7fd45a019750
11 IW2 Sentinel1EtadBurst("/IW2/Burst0011")  0x7fd45a019210
14 IW2 Sentinel1EtadBurst("/IW2/Burst0014")  0x7fd45a019950
17 IW2 Sentinel1EtadBurst("/IW2/Burst0017")  0x7fd45a019a50
20 IW2 Sentinel1EtadBurst("/IW2/Burst0020")  0x7fd45a019b50
23 IW2 Sentinel1EtadBurst("/IW2/Burst0023")  0x7fd45a019bd0
26 IW2 Sentinel1EtadBurst("/IW2/Burst0026")  0x7fd45a019d50
29 IW2 Sentinel1EtadBurst("/IW2/Burst0029")  0x7fd45a019e50
32 IW2 Sentinel1EtadBurst("/IW2/Burst0032")  0x7fd45a019ed0
35 IW2 Sentinel1EtadBurst("/IW2/Burst0035")  0x7fd45a0190d0
38 IW2 Sentinel1EtadBurst("/IW2/Burst0038")  0x7fd45a01d190
41 IW2 Sentinel1EtadBurst("/IW2/Burst0041")  0x7fd45a01d290
44 IW2 Sentinel1EtadBurst("/IW2/Burst0044")  0x7fd45a01d390
47 IW2 Sentinel1EtadBurst("/IW2/Burst0047")  0x7fd45a01d490
50 IW2 Sentinel1EtadBurst("/IW2/Burst0050")  0x7fd45a01d590
53 IW2 Sentinel1EtadBurst("/IW2/Burst0053")  0x7fd45a01d690
56 IW2 Sentinel1EtadBurst("/IW2/Burst0056")  0x7fd45a01d790
59 IW2 Sentinel1EtadBurst("/IW2/Burst0059")  0x7fd45a01d810
62 IW2 Sentinel1EtadBurst("/IW2/Burst0062")  0x7fd45a01d990
65 IW2 Sentinel1EtadBurst("/IW2/Burst0065")  0x7fd45a01da90
68 IW2 Sentinel1EtadBurst("/IW2/Burst0068")  0x7fd45a01db90
71 IW2 Sentinel1EtadBurst("/IW2/Burst0071")  0x7fd45a01dc90
74 IW2 Sentinel1EtadBurst("/IW2/Burst0074")  0x7fd45a01dd90
77 IW2 Sentinel1EtadBurst("/IW2/Burst0077")  0x7fd45a01de90
80 IW2 Sentinel1EtadBurst("/IW2/Burst0080")  0x7fd45a0222d0
83 IW2 Sentinel1EtadBurst("/IW2/Burst0083")  0x7fd45a022650
86 IW2 Sentinel1EtadBurst("/IW2/Burst0086")  0x7fd45a022290
89 IW2 Sentinel1EtadBurst("/IW2/Burst0089")  0x7fd45a0225d0
92 IW2 Sentinel1EtadBurst("/IW2/Burst0092")  0x7fd45a022590
95 IW2 Sentinel1EtadBurst("/IW2/Burst0095")  0x7fd45a0221d0
98 IW2 Sentinel1EtadBurst("/IW2/Burst0098")  0x7fd45a022390
101 IW2 Sentinel1EtadBurst("/IW2/Burst0101")  0x7fd45a022410
104 IW2 Sentinel1EtadBurst("/IW2/Burst0104")  0x7fd45a022490
107 IW2 Sentinel1EtadBurst("/IW2/Burst0107")  0x7fd45a022510
110 IW2 Sentinel1EtadBurst("/IW2/Burst0110")  0x7fd45a0227d0
113 IW2 Sentinel1EtadBurst("/IW2/Burst0113")  0x7fd45a022110
116 IW2 Sentinel1EtadBurst("/IW2/Burst0116")  0x7fd45a022550
119 IW2 Sentinel1EtadBurst("/IW2/Burst0119")  0x7fd45a022210
122 IW2 Sentinel1EtadBurst("/IW2/Burst0122")  0x7fd45a022350
125 IW2 Sentinel1EtadBurst("/IW2/Burst0125")  0x7fd45a022450
128 IW2 Sentinel1EtadBurst("/IW2/Burst0128")  0x7fd45a022790
131 IW2 Sentinel1EtadBurst("/IW2/Burst0131")  0x7fd45a0223d0
134 IW2 Sentinel1EtadBurst("/IW2/Burst0134")  0x7fd45a0228d0
137 IW2 Sentinel1EtadBurst("/IW2/Burst0137")  0x7fd45a022950
140 IW2 Sentinel1EtadBurst("/IW2/Burst0140")  0x7fd45a022cd0
143 IW2 Sentinel1EtadBurst("/IW2/Burst0143")  0x7fd45a022050
146 IW2 Sentinel1EtadBurst("/IW2/Burst0146")  0x7fd45a022690
149 IW2 Sentinel1EtadBurst("/IW2/Burst0149")  0x7fd45a022e50
152 IW2 Sentinel1EtadBurst("/IW2/Burst0152")  0x7fd45a025210
155 IW2 Sentinel1EtadBurst("/IW2/Burst0155")  0x7fd45a025590
158 IW2 Sentinel1EtadBurst("/IW2/Burst0158")  0x7fd45a025910
161 IW2 Sentinel1EtadBurst("/IW2/Burst0161")  0x7fd45a022190
164 IW2 Sentinel1EtadBurst("/IW2/Burst0164")  0x7fd45a022a50
167 IW2 Sentinel1EtadBurst("/IW2/Burst0167")  0x7fd45a0256d0
170 IW2 Sentinel1EtadBurst("/IW2/Burst0170")  0x7fd45a022d50
173 IW2 Sentinel1EtadBurst("/IW2/Burst0173")  0x7fd45a0257d0
176 IW2 Sentinel1EtadBurst("/IW2/Burst0176")  0x7fd45a022c50
179 IW2 Sentinel1EtadBurst("/IW2/Burst0179")  0x7fd45a022b90
182 IW2 Sentinel1EtadBurst("/IW2/Burst0182")  0x7fd45a022b10
185 IW2 Sentinel1EtadBurst("/IW2/Burst0185")  0x7fd45a022a90
188 IW2 Sentinel1EtadBurst("/IW2/Burst0188")  0x7fd45a025810
191 IW2 Sentinel1EtadBurst("/IW2/Burst0191")  0x7fd45a025890
194 IW2 Sentinel1EtadBurst("/IW2/Burst0194")  0x7fd45a025850
197 IW2 Sentinel1EtadBurst("/IW2/Burst0197")  0x7fd45a022e90
200 IW2 Sentinel1EtadBurst("/IW2/Burst0200")  0x7fd45a025790
203 IW2 Sentinel1EtadBurst("/IW2/Burst0203")  0x7fd45a025650
206 IW2 Sentinel1EtadBurst("/IW2/Burst0206")  0x7fd45a0255d0
209 IW2 Sentinel1EtadBurst("/IW2/Burst0209")  0x7fd45a0254d0
212 IW2 Sentinel1EtadBurst("/IW2/Burst0212")  0x7fd45a0250d0
215 IW2 Sentinel1EtadBurst("/IW2/Burst0215")  0x7fd45a0253d0
218 IW2 Sentinel1EtadBurst("/IW2/Burst0218")  0x7fd45a025a10
221 IW2 Sentinel1EtadBurst("/IW2/Burst0221")  0x7fd45a025450
224 IW2 Sentinel1EtadBurst("/IW2/Burst0224")  0x7fd45a025350
227 IW2 Sentinel1EtadBurst("/IW2/Burst0227")  0x7fd45a025410
230 IW2 Sentinel1EtadBurst("/IW2/Burst0230")  0x7fd45a025b90
233 IW2 Sentinel1EtadBurst("/IW2/Burst0233")  0x7fd45a025950
236 IW2 Sentinel1EtadBurst("/IW2/Burst0236")  0x7fd45a025190
239 IW2 Sentinel1EtadBurst("/IW2/Burst0239")  0x7fd45a025510
242 IW2 Sentinel1EtadBurst("/IW2/Burst0242")  0x7fd45a025110
245 IW2 Sentinel1EtadBurst("/IW2/Burst0245")  0x7fd45a025b50
248 IW2 Sentinel1EtadBurst("/IW2/Burst0248")  0x7fd45a025c10
251 IW2 Sentinel1EtadBurst("/IW2/Burst0251")  0x7fd45a025f90
254 IW2 Sentinel1EtadBurst("/IW2/Burst0254")  0x7fd45a025990
257 IW2 Sentinel1EtadBurst("/IW2/Burst0257")  0x7fd45a027050
260 IW2 Sentinel1EtadBurst("/IW2/Burst0260")  0x7fd45a025d10
263 IW2 Sentinel1EtadBurst("/IW2/Burst0263")  0x7fd45a0271d0
266 IW2 Sentinel1EtadBurst("/IW2/Burst0266")  0x7fd45a025290
269 IW2 Sentinel1EtadBurst("/IW2/Burst0269")  0x7fd45a025310
272 IW2 Sentinel1EtadBurst("/IW2/Burst0272")  0x7fd45a025390
275 IW2 Sentinel1EtadBurst("/IW2/Burst0275")  0x7fd45a027110
278 IW2 Sentinel1EtadBurst("/IW2/Burst0278")  0x7fd45a027090
281 IW2 Sentinel1EtadBurst("/IW2/Burst0281")  0x7fd45a0274d0
284 IW2 Sentinel1EtadBurst("/IW2/Burst0284")  0x7fd45a027390
287 IW2 Sentinel1EtadBurst("/IW2/Burst0287")  0x7fd45a027450
290 IW2 Sentinel1EtadBurst("/IW2/Burst0290")  0x7fd45a0275d0
293 IW2 Sentinel1EtadBurst("/IW2/Burst0293")  0x7fd45a027950
296 IW2 Sentinel1EtadBurst("/IW2/Burst0296")  0x7fd45a0277d0
299 IW2 Sentinel1EtadBurst("/IW2/Burst0299")  0x7fd45a027750
302 IW2 Sentinel1EtadBurst("/IW2/Burst0302")  0x7fd45a0276d0
305 IW2 Sentinel1EtadBurst("/IW2/Burst0305")  0x7fd45a027650

Sentinel1EtadSwath("/IW3")  0x7fd45a027550
3 IW3 Sentinel1EtadBurst("/IW3/Burst0003")  0x7fd45a025c90
6 IW3 Sentinel1EtadBurst("/IW3/Burst0006")  0x7fd45a027890
9 IW3 Sentinel1EtadBurst("/IW3/Burst0009")  0x7fd45a027590
12 IW3 Sentinel1EtadBurst("/IW3/Burst0012")  0x7fd45a027290
15 IW3 Sentinel1EtadBurst("/IW3/Burst0015")  0x7fd45a027310
18 IW3 Sentinel1EtadBurst("/IW3/Burst0018")  0x7fd45a027910
21 IW3 Sentinel1EtadBurst("/IW3/Burst0021")  0x7fd45a0279d0
24 IW3 Sentinel1EtadBurst("/IW3/Burst0024")  0x7fd45a027a50
27 IW3 Sentinel1EtadBurst("/IW3/Burst0027")  0x7fd45a027ad0
30 IW3 Sentinel1EtadBurst("/IW3/Burst0030")  0x7fd45a027b50
33 IW3 Sentinel1EtadBurst("/IW3/Burst0033")  0x7fd45a027bd0
36 IW3 Sentinel1EtadBurst("/IW3/Burst0036")  0x7fd45a027c50
39 IW3 Sentinel1EtadBurst("/IW3/Burst0039")  0x7fd45a027c10
42 IW3 Sentinel1EtadBurst("/IW3/Burst0042")  0x7fd45a027d50
45 IW3 Sentinel1EtadBurst("/IW3/Burst0045")  0x7fd45a027dd0
48 IW3 Sentinel1EtadBurst("/IW3/Burst0048")  0x7fd45a027e50
51 IW3 Sentinel1EtadBurst("/IW3/Burst0051")  0x7fd45a027ed0
54 IW3 Sentinel1EtadBurst("/IW3/Burst0054")  0x7fd45a027f50
57 IW3 Sentinel1EtadBurst("/IW3/Burst0057")  0x7fd45a027fd0
60 IW3 Sentinel1EtadBurst("/IW3/Burst0060")  0x7fd45a023390
63 IW3 Sentinel1EtadBurst("/IW3/Burst0063")  0x7fd45a023250
66 IW3 Sentinel1EtadBurst("/IW3/Burst0066")  0x7fd45a0231d0
69 IW3 Sentinel1EtadBurst("/IW3/Burst0069")  0x7fd45a023510
72 IW3 Sentinel1EtadBurst("/IW3/Burst0072")  0x7fd45a0233d0
75 IW3 Sentinel1EtadBurst("/IW3/Burst0075")  0x7fd45a023110
78 IW3 Sentinel1EtadBurst("/IW3/Burst0078")  0x7fd45a023190
81 IW3 Sentinel1EtadBurst("/IW3/Burst0081")  0x7fd45a023210
84 IW3 Sentinel1EtadBurst("/IW3/Burst0084")  0x7fd45a023310
87 IW3 Sentinel1EtadBurst("/IW3/Burst0087")  0x7fd45a023550
90 IW3 Sentinel1EtadBurst("/IW3/Burst0090")  0x7fd45a0235d0
93 IW3 Sentinel1EtadBurst("/IW3/Burst0093")  0x7fd45a023650
96 IW3 Sentinel1EtadBurst("/IW3/Burst0096")  0x7fd45a0236d0
99 IW3 Sentinel1EtadBurst("/IW3/Burst0099")  0x7fd45a023750
102 IW3 Sentinel1EtadBurst("/IW3/Burst0102")  0x7fd45a023450
105 IW3 Sentinel1EtadBurst("/IW3/Burst0105")  0x7fd45a023850
108 IW3 Sentinel1EtadBurst("/IW3/Burst0108")  0x7fd45a0238d0
111 IW3 Sentinel1EtadBurst("/IW3/Burst0111")  0x7fd45a023950
114 IW3 Sentinel1EtadBurst("/IW3/Burst0114")  0x7fd45a0239d0
117 IW3 Sentinel1EtadBurst("/IW3/Burst0117")  0x7fd45a023a50
120 IW3 Sentinel1EtadBurst("/IW3/Burst0120")  0x7fd45a023ad0
123 IW3 Sentinel1EtadBurst("/IW3/Burst0123")  0x7fd45a023b50
126 IW3 Sentinel1EtadBurst("/IW3/Burst0126")  0x7fd45a023bd0
129 IW3 Sentinel1EtadBurst("/IW3/Burst0129")  0x7fd45a023f50
132 IW3 Sentinel1EtadBurst("/IW3/Burst0132")  0x7fd45a023490
135 IW3 Sentinel1EtadBurst("/IW3/Burst0135")  0x7fd45a023690
138 IW3 Sentinel1EtadBurst("/IW3/Burst0138")  0x7fd45a023c10
141 IW3 Sentinel1EtadBurst("/IW3/Burst0141")  0x7fd45a02a110
144 IW3 Sentinel1EtadBurst("/IW3/Burst0144")  0x7fd45a023dd0
147 IW3 Sentinel1EtadBurst("/IW3/Burst0147")  0x7fd45a023590
150 IW3 Sentinel1EtadBurst("/IW3/Burst0150")  0x7fd45a023090
153 IW3 Sentinel1EtadBurst("/IW3/Burst0153")  0x7fd45a02a050
156 IW3 Sentinel1EtadBurst("/IW3/Burst0156")  0x7fd45a02a0d0
159 IW3 Sentinel1EtadBurst("/IW3/Burst0159")  0x7fd45a02a190
162 IW3 Sentinel1EtadBurst("/IW3/Burst0162")  0x7fd45a02a210
165 IW3 Sentinel1EtadBurst("/IW3/Burst0165")  0x7fd45a02a590
168 IW3 Sentinel1EtadBurst("/IW3/Burst0168")  0x7fd45a02a450
171 IW3 Sentinel1EtadBurst("/IW3/Burst0171")  0x7fd45a02a610
174 IW3 Sentinel1EtadBurst("/IW3/Burst0174")  0x7fd45a02a390
177 IW3 Sentinel1EtadBurst("/IW3/Burst0177")  0x7fd45a023150
180 IW3 Sentinel1EtadBurst("/IW3/Burst0180")  0x7fd45a02a490
183 IW3 Sentinel1EtadBurst("/IW3/Burst0183")  0x7fd45a02a1d0
186 IW3 Sentinel1EtadBurst("/IW3/Burst0186")  0x7fd45a02a5d0
189 IW3 Sentinel1EtadBurst("/IW3/Burst0189")  0x7fd45a02a690
192 IW3 Sentinel1EtadBurst("/IW3/Burst0192")  0x7fd45a02aa10
195 IW3 Sentinel1EtadBurst("/IW3/Burst0195")  0x7fd45a02a350
198 IW3 Sentinel1EtadBurst("/IW3/Burst0198")  0x7fd45a02a750
201 IW3 Sentinel1EtadBurst("/IW3/Burst0201")  0x7fd45a02a410
204 IW3 Sentinel1EtadBurst("/IW3/Burst0204")  0x7fd45a02a910
207 IW3 Sentinel1EtadBurst("/IW3/Burst0207")  0x7fd45a02a2d0
210 IW3 Sentinel1EtadBurst("/IW3/Burst0210")  0x7fd45a02a850
213 IW3 Sentinel1EtadBurst("/IW3/Burst0213")  0x7fd45a02a8d0
216 IW3 Sentinel1EtadBurst("/IW3/Burst0216")  0x7fd45a02ae10
219 IW3 Sentinel1EtadBurst("/IW3/Burst0219")  0x7fd45a02a150
222 IW3 Sentinel1EtadBurst("/IW3/Burst0222")  0x7fd45a02af10
225 IW3 Sentinel1EtadBurst("/IW3/Burst0225")  0x7fd45a02a6d0
228 IW3 Sentinel1EtadBurst("/IW3/Burst0228")  0x7fd45a02ab90
231 IW3 Sentinel1EtadBurst("/IW3/Burst0231")  0x7fd45a02a990
234 IW3 Sentinel1EtadBurst("/IW3/Burst0234")  0x7fd45a02ac90
237 IW3 Sentinel1EtadBurst("/IW3/Burst0237")  0x7fd45a02ad10
240 IW3 Sentinel1EtadBurst("/IW3/Burst0240")  0x7fd45a02aed0
243 IW3 Sentinel1EtadBurst("/IW3/Burst0243")  0x7fd45a02a710
246 IW3 Sentinel1EtadBurst("/IW3/Burst0246")  0x7fd45a02b050
249 IW3 Sentinel1EtadBurst("/IW3/Burst0249")  0x7fd45a02b0d0
252 IW3 Sentinel1EtadBurst("/IW3/Burst0252")  0x7fd45a02b150
255 IW3 Sentinel1EtadBurst("/IW3/Burst0255")  0x7fd45a02b1d0
258 IW3 Sentinel1EtadBurst("/IW3/Burst0258")  0x7fd45a02b550
261 IW3 Sentinel1EtadBurst("/IW3/Burst0261")  0x7fd45a02b8d0
264 IW3 Sentinel1EtadBurst("/IW3/Burst0264")  0x7fd45a02b710
267 IW3 Sentinel1EtadBurst("/IW3/Burst0267")  0x7fd45a02b310
270 IW3 Sentinel1EtadBurst("/IW3/Burst0270")  0x7fd45a02ba50
273 IW3 Sentinel1EtadBurst("/IW3/Burst0273")  0x7fd45a02b250
276 IW3 Sentinel1EtadBurst("/IW3/Burst0276")  0x7fd45a02b890
279 IW3 Sentinel1EtadBurst("/IW3/Burst0279")  0x7fd45a02b6d0
282 IW3 Sentinel1EtadBurst("/IW3/Burst0282")  0x7fd45a02b350
285 IW3 Sentinel1EtadBurst("/IW3/Burst0285")  0x7fd45a02b2d0
288 IW3 Sentinel1EtadBurst("/IW3/Burst0288")  0x7fd45a02b3d0
291 IW3 Sentinel1EtadBurst("/IW3/Burst0291")  0x7fd45a02bad0
294 IW3 Sentinel1EtadBurst("/IW3/Burst0294")  0x7fd45a02b090
297 IW3 Sentinel1EtadBurst("/IW3/Burst0297")  0x7fd45a02b290
300 IW3 Sentinel1EtadBurst("/IW3/Burst0300")  0x7fd45a02b390
303 IW3 Sentinel1EtadBurst("/IW3/Burst0303")  0x7fd45a02bcd0
306 IW3 Sentinel1EtadBurst("/IW3/Burst0306")  0x7fd45a02b950

How to iterate only on selected items

It is also possible to iterate on a sub-set of the products swaths (or a sub-set of the swath bursts):

[21]:
for swath in eta.iter_swaths(['IW1', 'IW2']):  # no 'IW3'
    # list of bursts
    odd_bursts = [idx for idx in swath.burst_list if idx % 2 != 0]
    for burst in swath.iter_bursts(odd_bursts):
        print(f'{burst.burst_index:2} {burst.swath_id} {burst}')
 1 IW1 Sentinel1EtadBurst("/IW1/Burst0001")  0x7fd457cf9c50
 7 IW1 Sentinel1EtadBurst("/IW1/Burst0007")  0x7fd457cf9410
13 IW1 Sentinel1EtadBurst("/IW1/Burst0013")  0x7fd457cf9650
19 IW1 Sentinel1EtadBurst("/IW1/Burst0019")  0x7fd457cf9dd0
25 IW1 Sentinel1EtadBurst("/IW1/Burst0025")  0x7fd457cf9310
31 IW1 Sentinel1EtadBurst("/IW1/Burst0031")  0x7fd457cf9b10
37 IW1 Sentinel1EtadBurst("/IW1/Burst0037")  0x7fd457cf9d50
43 IW1 Sentinel1EtadBurst("/IW1/Burst0043")  0x7fd457cf9390
49 IW1 Sentinel1EtadBurst("/IW1/Burst0049")  0x7fd457cf9cd0
55 IW1 Sentinel1EtadBurst("/IW1/Burst0055")  0x7fd457cf9250
61 IW1 Sentinel1EtadBurst("/IW1/Burst0061")  0x7fd46d51bf90
67 IW1 Sentinel1EtadBurst("/IW1/Burst0067")  0x7fd457cf9690
73 IW1 Sentinel1EtadBurst("/IW1/Burst0073")  0x7fd457cf9ad0
79 IW1 Sentinel1EtadBurst("/IW1/Burst0079")  0x7fd45a00f410
85 IW1 Sentinel1EtadBurst("/IW1/Burst0085")  0x7fd457cf9790
91 IW1 Sentinel1EtadBurst("/IW1/Burst0091")  0x7fd46ed72ed0
97 IW1 Sentinel1EtadBurst("/IW1/Burst0097")  0x7fd457cf9710
103 IW1 Sentinel1EtadBurst("/IW1/Burst0103")  0x7fd457cba050
109 IW1 Sentinel1EtadBurst("/IW1/Burst0109")  0x7fd46ed12990
115 IW1 Sentinel1EtadBurst("/IW1/Burst0115")  0x7fd46ed12510
121 IW1 Sentinel1EtadBurst("/IW1/Burst0121")  0x7fd46c8de7d0
127 IW1 Sentinel1EtadBurst("/IW1/Burst0127")  0x7fd46ed7ddd0
133 IW1 Sentinel1EtadBurst("/IW1/Burst0133")  0x7fd457ca5450
139 IW1 Sentinel1EtadBurst("/IW1/Burst0139")  0x7fd457ca5a10
145 IW1 Sentinel1EtadBurst("/IW1/Burst0145")  0x7fd457ca5410
151 IW1 Sentinel1EtadBurst("/IW1/Burst0151")  0x7fd457ca5f50
157 IW1 Sentinel1EtadBurst("/IW1/Burst0157")  0x7fd457ca5850
163 IW1 Sentinel1EtadBurst("/IW1/Burst0163")  0x7fd457cf9510
169 IW1 Sentinel1EtadBurst("/IW1/Burst0169")  0x7fd457ca5910
175 IW1 Sentinel1EtadBurst("/IW1/Burst0175")  0x7fd45a018090
181 IW1 Sentinel1EtadBurst("/IW1/Burst0181")  0x7fd45a00a910
187 IW1 Sentinel1EtadBurst("/IW1/Burst0187")  0x7fd457cf9b90
193 IW1 Sentinel1EtadBurst("/IW1/Burst0193")  0x7fd45a0186d0
199 IW1 Sentinel1EtadBurst("/IW1/Burst0199")  0x7fd457ccbfd0
205 IW1 Sentinel1EtadBurst("/IW1/Burst0205")  0x7fd45a018390
211 IW1 Sentinel1EtadBurst("/IW1/Burst0211")  0x7fd45a018050
217 IW1 Sentinel1EtadBurst("/IW1/Burst0217")  0x7fd45a0182d0
223 IW1 Sentinel1EtadBurst("/IW1/Burst0223")  0x7fd45a018e50
229 IW1 Sentinel1EtadBurst("/IW1/Burst0229")  0x7fd45a0180d0
235 IW1 Sentinel1EtadBurst("/IW1/Burst0235")  0x7fd45a0188d0
241 IW1 Sentinel1EtadBurst("/IW1/Burst0241")  0x7fd457cf9c90
247 IW1 Sentinel1EtadBurst("/IW1/Burst0247")  0x7fd45a018990
253 IW1 Sentinel1EtadBurst("/IW1/Burst0253")  0x7fd45a018850
259 IW1 Sentinel1EtadBurst("/IW1/Burst0259")  0x7fd45a018ed0
265 IW1 Sentinel1EtadBurst("/IW1/Burst0265")  0x7fd45a018f90
271 IW1 Sentinel1EtadBurst("/IW1/Burst0271")  0x7fd45a018ad0
277 IW1 Sentinel1EtadBurst("/IW1/Burst0277")  0x7fd45a018790
283 IW1 Sentinel1EtadBurst("/IW1/Burst0283")  0x7fd45a018d50
289 IW1 Sentinel1EtadBurst("/IW1/Burst0289")  0x7fd45a018450
295 IW1 Sentinel1EtadBurst("/IW1/Burst0295")  0x7fd45a0185d0
301 IW1 Sentinel1EtadBurst("/IW1/Burst0301")  0x7fd45a018bd0
 5 IW2 Sentinel1EtadBurst("/IW2/Burst0005")  0x7fd457cf9190
11 IW2 Sentinel1EtadBurst("/IW2/Burst0011")  0x7fd457ca5990
17 IW2 Sentinel1EtadBurst("/IW2/Burst0017")  0x7fd45a018a10
23 IW2 Sentinel1EtadBurst("/IW2/Burst0023")  0x7fd45a018a90
29 IW2 Sentinel1EtadBurst("/IW2/Burst0029")  0x7fd45a018110
35 IW2 Sentinel1EtadBurst("/IW2/Burst0035")  0x7fd45a018d90
41 IW2 Sentinel1EtadBurst("/IW2/Burst0041")  0x7fd45a018490
47 IW2 Sentinel1EtadBurst("/IW2/Burst0047")  0x7fd45a018c10
53 IW2 Sentinel1EtadBurst("/IW2/Burst0053")  0x7fd45a018650
59 IW2 Sentinel1EtadBurst("/IW2/Burst0059")  0x7fd45a0189d0
65 IW2 Sentinel1EtadBurst("/IW2/Burst0065")  0x7fd45a018950
71 IW2 Sentinel1EtadBurst("/IW2/Burst0071")  0x7fd457cf9bd0
77 IW2 Sentinel1EtadBurst("/IW2/Burst0077")  0x7fd45a018c50
83 IW2 Sentinel1EtadBurst("/IW2/Burst0083")  0x7fd45a018a50
89 IW2 Sentinel1EtadBurst("/IW2/Burst0089")  0x7fd45a018350
95 IW2 Sentinel1EtadBurst("/IW2/Burst0095")  0x7fd45a018410
101 IW2 Sentinel1EtadBurst("/IW2/Burst0101")  0x7fd45a018150
107 IW2 Sentinel1EtadBurst("/IW2/Burst0107")  0x7fd45a018e90
113 IW2 Sentinel1EtadBurst("/IW2/Burst0113")  0x7fd45a018890
119 IW2 Sentinel1EtadBurst("/IW2/Burst0119")  0x7fd45a018cd0
125 IW2 Sentinel1EtadBurst("/IW2/Burst0125")  0x7fd45a018750
131 IW2 Sentinel1EtadBurst("/IW2/Burst0131")  0x7fd45a018550
137 IW2 Sentinel1EtadBurst("/IW2/Burst0137")  0x7fd45a018b90
143 IW2 Sentinel1EtadBurst("/IW2/Burst0143")  0x7fd45a0181d0
149 IW2 Sentinel1EtadBurst("/IW2/Burst0149")  0x7fd45a018d10
155 IW2 Sentinel1EtadBurst("/IW2/Burst0155")  0x7fd45a018250
161 IW2 Sentinel1EtadBurst("/IW2/Burst0161")  0x7fd45a018810
167 IW2 Sentinel1EtadBurst("/IW2/Burst0167")  0x7fd45a018f10
173 IW2 Sentinel1EtadBurst("/IW2/Burst0173")  0x7fd457cf9550
179 IW2 Sentinel1EtadBurst("/IW2/Burst0179")  0x7fd45a01a590
185 IW2 Sentinel1EtadBurst("/IW2/Burst0185")  0x7fd45a01add0
191 IW2 Sentinel1EtadBurst("/IW2/Burst0191")  0x7fd45a01ad90
197 IW2 Sentinel1EtadBurst("/IW2/Burst0197")  0x7fd45a01a990
203 IW2 Sentinel1EtadBurst("/IW2/Burst0203")  0x7fd45a01ab10
209 IW2 Sentinel1EtadBurst("/IW2/Burst0209")  0x7fd45a01af10
215 IW2 Sentinel1EtadBurst("/IW2/Burst0215")  0x7fd45a01a5d0
221 IW2 Sentinel1EtadBurst("/IW2/Burst0221")  0x7fd45a01a810
227 IW2 Sentinel1EtadBurst("/IW2/Burst0227")  0x7fd45a01af50
233 IW2 Sentinel1EtadBurst("/IW2/Burst0233")  0x7fd45a018f50
239 IW2 Sentinel1EtadBurst("/IW2/Burst0239")  0x7fd45a01a9d0
245 IW2 Sentinel1EtadBurst("/IW2/Burst0245")  0x7fd45a01ab50
251 IW2 Sentinel1EtadBurst("/IW2/Burst0251")  0x7fd45a01af90
257 IW2 Sentinel1EtadBurst("/IW2/Burst0257")  0x7fd45a01a710
263 IW2 Sentinel1EtadBurst("/IW2/Burst0263")  0x7fd45a01aa10
269 IW2 Sentinel1EtadBurst("/IW2/Burst0269")  0x7fd45a01afd0
275 IW2 Sentinel1EtadBurst("/IW2/Burst0275")  0x7fd45a01a350
281 IW2 Sentinel1EtadBurst("/IW2/Burst0281")  0x7fd45a01a4d0
287 IW2 Sentinel1EtadBurst("/IW2/Burst0287")  0x7fd45a01ac50
293 IW2 Sentinel1EtadBurst("/IW2/Burst0293")  0x7fd45a01a750
299 IW2 Sentinel1EtadBurst("/IW2/Burst0299")  0x7fd45a0184d0
305 IW2 Sentinel1EtadBurst("/IW2/Burst0305")  0x7fd45a01a490

How to iterate on query results

The query mechanism is explained extensively in the following.

Queries can be performed using the Sentinel1Etad.query_burst method.

A simple example is a query for a specific swath:

[22]:
query_result = eta.query_burst(swath='IW3')

for swath in eta.iter_swaths(query_result):
    for burst in swath.iter_bursts(query_result):
        print(burst)
Sentinel1EtadBurst("/IW3/Burst0003")  0x7fd45a01ae90
Sentinel1EtadBurst("/IW3/Burst0006")  0x7fd45a01acd0
Sentinel1EtadBurst("/IW3/Burst0009")  0x7fd45a01aa50
Sentinel1EtadBurst("/IW3/Burst0012")  0x7fd45a01a6d0
Sentinel1EtadBurst("/IW3/Burst0015")  0x7fd45a027f50
Sentinel1EtadBurst("/IW3/Burst0018")  0x7fd45a027c10
Sentinel1EtadBurst("/IW3/Burst0021")  0x7fd45a027a50
Sentinel1EtadBurst("/IW3/Burst0024")  0x7fd45a027590
Sentinel1EtadBurst("/IW3/Burst0027")  0x7fd45a0277d0
Sentinel1EtadBurst("/IW3/Burst0030")  0x7fd45a0274d0
Sentinel1EtadBurst("/IW3/Burst0033")  0x7fd45a027410
Sentinel1EtadBurst("/IW3/Burst0036")  0x7fd45a0273d0
Sentinel1EtadBurst("/IW3/Burst0039")  0x7fd45a0272d0
Sentinel1EtadBurst("/IW3/Burst0042")  0x7fd45a027f90
Sentinel1EtadBurst("/IW3/Burst0045")  0x7fd45a027f10
Sentinel1EtadBurst("/IW3/Burst0048")  0x7fd45a027250
Sentinel1EtadBurst("/IW3/Burst0051")  0x7fd45a0196d0
Sentinel1EtadBurst("/IW3/Burst0054")  0x7fd45a019410
Sentinel1EtadBurst("/IW3/Burst0057")  0x7fd45a019b90
Sentinel1EtadBurst("/IW3/Burst0060")  0x7fd45a019c90
Sentinel1EtadBurst("/IW3/Burst0063")  0x7fd45a019690
Sentinel1EtadBurst("/IW3/Burst0066")  0x7fd45a0195d0
Sentinel1EtadBurst("/IW3/Burst0069")  0x7fd45a019510
Sentinel1EtadBurst("/IW3/Burst0072")  0x7fd45a0194d0
Sentinel1EtadBurst("/IW3/Burst0075")  0x7fd45a027b10
Sentinel1EtadBurst("/IW3/Burst0078")  0x7fd45a027d10
Sentinel1EtadBurst("/IW3/Burst0081")  0x7fd45a027c90
Sentinel1EtadBurst("/IW3/Burst0084")  0x7fd45a0278d0
Sentinel1EtadBurst("/IW3/Burst0087")  0x7fd45a0271d0
Sentinel1EtadBurst("/IW3/Burst0090")  0x7fd45a027750
Sentinel1EtadBurst("/IW3/Burst0093")  0x7fd45a027890
Sentinel1EtadBurst("/IW3/Burst0096")  0x7fd45a027bd0
Sentinel1EtadBurst("/IW3/Burst0099")  0x7fd45a027dd0
Sentinel1EtadBurst("/IW3/Burst0102")  0x7fd457cf9310
Sentinel1EtadBurst("/IW3/Burst0105")  0x7fd457cf9c50
Sentinel1EtadBurst("/IW3/Burst0108")  0x7fd45a01a190
Sentinel1EtadBurst("/IW3/Burst0111")  0x7fd45a01a8d0
Sentinel1EtadBurst("/IW3/Burst0114")  0x7fd45a01a310
Sentinel1EtadBurst("/IW3/Burst0117")  0x7fd45a01a2d0
Sentinel1EtadBurst("/IW3/Burst0120")  0x7fd457cf9950
Sentinel1EtadBurst("/IW3/Burst0123")  0x7fd457cf9650
Sentinel1EtadBurst("/IW3/Burst0126")  0x7fd45a027850
Sentinel1EtadBurst("/IW3/Burst0129")  0x7fd45a027d50
Sentinel1EtadBurst("/IW3/Burst0132")  0x7fd45a027310
Sentinel1EtadBurst("/IW3/Burst0135")  0x7fd45a027650
Sentinel1EtadBurst("/IW3/Burst0138")  0x7fd45a027090
Sentinel1EtadBurst("/IW3/Burst0141")  0x7fd45a027050
Sentinel1EtadBurst("/IW3/Burst0144")  0x7fd45a027a10
Sentinel1EtadBurst("/IW3/Burst0147")  0x7fd45a027b90
Sentinel1EtadBurst("/IW3/Burst0150")  0x7fd45a027610
Sentinel1EtadBurst("/IW3/Burst0153")  0x7fd45a027210
Sentinel1EtadBurst("/IW3/Burst0156")  0x7fd45a01a0d0
Sentinel1EtadBurst("/IW3/Burst0159")  0x7fd45a01ad50
Sentinel1EtadBurst("/IW3/Burst0162")  0x7fd45a01a650
Sentinel1EtadBurst("/IW3/Burst0165")  0x7fd45a019050
Sentinel1EtadBurst("/IW3/Burst0168")  0x7fd45a019f50
Sentinel1EtadBurst("/IW3/Burst0171")  0x7fd45a019590
Sentinel1EtadBurst("/IW3/Burst0174")  0x7fd45a0198d0
Sentinel1EtadBurst("/IW3/Burst0177")  0x7fd45a019d90
Sentinel1EtadBurst("/IW3/Burst0180")  0x7fd45a019550
Sentinel1EtadBurst("/IW3/Burst0183")  0x7fd45a019810
Sentinel1EtadBurst("/IW3/Burst0186")  0x7fd45a019110
Sentinel1EtadBurst("/IW3/Burst0189")  0x7fd45a019a50
Sentinel1EtadBurst("/IW3/Burst0192")  0x7fd45a019e50
Sentinel1EtadBurst("/IW3/Burst0195")  0x7fd45a01d6d0
Sentinel1EtadBurst("/IW3/Burst0198")  0x7fd45a00a990
Sentinel1EtadBurst("/IW3/Burst0201")  0x7fd46c964790
Sentinel1EtadBurst("/IW3/Burst0204")  0x7fd46ecb3e50
Sentinel1EtadBurst("/IW3/Burst0207")  0x7fd46dea02d0
Sentinel1EtadBurst("/IW3/Burst0210")  0x7fd45a01d850
Sentinel1EtadBurst("/IW3/Burst0213")  0x7fd45a01dad0
Sentinel1EtadBurst("/IW3/Burst0216")  0x7fd45a01d910
Sentinel1EtadBurst("/IW3/Burst0219")  0x7fd45a01df10
Sentinel1EtadBurst("/IW3/Burst0222")  0x7fd45a01d210
Sentinel1EtadBurst("/IW3/Burst0225")  0x7fd45a01d410
Sentinel1EtadBurst("/IW3/Burst0228")  0x7fd45a01d1d0
Sentinel1EtadBurst("/IW3/Burst0231")  0x7fd45a01d0d0
Sentinel1EtadBurst("/IW3/Burst0234")  0x7fd45a01d390
Sentinel1EtadBurst("/IW3/Burst0237")  0x7fd45a01d790
Sentinel1EtadBurst("/IW3/Burst0240")  0x7fd45a01db90
Sentinel1EtadBurst("/IW3/Burst0243")  0x7fd45a01b110
Sentinel1EtadBurst("/IW3/Burst0246")  0x7fd45a01b590
Sentinel1EtadBurst("/IW3/Burst0249")  0x7fd45a01b910
Sentinel1EtadBurst("/IW3/Burst0252")  0x7fd45a01b410
Sentinel1EtadBurst("/IW3/Burst0255")  0x7fd45a01b090
Sentinel1EtadBurst("/IW3/Burst0258")  0x7fd45a01b810
Sentinel1EtadBurst("/IW3/Burst0261")  0x7fd45a01b390
Sentinel1EtadBurst("/IW3/Burst0264")  0x7fd45a01b190
Sentinel1EtadBurst("/IW3/Burst0267")  0x7fd45a01b690
Sentinel1EtadBurst("/IW3/Burst0270")  0x7fd45a01b790
Sentinel1EtadBurst("/IW3/Burst0273")  0x7fd45a01bb90
Sentinel1EtadBurst("/IW3/Burst0276")  0x7fd45a01bf90
Sentinel1EtadBurst("/IW3/Burst0279")  0x7fd45a0114d0
Sentinel1EtadBurst("/IW3/Burst0282")  0x7fd45a0112d0
Sentinel1EtadBurst("/IW3/Burst0285")  0x7fd45a011190
Sentinel1EtadBurst("/IW3/Burst0288")  0x7fd45a011050
Sentinel1EtadBurst("/IW3/Burst0291")  0x7fd45a011d90
Sentinel1EtadBurst("/IW3/Burst0294")  0x7fd45a011a10
Sentinel1EtadBurst("/IW3/Burst0297")  0x7fd45a011f10
Sentinel1EtadBurst("/IW3/Burst0300")  0x7fd45a011fd0
Sentinel1EtadBurst("/IW3/Burst0303")  0x7fd45a011b90
Sentinel1EtadBurst("/IW3/Burst0306")  0x7fd45a011c90