Modules
Creates an Analysis-Ready Sentinel-1 ImageCollection following the framework described in Mullissa et al. (2021) Remote Sens. 2021, 13, 1954.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
geometry
|
Geometry
|
Region of interest for filtering the Sentinel-1 collection. |
required |
start_date
|
str
|
Start date for filtering the Sentinel-1 collection (YYYY-MM-DD). See Section 2.1 (Mullissa et al. 2021) for details on data selection. |
required |
stop_date
|
str
|
End date for filtering the Sentinel-1 collection (YYYY-MM-DD). |
required |
ascending
|
bool
|
Choose between ascending or descending orbit. |
True
|
polarization
|
str
|
Polarization mode. Options are "VV", "VH", "VVVH". See Section 2.1 for coverage details. |
"VVVH"
|
apply_border_noise_correction
|
bool
|
Whether to remove additional border noise. See Section 2.2. |
True
|
apply_terrain_flattening
|
bool
|
Whether to apply radiometric terrain normalization. See Section 2.4. |
True
|
apply_speckle_filtering
|
bool
|
Whether to apply speckle filtering. See Section 2.3. |
True
|
speckle_filter_framework
|
str
|
Framework for speckle filtering. Options are "MONO" or "MULTI". |
"MULTI"
|
speckle_filter_type
|
str
|
Type of speckle filter. Options include "BOXCAR", "LEE", "GAMMA MAP", "REFINED LEE", "LEE SIGMA". |
"GAMMA MAP"
|
speckle_filter_kernel_size
|
int
|
Kernel size used by the speckle filter. |
7
|
speckle_filter_nr_of_images
|
int
|
Number of images considered in multi-temporal speckle filtering. |
10
|
terrain_flattening_model
|
str
|
Model for terrain normalization. Options are "DIRECT", "VOLUME". |
"VOLUME"
|
terrain_flattening_additional_buffer
|
int
|
Additional buffer in meters for layover and shadow masking. |
0
|
output_format
|
str
|
Output backscatter format. Options are "LINEAR" or "DB". |
"DB"
|
dem
|
Optional[Image]
|
Digital Elevation Model for terrain normalization. If None, the default SRTM DEM is used. |
None
|
References
Mullissa, A. et al. (2021): Sentinel-1 SAR Backscatter Analysis Ready Data Preparation in Google Earth Engine. Remote Sens. 13(10), 1954.
Source code in ee_s1_ard/wrapper.py
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
|
get_collection()
¶
Prepares the Sentinel-1 SAR ImageCollection as Analysis-Ready Data (ARD).
Returns:
Type | Description |
---|---|
ImageCollection
|
Sentinel-1 ARD collection in linear or dB scale. |
Source code in ee_s1_ard/wrapper.py
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 |
|