geo_grid
Collection of function for determining and setting the geogrid
assign_check_epsg(epsg, epsg_default)
Assign and check user-defined epsg
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
epsg
|
User-defined EPSG code to check |
required | |
epsg_default
|
Default epsg code to assign |
required |
Returns:
| Name | Type | Description |
|---|---|---|
epsg |
int
|
Checked EPSG code to use in geogrid |
Source code in src/compass/utils/geo_grid.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | |
assign_check_geogrid(geo_grid, x_start=None, y_start=None, x_end=None, y_end=None)
Initialize geogrid with user defined parameters. Check the validity of user-defined parameters
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
geo_grid
|
ISCE3 object defining the geogrid |
required | |
x_start
|
Geogrid top-left X coordinate |
None
|
|
y_start
|
Geogrid top-left Y coordinate |
None
|
|
x_end
|
Geogrid bottom-right X coordinate |
None
|
|
y_end
|
Geogrid bottom-right Y coordinate |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
geo_grid |
geogrid
|
ISCE3 geogrid initialized with user-defined inputs |
Source code in src/compass/utils/geo_grid.py
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 | |
assign_check_spacing(x_spacing, y_spacing, x_default_spacing, y_default_spacing)
Check validity of input spacings and assign default spacings if one or both input spacings are None
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x_spacing
|
Input spacing of the geogrid along X-direction |
required | |
y_spacing
|
Input spacing of the geogrid along Y-direction |
required | |
x_default_spacing
|
Default spacing of the geogrid along X-direction |
required | |
y_default_spacing
|
Default spacing of the geogrid along Y-direction |
required |
Returns:
| Name | Type | Description |
|---|---|---|
x_spacing |
float
|
Verified geogrid spacing along X-direction |
y_spacing |
float
|
Verified geogrid spacing along Y-direction |
Source code in src/compass/utils/geo_grid.py
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 | |
check_geogrid_endpoints(geo_grid, x_end=None, y_end=None)
Check validity of geogrid end points
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
geo_grid
|
ISCE3 object defining the geogrid |
required | |
x_end
|
Geogrid bottom right X coordinate |
None
|
|
y_end
|
Geogrid bottom right Y coordinates |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
x_end |
float
|
Verified geogrid bottom-right X coordinate |
y_end |
float
|
Verified geogrid bottom-right Y coordinate |
Source code in src/compass/utils/geo_grid.py
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 | |
check_snap_values(x_snap, y_snap, x_spacing, y_spacing)
Check validity of snap values
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x_snap
|
Snap value along X-direction |
required | |
y_snap
|
Snap value along Y-direction |
required | |
x_spacing
|
Spacing of the geogrid along X-direction |
required | |
y_spacing
|
Spacing of the geogrid along Y-direction |
required |
Source code in src/compass/utils/geo_grid.py
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 | |
generate_geogrids(bursts, geo_dict, dem)
Create a geogrid for all bursts in given list
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
burst
|
List of bursts |
required | |
geo_dict
|
Dict of parameters that describe the area to be geocoded |
required | |
dem
|
Path to DEM raster |
required |
Returns:
| Name | Type | Description |
|---|---|---|
geo_grids |
dict
|
Dict of burst ID keys to isce3.product.GeoGridParameters values |
Source code in src/compass/utils/geo_grid.py
363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | |
generate_geogrids_from_db(bursts, geo_dict, dem, burst_db_file)
Create a geogrid for all bursts in given list from provided burst database
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
burst
|
List of bursts |
required | |
geo_dict
|
Dict of parameters that describe the area to be geocoded |
required | |
dem
|
Path to DEM raster |
required | |
burst_db_file
|
str
|
Location of burst database sqlite file |
required |
Returns:
| Name | Type | Description |
|---|---|---|
geo_grids |
dict
|
Dict of burst ID keys to isce3.product.GeoGridParameters values |
Source code in src/compass/utils/geo_grid.py
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 | |
get_point_epsg(lat, lon)
Get EPSG code based on latitude and longitude coordinates of a point
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
lat
|
Latitude coordinate of the point |
required | |
lon
|
Longitude coordinate of the point |
required |
Returns:
| Name | Type | Description |
|---|---|---|
epsg |
int
|
UTM zone |
Source code in src/compass/utils/geo_grid.py
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 | |
snap_geogrid(geo_grid, x_snap, y_snap, x_end, y_end)
Snap geogrid based on user-defined snapping values
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
geo_grid
|
ISCE3 object defining the geogrid |
required | |
x_snap
|
Snap value along X-direction |
required | |
y_snap
|
Snap value along Y-direction |
required | |
x_end
|
Bottom-right X coordinate |
required | |
y_end
|
Bottom-right Y coordinate |
required |
Returns:
| Name | Type | Description |
|---|---|---|
geo_grid |
geogrid
|
ISCE3 object containing the snapped geogrid |
Source code in src/compass/utils/geo_grid.py
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 | |