From bef3a9bb1d15e49a20fd8056435938c233627b4b Mon Sep 17 00:00:00 2001 From: e-marshall Date: Sun, 4 Feb 2024 03:41:33 +0000 Subject: [PATCH] deploy: 72d6a642ddbb45f1bba888ef1f37cfc0de9b93c8 --- PC_RTC.html | 10 +++++----- _sources/PC_RTC.ipynb | 10 +++++----- _sources/appendix.md | 2 +- _sources/asf_inspect.ipynb | 4 ++-- _sources/asf_local_vrt.ipynb | 4 ++-- _sources/dataset_comparison.ipynb | 8 ++++---- appendix.html | 2 +- asf_inspect.html | 4 ++-- asf_local_vrt.html | 4 ++-- dataset_comparison.html | 8 ++++---- searchindex.js | 2 +- 11 files changed, 29 insertions(+), 29 deletions(-) diff --git a/PC_RTC.html b/PC_RTC.html index 81de19b..edffd8c 100644 --- a/PC_RTC.html +++ b/PC_RTC.html @@ -7359,7 +7359,7 @@

STAC items
time_range = '2021-01-01/2022-08-01'
@@ -7416,7 +7416,7 @@ 

STAC itemsitems is an instance of the class ItemCollection, and we can explore it via the embedded html interface (is that right?)

+

You can see that items is an instance of the class ItemCollection, and we can explore it via the embedded html interface.

items
@@ -322253,7 +322253,7 @@ 

STAC items.assets, .links, .STAC_extensions and .properties onto the term below. -You can query the object programmatically for the same metadata stored in the table using dictionary syntax on the properties accessor (<– is that the write word here?).

+You can query the object programmatically for the same metadata stored in the table using dictionary syntax on the properties accessor.

items[0]
@@ -325417,7 +325417,7 @@ 

Reading data using xarray

Retrieve source granule ID#

-

It will be useful to have the granule ID for the original SAR acquisition and GRD file used to generate the RTC image. The following code demonstrates retrieving the source granule ID from the STAC metadata and adding it as a variable (coorindate?) to the xarray object containing the RTC imagery.

+

It will be useful to have the granule ID for the original SAR acquisition and GRD file used to generate the RTC image. The following code demonstrates retrieving the source granule ID from the STAC metadata and adding it as a coordinate variable to the xarray object containing the RTC imagery.

stac_item = pystac.read_file('https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc/items/S1A_IW_GRDH_1SDV_20210602T120544_20210602T120609_038161_0480FD_rtc')
@@ -327890,7 +327890,7 @@ 

Retrieve source granule IDVV data from the ascending passes, or other variables you may be itnerested in.

+

You can see that there are 69 time steps from the Ascending orbital pass and that all of the same dimensions and coordinates still exist, so you can subset for just the VV data from the ascending passes, or other variables you may be interested in.

Let’s take a look at the two polarizations side-by-side. Below, we’ll plot the VV and VH polarizations from the same date next to each other:

diff --git a/_sources/PC_RTC.ipynb b/_sources/PC_RTC.ipynb index 5325270..d39da17 100644 --- a/_sources/PC_RTC.ipynb +++ b/_sources/PC_RTC.ipynb @@ -7036,7 +7036,7 @@ "id": "4cd26316-b0cf-4ae8-a839-1cf619714e3f", "metadata": {}, "source": [ - "In the cell below we specify the time range we're intereste in as well as the geographic area of interest." + "In the cell below we specify the time range we're interested in as well as the geographic area of interest." ] }, { @@ -7142,7 +7142,7 @@ "id": "450d2505-8797-456a-bd8a-97d7357ab785", "metadata": {}, "source": [ - "You can see that `items` is an instance of the class `ItemCollection`, and we can explore it via the embedded html interface (is that right?)" + "You can see that `items` is an instance of the class `ItemCollection`, and we can explore it via the embedded html interface." ] }, { @@ -322169,7 +322169,7 @@ "metadata": {}, "source": [ "We can also explore the object metadata outside of the table. Try typing `.assets`, `.links`, `.STAC_extensions` and `.properties` onto the term below. \n", - "You can query the object programmatically for the same metadata stored in the table using dictionary syntax on the `properties` accessor (<-- is that the write word here?)." + "You can query the object programmatically for the same metadata stored in the table using dictionary syntax on the `properties` accessor." ] }, { @@ -325450,7 +325450,7 @@ "source": [ "### Retrieve source granule ID\n", "\n", - "It will be useful to have the granule ID for the original SAR acquisition and GRD file used to generate the RTC image. The following code demonstrates retrieving the source granule ID from the STAC metadata and adding it as a variable (coorindate?) to the xarray object containing the RTC imagery." + "It will be useful to have the granule ID for the original SAR acquisition and GRD file used to generate the RTC image. The following code demonstrates retrieving the source granule ID from the STAC metadata and adding it as a coordinate variable to the xarray object containing the RTC imagery." ] }, { @@ -328163,7 +328163,7 @@ "id": "da726ad2-2949-46e5-be7f-cc2ff9061280", "metadata": {}, "source": [ - "You can see that there are 69 time steps from the Ascending orbital pass and that all of the same dimensions and coordinates still exist, so you can subset for just the `VV` data from the ascending passes, or other variables you may be itnerested in.\n", + "You can see that there are 69 time steps from the Ascending orbital pass and that all of the same dimensions and coordinates still exist, so you can subset for just the `VV` data from the ascending passes, or other variables you may be interested in.\n", "\n", "Let's take a look at the two polarizations side-by-side. Below, we'll plot the `VV` and `VH` polarizations from the same date next to each other:" ] diff --git a/_sources/appendix.md b/_sources/appendix.md index ab01e80..aa848b4 100644 --- a/_sources/appendix.md +++ b/_sources/appendix.md @@ -12,7 +12,7 @@ However, for this dataset, I found that the `xr.open_mfdataset()` function wasn' The stack I used contains multiple scenes that cover the same area of interest (multiple viewing geometries). If you wanted to select only scenes from a single viewing geometry at the expense of a denser time series, `xr.open_mfdataset()` might work a bit better (I didn't try this so cannot say for sure) ``` -Ultimately, I decided to use the approach of creating GDAL VRT objects, and reading those in with `rioxarray.open_rasterio()` to organize the data as xarray objects. This worked much better from a memory perspective but created much more work with organizing metadata and structuring the dataset in an analysis-ready format. The `xr.open_mfdataset()` function seems like a much more efficient approach if your dataset is well-aligned with its parameters (ie. a spatially uniform stack). While it did not end up being the best tool for this task, I decided to include the notebook with the `xr.open_mfdataset()` approach anyway in case it is useful to see a demonstration of this function. I learned a lot about how to structure a `preprocess` function and many other steps working on this example. +Ultimately, I decided to use the approach of creating GDAL VRT objects, and reading those in with `rioxarray.open_rasterio()` to organize the data as xarray objects. This worked much better from a memory perspective but created much more work with organizing metadata and structuring the dataset in an analysis-ready format. The `xr.open_mfdataset()` function seems like a much more efficient approach if your dataset is well-aligned with its parameters (ie. a spatially uniform stack). While it did not end up being the best tool for this task, I decided to include the notebook with the `xr.open_mfdataset()` approach anyway, in case it is useful to see a demonstration of this function. I learned a lot about how to structure a `preprocess` function and many other steps working on this example. Take a look at the notebook using `xr.open_mfdataset()` to read in stacks of ASF-processed Sentinel-1 RTC imagery files [here](asf_local_mf.ipynb) diff --git a/_sources/asf_inspect.ipynb b/_sources/asf_inspect.ipynb index 8a0dff3..f6be17c 100644 --- a/_sources/asf_inspect.ipynb +++ b/_sources/asf_inspect.ipynb @@ -1251,7 +1251,7 @@ "id": "05454a5d-373f-4620-aba6-cd1fe2ff0820", "metadata": {}, "source": [ - "It looks like there are areas affected by different types of distortion on different dates. For example, in the lower left quadrant, there is a region that is blue (5 - affected by layover) on 6/7/2010 but much of that area appears to be in radar shadow on 6/10. This pattern is present throughout much of the scene with portions of area that are affected by layover in one acquisition in shadow in the next acquisition. This is due to different viewing geometries on different orbital passes: one of the above scenes was likely collected during an ascending pass and one during a descending.\n", + "It looks like there are areas affected by different types of distortion on different dates. For example, in the lower left quadrant, there is a region that is blue (5 - affected by layover) on 6/7/2021 but much of that area appears to be in radar shadow on 6/10/2021. This pattern is present throughout much of the scene with portions of area that are affected by layover in one acquisition in shadow in the next acquisition. This is due to different viewing geometries on different orbital passes: one of the above scenes was likely collected during an ascending pass and one during a descending.\n", "\n", "Thanks to all the setup work we did in the previous notebook, we can confirm that: " ] @@ -2744,7 +2744,7 @@ "id": "68f545c1-05c9-4f1e-b82f-5712e2a2f042", "metadata": {}, "source": [ - "Interesting, it looks like the winter and spring composites are relatively similar to one another. There also appears to be a decrease in backscatter mvoing from spring to summer. " + "Interesting, it looks like the winter and spring composites are relatively similar to one another. There also appears to be a decrease in backscatter moving from spring to summer. " ] }, { diff --git a/_sources/asf_local_vrt.ipynb b/_sources/asf_local_vrt.ipynb index fa8808d..c0aac03 100644 --- a/_sources/asf_local_vrt.ipynb +++ b/_sources/asf_local_vrt.ipynb @@ -165,7 +165,7 @@ "source": [ "### Read in vector data \n", "\n", - "We will use this vector data object later but we will read it in as a `geopandas.GeoDataFrame` object now. It is called PC aoi because the GeoJSON file was created off of the spatial extent of the SAR dat we will access from Microsoft Planetary Computer (PC), in order to have comparable datasets.\n" + "We will use this vector data object later but we will read it in as a `geopandas.GeoDataFrame` object now. It is called PC aoi because the GeoJSON file was created off of the spatial extent of the SAR data we will access from Microsoft Planetary Computer (PC), in order to have comparable datasets.\n" ] }, { @@ -2933,7 +2933,7 @@ "id": "115fdb7b-df78-4e5e-8761-a987cfe14b2c", "metadata": {}, "source": [ - "Clip the full object by the same AOI as above. Just as in the last notebook, we will use the [`rioxarray.clip()` method](https://corteva.github.io/rioxarray/stable/examples/clip_geom.html)." + "Clip the full object by the same AOI as above. We will use the [`rioxarray.clip()` method](https://corteva.github.io/rioxarray/stable/examples/clip_geom.html)." ] }, { diff --git a/_sources/dataset_comparison.ipynb b/_sources/dataset_comparison.ipynb index 3d77e57..bc44c66 100644 --- a/_sources/dataset_comparison.ipynb +++ b/_sources/dataset_comparison.ipynb @@ -168,7 +168,7 @@ "\n", "We can use the `storemagic` command `%store` to retrieve the variable we constructed and saved in a previous notebook, rather than having to create it again. Read more about this [here](https://levelup.gitconnected.com/how-to-store-variables-in-jupyter-notebook-fea8aa60a9b)\n", "\n", - "This let's use call the ASF dataset (`vrt_new`) and PC dataset (`da_pc`)" + "This let's us call the ASF dataset (`vrt_new`) and PC dataset (`da_pc`)" ] }, { @@ -2090,7 +2090,7 @@ "source": [ "## Extract common data take ID from granule IDs\n", "\n", - "We want to ensure that we are performing a direct comparison of the ASF and PC datasets. To do this, we would like to use the acquisition ID that is stored in the source granule name (published by ESA). In the setup notebooks we attached the entire granule IDs of the SLC images to the ASF dataset and the GRD images to the PC dataset. In the ASF data inspection notebook, we attached data take id as a non-dimensional coordianet. Now we will do the same for the Planetary Computer dataset, extracting just the 6-digit acquisition ID from the granule ID and using this for a scene-by-scene comparison." + "We want to ensure that we are performing a direct comparison of the ASF and PC datasets. To do this, we would like to use the acquisition ID that is stored in the source granule name (published by ESA). In the setup notebooks we attached the entire granule IDs of the SLC images to the ASF dataset and the GRD images to the PC dataset. In the ASF data inspection notebook, we attached data take id as a non-dimensional coordinate. Now we will do the same for the Planetary Computer dataset, extracting just the 6-digit acquisition ID from the granule ID and using this for a scene-by-scene comparison." ] }, { @@ -4026,7 +4026,7 @@ "id": "2b49d742-a17a-4665-8387-a86a83bfef4d", "metadata": {}, "source": [ - "Now we have data take ID coordinates for both datasets. We want to find the common data take IDs between the two datasets. TO do this, I extract a list of the acquisition IDs (`data_take_id`) for both datasets and then find the intersection of the two lists (the list object `common_data_takes`)" + "Now we have data take ID coordinates for both datasets. We want to find the common data take IDs between the two datasets. To do this, I extract a list of the acquisition IDs (`data_take_id`) for both datasets and then find the intersection of the two lists (the list object `common_data_takes`)" ] }, { @@ -4067,7 +4067,7 @@ "id": "4ca6f9fe-5ccb-4b8e-b3b9-c16012fcbcfc", "metadata": {}, "source": [ - "It looks like there are 84 RTC images that are generated from common acquisitions between the two datasets" + "It looks like there are 83 RTC images that are generated from common acquisitions between the two datasets" ] }, { diff --git a/appendix.html b/appendix.html index f3e0917..92bb8d7 100644 --- a/appendix.html +++ b/appendix.html @@ -382,7 +382,7 @@

xr.open_mfdatas

Note

The stack I used contains multiple scenes that cover the same area of interest (multiple viewing geometries). If you wanted to select only scenes from a single viewing geometry at the expense of a denser time series, xr.open_mfdataset() might work a bit better (I didn’t try this so cannot say for sure)

-

Ultimately, I decided to use the approach of creating GDAL VRT objects, and reading those in with rioxarray.open_rasterio() to organize the data as xarray objects. This worked much better from a memory perspective but created much more work with organizing metadata and structuring the dataset in an analysis-ready format. The xr.open_mfdataset() function seems like a much more efficient approach if your dataset is well-aligned with its parameters (ie. a spatially uniform stack). While it did not end up being the best tool for this task, I decided to include the notebook with the xr.open_mfdataset() approach anyway in case it is useful to see a demonstration of this function. I learned a lot about how to structure a preprocess function and many other steps working on this example.

+

Ultimately, I decided to use the approach of creating GDAL VRT objects, and reading those in with rioxarray.open_rasterio() to organize the data as xarray objects. This worked much better from a memory perspective but created much more work with organizing metadata and structuring the dataset in an analysis-ready format. The xr.open_mfdataset() function seems like a much more efficient approach if your dataset is well-aligned with its parameters (ie. a spatially uniform stack). While it did not end up being the best tool for this task, I decided to include the notebook with the xr.open_mfdataset() approach anyway, in case it is useful to see a demonstration of this function. I learned a lot about how to structure a preprocess function and many other steps working on this example.

Take a look at the notebook using xr.open_mfdataset() to read in stacks of ASF-processed Sentinel-1 RTC imagery files here

In addition to the documentation linked above, some other useful resources for xr.open_mfdataset() that I found are:

    diff --git a/asf_inspect.html b/asf_inspect.html index 733ee0f..540ef38 100644 --- a/asf_inspect.html +++ b/asf_inspect.html @@ -1521,7 +1521,7 @@

    Quick visualization

-

It looks like there are areas affected by different types of distortion on different dates. For example, in the lower left quadrant, there is a region that is blue (5 - affected by layover) on 6/7/2010 but much of that area appears to be in radar shadow on 6/10. This pattern is present throughout much of the scene with portions of area that are affected by layover in one acquisition in shadow in the next acquisition. This is due to different viewing geometries on different orbital passes: one of the above scenes was likely collected during an ascending pass and one during a descending.

+

It looks like there are areas affected by different types of distortion on different dates. For example, in the lower left quadrant, there is a region that is blue (5 - affected by layover) on 6/7/2021 but much of that area appears to be in radar shadow on 6/10/2021. This pattern is present throughout much of the scene with portions of area that are affected by layover in one acquisition in shadow in the next acquisition. This is due to different viewing geometries on different orbital passes: one of the above scenes was likely collected during an ascending pass and one during a descending.

Thanks to all the setup work we did in the previous notebook, we can confirm that:

-

Interesting, it looks like the winter and spring composites are relatively similar to one another. There also appears to be a decrease in backscatter mvoing from spring to summer.

+

Interesting, it looks like the winter and spring composites are relatively similar to one another. There also appears to be a decrease in backscatter moving from spring to summer.

Handling duplicate time steps#

diff --git a/asf_local_vrt.html b/asf_local_vrt.html index 44dca1e..b4f1fac 100644 --- a/asf_local_vrt.html +++ b/asf_local_vrt.html @@ -556,7 +556,7 @@

Utility Functions

Read in vector data#

-

We will use this vector data object later but we will read it in as a geopandas.GeoDataFrame object now. It is called PC aoi because the GeoJSON file was created off of the spatial extent of the SAR dat we will access from Microsoft Planetary Computer (PC), in order to have comparable datasets.

+

We will use this vector data object later but we will read it in as a geopandas.GeoDataFrame object now. It is called PC aoi because the GeoJSON file was created off of the spatial extent of the SAR data we will access from Microsoft Planetary Computer (PC), in order to have comparable datasets.

pc_aoi = gpd.read_file('https://github.com/e-marshall/sentinel1_rtc/raw/main/hma_rtc_aoi.geojson')
@@ -3035,7 +3035,7 @@ 

Taking a look at chunking

Clip by vector data#

-

Clip the full object by the same AOI as above. Just as in the last notebook, we will use the rioxarray.clip() method.

+

Clip the full object by the same AOI as above. We will use the rioxarray.clip() method.

vrt_clip = vrt_merge.rio.clip(pc_aoi.geometry, pc_aoi.crs)
diff --git a/dataset_comparison.html b/dataset_comparison.html
index ea535b4..5af19d9 100644
--- a/dataset_comparison.html
+++ b/dataset_comparison.html
@@ -516,7 +516,7 @@ 

Utility functions

Read in prepared data#

We can use the storemagic command %store to retrieve the variable we constructed and saved in a previous notebook, rather than having to create it again. Read more about this here

-

This let’s use call the ASF dataset (vrt_new) and PC dataset (da_pc)

+

This let’s us call the ASF dataset (vrt_new) and PC dataset (da_pc)

%store -r vrt_new da_pc
@@ -2342,7 +2342,7 @@ 

Read in prepared data

Extract common data take ID from granule IDs#

-

We want to ensure that we are performing a direct comparison of the ASF and PC datasets. To do this, we would like to use the acquisition ID that is stored in the source granule name (published by ESA). In the setup notebooks we attached the entire granule IDs of the SLC images to the ASF dataset and the GRD images to the PC dataset. In the ASF data inspection notebook, we attached data take id as a non-dimensional coordianet. Now we will do the same for the Planetary Computer dataset, extracting just the 6-digit acquisition ID from the granule ID and using this for a scene-by-scene comparison.

+

We want to ensure that we are performing a direct comparison of the ASF and PC datasets. To do this, we would like to use the acquisition ID that is stored in the source granule name (published by ESA). In the setup notebooks we attached the entire granule IDs of the SLC images to the ASF dataset and the GRD images to the PC dataset. In the ASF data inspection notebook, we attached data take id as a non-dimensional coordinate. Now we will do the same for the Planetary Computer dataset, extracting just the 6-digit acquisition ID from the granule ID and using this for a scene-by-scene comparison.

data_take_pc = [str(da_pc.isel(time=t).granule_id.values)[56:] for t in range(len(da_pc.time))]
@@ -4181,7 +4181,7 @@ 

Extract common data take ID from granule IDs

Subset to only common data takes#

-

Now we have data take ID coordinates for both datasets. We want to find the common data take IDs between the two datasets. TO do this, I extract a list of the acquisition IDs (data_take_id) for both datasets and then find the intersection of the two lists (the list object common_data_takes)

+

Now we have data take ID coordinates for both datasets. We want to find the common data take IDs between the two datasets. To do this, I extract a list of the acquisition IDs (data_take_id) for both datasets and then find the intersection of the two lists (the list object common_data_takes)

pc_data_take_ls = list(da_pc.data_take_id.values)
@@ -4203,7 +4203,7 @@ 

Subset to only common data takes.isin() method is very useful for this type of selection.

diff --git a/searchindex.js b/searchindex.js index 885339f..22f3244 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"docnames": ["Acknowledgments", "PC_RTC", "References", "Summary", "appendix", "asf_inspect", "asf_local_mf", "asf_local_vrt", "ch1_root", "ch2_root", "dataset_comparison", "intro", "rtc_timeseries", "software"], "filenames": ["Acknowledgments.md", "PC_RTC.ipynb", "References.md", "Summary.md", "appendix.md", "asf_inspect.ipynb", "asf_local_mf.ipynb", "asf_local_vrt.ipynb", "ch1_root.md", "ch2_root.md", "dataset_comparison.ipynb", "intro.md", "rtc_timeseries.ipynb", "software.ipynb"], "titles": ["Acknowledgments", "Microsoft Planetary Computer Sentinel-1 RTC Imagery", "References", "Summary", "Appendix", "ASF-processed RTC data inspection", "Xarray open_mfdataset() approach", "GDAL VRT approach", "Data cleaning and organization", "Dataset comparison and preliminary analysis", "RTC dataset comparison", "Introduction", "Applied example: RTC time series analysis", "Software + Data"], "terms": {"thi": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13], "tutori": [0, 1, 3, 5, 6, 7, 8, 9, 10, 12, 13], "wa": [0, 3, 4, 5, 6, 7, 8], "develop": [0, 1], "part": 0, "ucar": 0, "summer": [0, 5], "internship": 0, "parallel": [0, 1, 5, 6, 7, 10, 12], "comput": [0, 4, 5, 6, 7, 10, 11, 12], "scienc": [0, 1, 5, 7, 10], "siparc": [0, 6, 7], "support": 0, "nasa": [0, 1, 13], "s": [0, 1, 4, 5, 6, 7, 8, 10, 12], "open": [0, 1, 3, 6, 7, 11], "sourc": [0, 3, 5, 6, 7, 8, 11], "tool": [0, 3, 4, 7, 8, 10, 11], "framework": [0, 1], "librari": 0, "program": [0, 1], "award": 0, "80nssc22k0345": 0, "The": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13], "author": [0, 5, 6, 7, 10, 12], "grate": 0, "deepak": 0, "cherian": 0, "scott": 0, "henderson": 0, "jessica": 0, "scheick": 0, "rick": 0, "forster": 0, "insight": [0, 12], "advic": 0, "feedback": [0, 3], "dure": [0, 1, 5, 10, 12], "project": [0, 1, 3, 5, 6, 7, 10, 11, 12], "contribut": 0, "well": [0, 1, 3, 4, 6, 7, 9, 10, 11, 13], "virginia": 0, "do": [0, 1, 5, 6, 7, 10, 11, 12], "pleas": [0, 3], "direct": [0, 1, 10, 11], "correspond": 0, "emma": [0, 3], "marshal": [0, 3, 6, 7, 12], "utah": [0, 3], "edu": [0, 3], "e": [0, 1, 3, 5, 6, 7, 10, 12], "book": [1, 11, 13], "demonstr": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "how": [1, 3, 4, 5, 6, 7, 10, 12], "access": [1, 3, 4, 6, 13], "radiometr": [1, 3, 10, 11], "terrain": [1, 3, 6, 7, 10, 11], "correct": [1, 3, 4, 6, 7, 10, 11], "from": [1, 3, 4, 5, 6, 11, 12, 13], "stackstac": [1, 8, 10, 11, 13], "stand": 1, "spatio": 1, "tempor": [1, 7], "asset": 1, "catalog": [1, 3, 8], "common": [1, 4, 6, 11], "describ": 1, "geospati": [1, 13], "inform": [1, 5, 6, 7, 10, 13], "wai": [1, 3, 7, 11], "provid": [1, 6, 12], "user": [1, 4, 5, 7, 10, 12], "work": [1, 3, 5, 6, 7, 8, 10, 11, 12, 13], "commun": [1, 6, 7], "effici": [1, 4, 5, 6], "you": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13], "can": [1, 5, 6, 7, 8, 10, 11, 12, 13], "more": [1, 4, 5, 6, 7, 8, 10, 11, 12, 13], "about": [1, 4, 6, 7, 8, 10, 12, 13], "here": [1, 4, 5, 6, 7, 8, 10, 13], "checkout": 1, "python": [1, 3, 6, 7, 10, 11, 13], "techniqu": [1, 5, 7, 10, 11], "introduct": 1, "pystac": [1, 8, 13], "queri": 1, "cloud": [1, 3, 8, 11, 13], "host": [1, 3, 8, 11, 13], "dataset": [1, 3, 4, 5, 6, 7, 8, 12, 13], "observ": [1, 10, 12], "metadata": [1, 3, 4, 6, 11, 13], "object": [1, 4, 5, 6, 10, 12], "manipul": [1, 11], "organ": [1, 3, 4, 5, 10, 12], "sar": [1, 5, 6, 7, 10, 11, 12, 13], "perform": [1, 4, 6, 7, 8, 10, 11], "group": [1, 5, 11], "reduct": [1, 7, 11], "xarrrai": 1, "visual": [1, 3, 6], "facetgrid": [1, 5], "high": [1, 5, 7, 10, 12], "level": [1, 5, 7, 10, 12], "larg": [1, 3, 4, 6, 7], "store": [1, 5, 6, 7, 10, 12], "cog": [1, 13], "optim": [1, 3, 7, 8, 13], "geotiff": [1, 4, 5, 6, 7, 8, 13], "extract": [1, 5, 6], "These": [1, 5, 7, 10, 11, 12, 13], "ar": [1, 4, 5, 6, 7, 10, 11, 12, 13], "contain": [1, 3, 4, 5, 6, 7, 10, 11, 12, 13], "addit": [1, 4, 5, 7, 10, 11, 12], "exampl": [1, 3, 4, 5, 7, 9, 10, 11], "discuss": [1, 5, 7, 10, 12], "content": [1, 5, 7, 10, 12], "notebook": [1, 4, 5, 6, 7, 8, 10, 11, 12], "guid": [1, 5, 7, 10, 11, 12], "i": [1, 3, 5, 6, 7, 10, 12], "veri": [1, 3, 4, 5, 6, 7, 10, 11, 12], "help": [1, 5, 6, 7, 10, 12], "pattern": [1, 5, 7, 10, 12], "concept": [1, 5, 7, 10, 11, 12], "associ": [1, 5, 6, 7, 10, 12, 13], "code": [1, 5, 6, 7, 10, 12], "dask": [1, 5, 6, 7, 10, 12, 13], "arrai": [1, 5, 6, 7, 10, 12], "import": [1, 5, 6, 7, 10, 11, 12, 13], "xr": [1, 5, 10, 12, 13], "geopanda": [1, 5, 6, 7, 10, 12, 13], "gpd": [1, 5, 6, 7, 10, 12, 13], "matplotlib": [1, 5, 6, 7, 10, 12, 13], "pyplot": [1, 5, 6, 7, 10, 12, 13], "plt": [1, 5, 6, 7, 10, 12, 13], "numpi": [1, 5, 6, 7, 10, 12, 13], "np": [1, 5, 6, 7, 10, 12, 13], "panda": [1, 5, 6, 7, 10, 13], "pd": [1, 5, 6, 7, 10, 13], "request": [1, 13], "rich": [1, 13], "tabl": [1, 13], "planetary_comput": [1, 13], "pystac_cli": [1, 11, 13], "client": [1, 6, 13], "cartopi": 1, "shape": [1, 5, 6, 7, 10, 12, 13], "geometri": [1, 4, 5, 6, 7, 11, 12, 13], "polygon": [1, 6, 7, 12, 13], "rioxarrai": [1, 4, 5, 7, 10, 11, 13], "rio": [1, 5, 6, 7, 10, 12, 13], "ipython": [1, 13], "displai": [1, 13], "imag": [1, 5, 6, 7, 10, 11, 12, 13], "we": [1, 5, 6, 7, 9, 10, 11, 12, 13], "packag": [1, 3, 5, 6, 7, 10, 11, 12, 13], "interact": 1, "In": [1, 4, 5, 7, 10, 11, 12], "cell": [1, 5, 7], "below": [1, 6, 7, 13], "creat": [1, 4, 5, 6, 10, 12], "an": [1, 3, 4, 5, 7, 10, 11, 13], "call": [1, 5, 6, 7, 10], "method": [1, 5, 6, 7, 10], "class": 1, "establish": 1, "connect": [1, 6, 12], "url": 1, "explor": [1, 7, 10, 11, 12], "http": [1, 6, 7, 10, 12], "planetarycomput": 1, "com": [1, 6, 7, 10, 12], "api": 1, "v1": 1, "type": [1, 3, 5, 6, 7, 10, 12], "pc": [1, 5, 7, 10], "stac_vers": 1, "0": [1, 5, 6, 7, 10, 12, 13], "descript": [1, 5, 7, 10, 11], "searchabl": 1, "spatiotempor": 1, "earth": 1, "link": [1, 4, 6], "130": 1, "rel": [1, 5, 11], "self": [1, 5], "href": 1, "applic": 1, "json": 1, "root": 1, "2": [1, 5, 6, 7, 10, 12], "collect": [1, 5, 11], "3": [1, 5, 6, 7, 10, 12, 13], "conform": 1, "titl": [1, 10], "wfs3": 1, "implement": [1, 13], "server": [1, 6, 7, 8], "4": [1, 5, 6, 7, 10], "search": 1, "geo": 1, "get": [1, 6, 7, 8], "5": [1, 5, 6, 7, 10, 12, 13], "post": 1, "6": [1, 5, 6, 7, 10, 12, 13], "child": 1, "daymet": 1, "annual": 1, "pr": 1, "puerto": 1, "rico": 1, "7": [1, 5, 6, 7, 10, 12], "daili": 1, "hi": 1, "hawaii": 1, "8": [1, 5, 7, 10, 12, 13], "3dep": 1, "seamless": 1, "usg": 1, "dem": [1, 6, 7], "9": [1, 5, 6, 7, 12], "lidar": 1, "dsm": 1, "digit": [1, 7, 10], "surfac": [1, 11, 12], "model": [1, 10], "10": [1, 5, 6, 7, 10, 12, 13], "fia": 1, "forest": 1, "inventori": [1, 12], "analysi": [1, 3, 4, 6], "11": [1, 5, 6, 7, 10, 12], "12": [1, 5, 6, 7, 10, 12], "gridmet": 1, "13": [1, 5, 6, 7, 10, 12, 13], "na": 1, "north": [1, 5, 6, 7, 10, 12], "america": 1, "14": [1, 5, 6, 7, 10, 12], "monthli": 1, "15": [1, 5, 6, 7, 10, 12], "16": [1, 5, 6, 7, 10, 12], "17": [1, 5, 6, 7, 10, 12], "18": [1, 5, 6, 7, 10, 12], "gnatsgo": 1, "soil": 1, "databas": 1, "19": [1, 5, 6, 7, 10, 12], "hgb": 1, "harmon": 1, "global": [1, 5], "biomass": 1, "2010": [1, 5], "20": [1, 5, 6, 7, 10, 12], "cop": 1, "glo": 1, "30": [1, 5, 6, 7, 10, 12], "copernicu": [1, 10], "21": [1, 5, 6, 7, 10, 13], "90": [1, 5, 7, 10, 12], "22": [1, 5, 6, 7, 10], "goe": 1, "cmi": 1, "r": [1, 5, 6, 7, 10, 12], "moistur": 1, "23": [1, 5, 7, 10], "terraclim": 1, "24": [1, 5, 6, 7, 10, 12], "nex": 1, "gddp": 1, "cmip6": 1, "exchang": 1, "downscal": 1, "25": [1, 5, 6, 7, 10], "gpm": 1, "imerg": 1, "hhr": 1, "26": [1, 5, 6, 7, 10, 12], "raster": [1, 4, 5, 6, 10], "27": [1, 5, 6, 7, 10, 12], "hag": 1, "height": 1, "abov": [1, 4, 5, 6, 7, 12], "ground": [1, 10], "28": [1, 5, 7, 10, 12], "intens": [1, 6, 11], "29": [1, 5, 6, 7, 10, 12], "pointsourceid": 1, "point": [1, 6, 7], "mtb": 1, "monitor": [1, 6], "trend": 1, "burn": 1, "sever": [1, 6, 7], "31": [1, 5, 6, 7, 10], "noaa": 1, "c": [1, 5, 6, 7, 10], "cap": 1, "region": [1, 5, 6], "land": 1, "cover": [1, 4, 6, 11, 12], "chang": [1, 10, 12], "32": [1, 6, 7, 10], "copc": 1, "33": [1, 6, 7, 10, 12], "modi": 1, "64a1": 1, "061": 1, "area": [1, 4, 5, 6, 7, 10, 11, 12], "34": [1, 5, 6, 7, 10], "alo": 1, "fnf": 1, "mosaic": [1, 7], "non": [1, 5, 6, 10], "35": [1, 6, 7], "return": [1, 4, 5, 6, 7, 10, 12], "36": [1, 6, 7, 10, 12], "mobi": 1, "map": [1, 5, 6, 7, 12], "biodivers": 1, "37": [1, 6, 7, 10], "landsat": 1, "c2": 1, "l2": 1, "38": [1, 5, 6, 7, 10], "era5": 1, "39": [1, 5, 6, 7, 10], "chlori": 1, "40": [1, 6, 7, 10], "kaza": 1, "hydroforecast": 1, "kwando": 1, "upper": 1, "zambezi": 1, "river": 1, "41": [1, 7, 10], "planet": 1, "nicfi": 1, "analyt": [1, 11], "basemap": 1, "42": [1, 5, 6, 7, 10, 12], "17a2h": 1, "gross": 1, "primari": 1, "product": [1, 5, 6, 7, 10, 11], "dai": 1, "43": [1, 5, 6, 7, 10, 12], "11a2": 1, "temperatur": 1, "emiss": 1, "44": [1, 5, 6, 7, 10, 12], "45": [1, 5, 6, 7, 10, 12], "dtm": 1, "nativ": 1, "46": [1, 5, 6, 7, 10, 12], "classif": 1, "47": [1, 5, 6, 7, 10, 12], "48": [1, 5, 6, 7, 10, 12], "gap": 1, "49": [1, 5, 6, 7, 10, 12], "17a2hgf": 1, "fill": 1, "50": [1, 5, 6, 7, 10, 12], "51": [1, 5, 6, 7, 10, 12], "gbif": 1, "facil": [1, 11, 13], "52": [1, 5, 6, 7, 10, 12], "17a3hgf": 1, "net": 1, "yearli": 1, "53": [1, 5, 6, 7, 10, 12], "09a1": 1, "reflect": 1, "500m": 1, "54": [1, 5, 6, 7, 10, 12], "world": [1, 5, 6, 7, 10, 12], "3d": 1, "30m": 1, "55": [1, 5, 6, 7, 10, 12], "palsar": 1, "56": [1, 5, 6, 7, 10, 12], "deltar": 1, "water": [1, 6, 7], "avail": [1, 3, 8, 13], "57": [1, 5, 6, 7, 10, 12], "16a3gf": 1, "evapotranspir": 1, "58": [1, 7, 10], "21a2": 1, "band": [1, 6, 7, 10], "59": [1, 5, 6, 7, 10, 12], "censu": 1, "60": [1, 7, 10], "jrc": 1, "gsw": 1, "61": [1, 7], "flood": 1, "62": [1, 5, 7, 10], "43a4": 1, "nadir": 1, "brdf": 1, "adjust": 1, "nbar": 1, "63": [1, 7], "09q1": 1, "250m": 1, "64": [1, 7], "14a1": 1, "thermal": 1, "anomali": 1, "fire": 1, "65": [1, 7], "hrea": 1, "resolut": 1, "electr": 1, "66": [1, 7], "13q1": 1, "veget": 1, "indic": [1, 5], "67": [1, 7], "14a2": 1, "68": [1, 7], "l2a": 1, "2a": 1, "69": [1, 6, 7], "15a2h": 1, "leaf": 1, "index": [1, 5, 7, 12], "fpar": 1, "70": [1, 7], "11a1": 1, "71": [1, 7], "15a3h": 1, "72": [1, 7, 10], "13a1": 1, "73": [1, 6, 7], "74": [1, 7], "nrcan": 1, "landcov": 1, "canada": 1, "75": [1, 5, 7], "10a2": 1, "snow": 1, "76": [1, 7], "ecmwf": 1, "forecast": 1, "real": 1, "time": [1, 4, 6, 7, 9, 11], "77": [1, 7], "mrm": 1, "qpe": 1, "24h": [1, 10], "pass2": 1, "hour": [1, 7], "pass": [1, 5, 6, 7], "78": [1, 7, 10], "grd": [1, 10], "rang": [1, 5, 6, 7, 10, 11], "detect": [1, 10], "79": [1, 7, 10], "nasadem": 1, "hgt": 1, "v001": 1, "80": [1, 7], "io": 1, "lulc": 1, "esri": 1, "meter": [1, 10], "81": [1, 6, 7], "l1": 1, "82": [1, 7], "drcog": 1, "denver": 1, "council": 1, "govern": 1, "83": [1, 7, 10], "chesapeak": 1, "lc": 1, "84": [1, 5, 6, 7, 10, 12], "85": [1, 7, 10], "lu": 1, "86": [1, 7], "1h": 1, "pass1": 1, "87": [1, 5, 6, 7, 10, 12], "88": [1, 7, 12], "nclimgrid": 1, "u": [1, 5, 6, 7, 10, 12], "climat": 1, "grid": [1, 6, 7, 10, 11], "89": [1, 6, 7], "glm": 1, "lightn": 1, "usda": 1, "cdl": 1, "cropland": 1, "layer": [1, 5, 6, 7, 10, 12], "91": [1, 7], "eclips": 1, "urban": 1, "innov": 1, "sensor": [1, 5, 6, 7, 10, 11, 12], "92": [1, 7], "esa": [1, 10], "cci": 1, "initi": [1, 4, 6, 12], "93": [1, 7], "netcdf": 1, "94": [1, 7], "fw": 1, "nwi": 1, "nation": 1, "wetland": 1, "95": [1, 7, 10], "lcmap": 1, "conu": 1, "v13": 1, "96": [1, 5, 6, 7], "v10": 1, "97": [1, 7], "normal": 1, "tabular": 1, "98": [1, 7, 10, 12], "99": [1, 7], "100": [1, 6, 7, 10], "aster": 1, "l1t": 1, "101": [1, 7], "cil": 1, "gdpcir": 1, "cc": 1, "sa": 1, "impact": [1, 5], "research": 1, "BY": 1, "102": [1, 7], "10m": 1, "103": [1, 5, 6, 7, 12], "intact": [1, 7], "104": 1, "naip": 1, "agricultur": 1, "105": 1, "cdr": 1, "sea": 1, "whoi": 1, "106": 1, "ocean": 1, "heat": 1, "107": 1, "cc0": 1, "108": [1, 6, 7], "109": 1, "110": 1, "optimum": 1, "interpol": 1, "111": 1, "10a1": 1, "112": [1, 7, 12], "5p": 1, "113": [1, 6, 7], "olci": 1, "wfr": 1, "full": [1, 6, 7], "114": [1, 10, 12], "115": 1, "synergi": 1, "aod": 1, "aerosol": 1, "116": 1, "ndvi": 1, "spot": 1, "117": 1, "lfr": 1, "118": [1, 12], "sral": 1, "lan": 1, "radar": [1, 5, 10, 11], "altimetri": 1, "119": [1, 12], "slstr": 1, "lst": 1, "120": 1, "wst": 1, "121": 1, "wat": 1, "122": 1, "ms": 1, "build": [1, 7], "footprint": [1, 4, 6, 7, 12], "123": 1, "frp": 1, "radi": 1, "power": [1, 5, 6, 7], "124": [1, 12], "syn": 1, "125": 1, "vgp": 1, "top": [1, 6], "atmospher": 1, "126": [1, 7], "vg1": 1, "127": [1, 7], "worldcov": 1, "128": 1, "servic": [1, 8], "desc": [1, 5, 7, 12], "openapi": 1, "vnd": 1, "oai": 1, "version": [1, 5, 13], "129": 1, "doc": 1, "text": [1, 7, 10, 12], "html": 1, "document": [1, 4], "conformsto": 1, "www": 1, "opengi": 1, "spec": [1, 10], "cql2": 1, "conf": 1, "basic": 1, "ogcapi": 1, "featur": [1, 11], "core": [1, 10, 12, 13], "geojson": [1, 6, 7, 12], "oas30": 1, "filter": [1, 5, 6, 7, 10, 12], "stacspec": 1, "org": 1, "rc": 1, "field": 1, "sort": [1, 6], "now": [1, 5, 6, 7, 10, 12], "defin": [1, 4, 5, 6, 7], "some": [1, 4, 6, 7, 10, 12], "paramet": [1, 4, 5, 6, 7, 10, 12], "specif": [1, 5, 11, 12, 13], "geograph": 1, "interest": [1, 4, 5, 6, 7, 12], "function": [1, 3, 4, 6, 11], "points2coord": [1, 6, 7, 10], "just": [1, 6, 7, 10], "format": [1, 4, 6, 11], "coordin": [1, 5, 6, 10, 11, 12], "ll": [1, 5, 6, 7], "bound": [1, 7, 10, 12], "box": [1, 7], "list": [1, 5, 6, 7, 10], "def": [1, 5, 6, 7, 10, 12], "pt_l": [1, 6, 7], "should": [1, 6, 7], "xmin": [1, 6, 7, 12], "ymin": [1, 6, 7, 12], "xmax": [1, 6, 7, 12], "ymax": [1, 6, 7, 12], "coords_l": [1, 6, 7], "specifi": [1, 4, 6, 7, 10], "re": [1, 7], "time_rang": 1, "2021": [1, 5, 6, 7, 10, 12], "01": [1, 5, 6, 7, 10, 12], "2022": [1, 5, 6, 7, 10, 12], "08": [1, 5, 6, 7, 10, 12], "bbox": 1, "214935": 1, "92767": 1, "302": 1, "034": 1, "bbox_coord": 1, "entri": 1, "match": [1, 6, 7, 10], "our": [1, 6, 7], "criteria": 1, "aoi": [1, 7], "datetim": [1, 5, 6, 7, 10, 13], "get_all_item": 1, "len": [1, 5, 6, 7, 10], "home": [1, 6, 7, 10, 12], "emmamarshal": [1, 6, 7, 10, 12], "miniconda3": [1, 5, 10, 12], "env": [1, 5, 10, 12], "s1rtc": [1, 5], "lib": [1, 5, 10, 12], "python3": [1, 5, 10, 12], "site": [1, 5, 10, 12], "item_search": 1, "py": [1, 5, 7, 10, 12], "850": 1, "futurewarn": 1, "deprec": [1, 5], "item_collect": 1, "instead": [1, 5, 7, 8, 10], "warn": 1, "143": 1, "ve": [1, 7, 12], "few": [1, 5, 7], "instanc": 1, "check": [1, 6, 7, 11], "out": [1, 3, 5, 7, 8, 10, 11], "better": [1, 3, 4], "familiar": [1, 5, 7], "yourself": 1, "print": [1, 6, 7], "itemsearch": 1, "itemcollect": 1, "see": [1, 4, 5, 6, 7, 10, 13], "via": [1, 7], "embed": 1, "interfac": 1, "right": [1, 6, 10], "featurecollect": 1, "s1a_iw_grdh_1sdv_20220801t121402_20220801t121427_044359_054b39_rtc": [1, 10], "properti": 1, "01t12": [1, 5, 6, 7, 10, 12], "610123z": 1, "platform": [1, 10, 13], "1a": [1, 10], "s1": [1, 6, 7, 10], "28151": 1, "21598": 1, "proj": [1, 10], "421830": 1, "2916240": 1, "703340": 1, "3132220": 1, "epsg": [1, 5, 6, 7, 10, 12], "32645": [1, 5, 6, 7, 10, 12], "end_datetim": [1, 10], "109058": [1, 10], "00": [1, 5, 6, 7, 10], "constel": [1, 10], "transform": [1, 10, 11], "datatake_id": [1, 10], "346937": [1, 10], "start_datetim": [1, 10], "02": [1, 5, 6, 7, 10, 12], "111187": [1, 10], "orbit_sourc": [1, 10], "resorb": [1, 10], "slice_numb": [1, 10], "total_slic": [1, 10], "looks_rang": [1, 10], "sat": [1, 10], "orbit_st": [1, 10], "ascend": [1, 5, 10], "product_typ": [1, 10], "looks_azimuth": [1, 10], "polar": [1, 5, 6, 7, 10], "vv": [1, 5, 6, 7, 10, 12], "vh": [1, 5, 6, 7, 10, 12], "frequency_band": [1, 10], "absolute_orbit": [1, 10], "44359": [1, 10], "relative_orbit": [1, 10], "processing_level": [1, 10], "instrument_mod": [1, 10], "iw": [1, 5, 6, 7, 10, 12], "center_frequ": [1, 10], "405": [1, 10], "resolution_rang": [1, 10], "product_timeli": [1, 10], "fast": [1, 10], "resolution_azimuth": [1, 10], "pixel_spacing_rang": [1, 10], "observation_direct": [1, 10], "pixel_spacing_azimuth": [1, 10], "looks_equivalent_numb": [1, 10], "instrument_configuration_id": [1, 10], "platform_international_design": [1, 10], "2014": [1, 10], "016a": [1, 10], "2061172": 1, "844139": 1, "2101121": 1, "7832745": 1, "2347885": 1, "7815176": 1, "2165994": 1, "7561398": 1, "2711759": 1, "6975806": 1, "277775": 1, "4645268": 1, "3275919": 1, "3771174": 1, "3188758": 1, "2312756": 1, "3555363": 1, "1611209": 1, "4991766": 1, "3666859": 1, "9846704": 1, "7769876": 1, "9224408": 1, "3277712": 1, "7383568": 1, "2896054": 1, "2107705": 1, "881718": 1, "parent": 1, "licens": 1, "int": 1, "247904": 1, "690755": 1, "sentinel_data_legal_notic": 1, "derived_from": 1, "s1a_iw_grdh_1sdv_20220801t121402_20220801t121427_044359_054b39": [1, 10], "preview": 1, "sentinel1euwestrtc": 1, "blob": 1, "window": 1, "sentinel1": 1, "dv": [1, 5, 7, 10, 12], "s1a_iw_grdh_1sdv_20220801t121402_20220801t121427_044359_054b39_e902": 1, "measur": 1, "tiff": [1, 6], "profil": 1, "vertic": [1, 10], "transmit": [1, 10], "horizont": [1, 10], "receiv": [1, 10], "gamma": [1, 6, 7, 10], "naught": [1, 10], "valu": [1, 5, 6, 10], "signal": [1, 10], "appli": [1, 6, 7, 10], "file": [1, 4, 5, 7, 10, 12, 13], "size": [1, 5, 6, 7, 10], "1864400774": 1, "checksum": 1, "60989fa489c1ebf4ea27de1d3c560450": 1, "nodata": [1, 10], "32768": [1, 10], "data_typ": [1, 10], "float32": [1, 5, 6, 7, 10, 12], "spatial_resolut": [1, 10], "role": 1, "1874779451": 1, "8f4244723d81c5cacb5045f13aba68c7": 1, "tilejson": 1, "tile_format": 1, "png": 1, "express": 1, "03": [1, 5, 6, 7, 10, 12], "2b": 1, "log": 1, "2810e": 1, "280": 1, "05": [1, 5, 6, 7, 10, 12], "2f": 1, "3b0": 1, "exp": 1, "28log": 1, "3b1": 1, "045": 1, "asset_as_band": 1, "true": [1, 5, 6, 7, 10], "rescal": 1, "2c": 1, "8000": 1, "2c1": 1, "000": [1, 6, 7], "default": 1, "render": 1, "tile": [1, 7], "rendered_preview": 1, "overview": 1, "20611723": 1, "36668589": 1, "98467037": 1, "28960544": 1, "stac_extens": 1, "extens": [1, 7, 13], "github": [1, 3, 4, 6, 7, 12, 13], "schema": 1, "eo": 1, "v2": 1, "s1a_iw_grdh_1sdv_20220727t120554_20220727t120619_044286_05491d_rtc": [1, 10], "07": [1, 5, 6, 7, 10, 12], "27t12": [1, 5, 6, 7, 10, 12], "06": [1, 5, 6, 7, 10, 12], "953202z": 1, "28423": 1, "21970": 1, "618250": 1, "2960450": 1, "902480": 1, "3180150": 1, "452211": [1, 10], "346397": [1, 10], "454193": [1, 10], "44286": [1, 10], "9801183": 1, "0121865": 1, "9939426": 1, "1729184": 1, "7252634": 1, "6819044": 1, "2182955": 1, "2798472": 1, "3561865": 1, "7231858": 1, "3304652": 1, "5843394": 1, "3772026": 1, "5223238": 1, "3589031": 1, "4089501": 1, "4010815": 1, "3368619": 1, "3797299": 1, "3022315": 1, "4165088": 1, "206452": 1, "4049479": 1, "0894004": 1, "4758345": 1, "7595977": 1, "s1a_iw_grdh_1sdv_20220727t120554_20220727t120619_044286_05491d": [1, 10], "s1a_iw_grdh_1sdv_20220727t120554_20220727t120619_044286_05491d_8a6c": 1, "1848866687": 1, "872821e94ebf45c9cc9998398809b732": 1, "1857450946": 1, "addc7ec51af749c52f4edeb7e8e89044": 1, "75959774": 1, "s1a_iw_grdh_1sdv_20220723t000320_20220723t000345_044220_05471e_rtc": [1, 10], "23t00": [1, 7, 10], "650978z": 1, "27531": 1, "21084": 1, "524490": 1, "2980820": 1, "799800": 1, "3191660": 1, "150333": [1, 10], "345886": [1, 10], "151622": [1, 10], "descend": [1, 5, 10], "44220": [1, 10], "8044214": 1, "0231057": 1, "8292935": 1, "2747258": 1, "9033439": 1, "4312625": 1, "9219145": 1, "6326771": 1, "9527268": 1, "678662": 1, "9294684": 1, "8243024": 1, "9444494": 1, "9504536": 1, "9877134": 1, "0016586": 1, "9712875": 1, "0843713": 1, "9978829": 1, "148287": 1, "9733431": 1, "1919392": 1, "026332": 1, "2909889": 1, "0497456": 1, "4415936": 1, "5583275": 1, "8401155": 1, "4258944": 1, "1939869": 1, "3053834": 1, "3292904": 1, "7849689": 1, "9225324": 1, "777233": 1, "9949089": 1, "s1a_iw_grdh_1sdv_20220723t000320_20220723t000345_044220_05471": [1, 10], "s1a_iw_grdh_1sdv_20220723t000320_20220723t000345_044220_05471e_f9a0": 1, "1837791533": 1, "339b9e17610393f59798e84743bcf519": 1, "1847106635": 1, "efd83657cbc9bf43a729679c789bc5cf": 1, "30538337": 1, "92253241": 1, "04974562": 1, "84011547": 1, "s1a_iw_grdh_1sdv_20220720t121401_20220720t121426_044184_054615_rtc": [1, 10], "20t12": [1, 5, 6, 7, 10, 12], "801000z": 1, "28149": 1, "421810": 1, "2916230": 1, "703300": 1, "3132210": 1, "299940": [1, 10], "345621": [1, 10], "302060": [1, 10], "44184": [1, 10], "2059148": 1, "8440476": 1, "2100172": 1, "7823712": 1, "2345875": 1, "7812457": 1, "2161935": 1, "7561375": 1, "27067": 1, "6973974": 1, "2773714": 1, "4643442": 1, "3267796": 1, "3776551": 1, "3184707": 1, "2314542": 1, "355234": 1, "1610293": 1, "4988763": 1, "3665946": 1, "9842682": 1, "7769932": 1, "9221361": 1, "3276852": 1, "7378471": 1, "2896119": 1, "2105673": 1, "8817168": 1, "s1a_iw_grdh_1sdv_20220720t121401_20220720t121426_044184_054615": [1, 10], "s1a_iw_grdh_1sdv_20220720t121401_20220720t121426_044184_054615_05d6": 1, "1865254106": 1, "19af748f6048807df6820f3ee8ef8a22": 1, "1874494482": 1, "06cdb2d937ace0ed521ba2cd2d284d0c": 1, "20591478": 1, "36659455": 1, "98426824": 1, "28961193": 1, "s1a_iw_grdh_1sdv_20220715t120553_20220715t120618_044111_0543e4_rtc": [1, 10], "15t12": [1, 5, 6, 7, 10, 12], "242032z": 1, "28422": 1, "21971": 1, "618260": 1, "2960440": 1, "741751": [1, 10], "345060": [1, 10], "742314": [1, 10], "44111": [1, 10], "980219": 1, "0121844": 1, "9939394": 1, "1728283": 1, "2183985": 1, "2799366": 1, "3563893": 1, "7231838": 1, "3305665": 1, "5843384": 1, "3773038": 1, "5223228": 1, "3590053": 1, "4090394": 1, "4011825": 1, "3368609": 1, "4166086": 1, "2063607": 1, "4050488": 1, "0893993": 1, "4759362": 1, "7596869": 1, "s1a_iw_grdh_1sdv_20220715t120553_20220715t120618_044111_0543e4": [1, 10], "s1a_iw_grdh_1sdv_20220715t120553_20220715t120618_044111_0543e4_34c8": 1, "1850816181": 1, "e9b56d109d15523d5f5af48949e17f6b": 1, "1858474453": 1, "d2475f94b485f5be76c848717eadfb75": 1, "21839847": 1, "75968695": 1, "99393939": 1, "s1a_iw_grdh_1sdv_20220711t000319_20220711t000344_044045_0541e4_rtc": [1, 10], "11t00": [1, 7, 10], "868452z": 1, "27533": 1, "21085": 1, "524420": 1, "799750": 1, "3191670": 1, "367804": [1, 10], "344548": [1, 10], "369100": [1, 10], "44045": [1, 10], "8034123": 1, "0230356": 1, "8288875": 1, "2746438": 1, "9064322": 1, "4487897": 1, "9210878": 1, "6320631": 1, "9520106": 1, "6784066": 1, "9281308": 1, "8236091": 1, "9438403": 1, "9504666": 1, "9870322": 1, "0027558": 1, "9708784": 1, "08429": 1, "9971735": 1, "1483927": 1, "9727227": 1, "1915919": 1, "0256243": 1, "291185": 1, "0493377": 1, "4416027": 1, "5575075": 1, "8401189": 1, "4253861": 1, "1942593": 1, "3047769": 1, "3292917": 1, "7844658": 1, "9225423": 1, "7764343": 1, "9951953": 1, "s1a_iw_grdh_1sdv_20220711t000319_20220711t000344_044045_0541e4": [1, 10], "s1a_iw_grdh_1sdv_20220711t000319_20220711t000344_044045_0541e4_1de4": 1, "1839101772": 1, "1a976d45a74893b33182617fa98b6e88": 1, "1845891804": 1, "5d55834b5c799dc6feb4b023ca472b3d": 1, "30477686": 1, "92254234": 1, "84011886": 1, "s1a_iw_grdh_1sdv_20220708t121400_20220708t121425_044009_0540d0_rtc": [1, 10], "08t12": [1, 5, 6, 7, 10, 12], "035532z": 1, "28148": 1, "421800": 1, "703280": 1, "534456": [1, 10], "344272": [1, 10], "536608": [1, 10], "44009": [1, 10], "2058132": 1, "844047": 1, "2099157": 1, "7823706": 1, "2344841": 1, "7815159": 1, "2160914": 1, "7562271": 1, "2705686": 1, "6973968": 1, "2772702": 1, "4643437": 1, "3266785": 1, "3776546": 1, "3184724": 1, "2311834": 1, "355132": 1, "1612093": 1, "4987761": 1, "3665942": 1, "922133": 1, "3275047": 1, "s1a_iw_grdh_1sdv_20220708t121400_20220708t121425_044009_0540d0": [1, 10], "s1a_iw_grdh_1sdv_20220708t121400_20220708t121425_044009_0540d0_8484": 1, "1866948737": 1, "d2bdfaa2d429dbd99fa6894ba369ffe7": 1, "1876009804": 1, "0f956036e5a9ef1d0bdb4374cd1e1ad0": 1, "20581323": 1, "s1a_iw_grdh_1sdv_20220703t120553_20220703t120618_043936_053ea7_rtc": [1, 10], "03t12": [1, 5, 6, 7, 10, 12], "553402z": 1, "28425": 1, "618180": 1, "902430": 1, "3180140": 1, "052440": [1, 10], "343719": [1, 10], "054364": [1, 10], "43936": [1, 10], "9817385": 1, "012513": 1, "9934359": 1, "1728426": 1, "7245453": 1, "681834": 1, "2174789": 1, "2797643": 1, "354868": 1, "7231987": 1, "329755": 1, "5842559": 1, "376287": 1, "5219718": 1, "3578929": 1, "4090502": 1, "4002673": 1, "3364187": 1, "3791282": 1, "3025985": 1, "4160075": 1, "2067278": 1, "4041401": 1, "0893182": 1, "4751307": 1, "7596051": 1, "s1a_iw_grdh_1sdv_20220703t120553_20220703t120618_043936_053ea7": [1, 10], "s1a_iw_grdh_1sdv_20220703t120553_20220703t120618_043936_053ea7_a796": 1, "1849774072": 1, "e80aed7be4b1c2079ec518554f1d569d": 1, "1857942688": 1, "192cb1a0bbe3477346bb2f4e9540a696": 1, "21747889": 1, "75960507": 1, "99343589": 1, "68183403": 1, "s1a_iw_grdh_1sdv_20220629t000318_20220629t000343_043870_053cb6_rtc": 1, "29t00": [1, 5, 6, 7, 10, 12], "187957z": 1, "27534": 1, "524390": 1, "799730": 1, "686526": 1, "343222": 1, "689387": [1, 10], "43870": 1, "8032467": 1, "0244824": 1, "828351": 1, "2733916": 1, "9060256": 1, "4487079": 1, "9208854": 1, "6320673": 1, "9517092": 1, "6785033": 1, "9279037": 1, "8227118": 1, "9436348": 1, "9503808": 1, "986735": 1, "0030329": 1, "9707767": 1, "0842922": 1, "9968709": 1, "1484896": 1, "9725217": 1, "1916864": 1, "0253213": 1, "2912819": 1, "0492331": 1, "4415148": 1, "5574045": 1, "840029": 1, "4251809": 1, "1938989": 1, "3046763": 1, "3294725": 1, "7770573": 1, "0000551": 1, "s1a_iw_grdh_1sdv_20220629t000318_20220629t000343_043870_053cb6": 1, "s1a_iw_grdh_1sdv_20220629t000318_20220629t000343_043870_053cb6_0cc8": 1, "1839072769": 1, "c57db192d794784a1021cb1d78861c73": 1, "1847774838": 1, "8e007e1c3e68c923bec68a06995785b2": 1, "30467627": 1, "04923313": 1, "84002903": 1, "s1a_iw_grdh_1sdv_20220626t121359_20220626t121424_043834_053ba2_rtc": [1, 10], "26t12": [1, 5, 6, 7, 10, 12], "455112z": 1, "21599": 1, "2916210": 1, "3132200": 1, "954817": [1, 10], "342946": [1, 10], "955407": [1, 10], "43834": [1, 10], "2099137": 1, "7826414": 1, "2162963": 1, "7559575": 1, "3184713": 1, "2313639": 1, "3551315": 1, "1612996": 1, "4987764": 1, "3665039": 1, "9843656": 1, "7768113": 1, "9222341": 1, "3275033": 1, "7378457": 1, "2895217": 1, "210872": 1, "8817186": 1, "s1a_iw_grdh_1sdv_20220626t121359_20220626t121424_043834_053ba2": [1, 10], "s1a_iw_grdh_1sdv_20220626t121359_20220626t121424_043834_053ba2_5e9d": 1, "1865666154": 1, "fff48cb7acfe22ccb7c9bdeebb74cca0": 1, "1873857630": 1, "50d6939790b7d5276c88cb729eb30f62": 1, "36650391": 1, "98436564": 1, "s1a_iw_grdh_1sdv_20220621t120552_20220621t120617_043761_053978_rtc": [1, 10], "21t12": [1, 5, 6, 7, 10, 12], "04": [1, 5, 6, 7, 10, 12], "879869z": 1, "618170": 1, "902420": 1, "379612": [1, 10], "342392": [1, 10], "380127": [1, 10], "43761": [1, 10], "9820429": 1, "0125968": 1, "9933352": 1, "1728455": 1, "7245516": 1, "6820142": 1, "2174799": 1, "2798545": 1, "3297539": 1, "5841657": 1, "3762859": 1, "5218815": 1, "3578918": 1, "40896": 1, "s1a_iw_grdh_1sdv_20220621t120552_20220621t120617_043761_053978": [1, 10], "s1a_iw_grdh_1sdv_20220621t120552_20220621t120617_043761_053978_2f7a": 1, "1849885174": 1, "f4763e391743697dc59101187273a5d7": 1, "1857566220": 1, "f7d66e40e99ba15206e705df6d6922a": 1, "21747992": 1, "99333519": 1, "68201417": 1, "s1a_iw_grdh_1sdv_20220617t000317_20220617t000342_043695_053770_rtc": [1, 10], "17t00": [1, 5, 6, 7, 10, 12], "273763z": 1, "27524": 1, "21082": 1, "524590": 1, "2980850": 1, "799830": 1, "773155": [1, 10], "341872": [1, 10], "774371": [1, 10], "43695": [1, 10], "8054126": 1, "0224544": 1, "8297935": 1, "2745352": 1, "9035668": 1, "4281906": 1, "9235936": 1, "6386858": 1, "953221": 1, "6782004": 1, "9319127": 1, "8510422": 1, "9455014": 1, "9517842": 1, "9884069": 1, "001012": 1, "9859715": 1, "1884168": 1, "0502607": 1, "4417624": 1, "5591481": 1, "8402023": 1, "4264053": 1, "1943464": 1, "3060925": 1, "3298305": 1, "7850761": 1, "922801": 1, "7784321": 1, "9945244": 1, "s1a_iw_grdh_1sdv_20220617t000317_20220617t000342_043695_053770": [1, 10], "s1a_iw_grdh_1sdv_20220617t000317_20220617t000342_043695_053770_da89": 1, "1841082070": 1, "c14508997d33fbfac8cd6395a9095acb": 1, "1848322094": 1, "b6c6313bf5e12268b705d01e8515b9a7": 1, "30609246": 1, "92280096": 1, "84020233": 1, "s1a_iw_grdh_1sdv_20220614t121359_20220614t121424_043659_05365f_rtc": [1, 10], "14t12": [1, 5, 6, 7, 10, 12], "513880z": 1, "28155": 1, "421870": 1, "703420": 1, "012807": [1, 10], "341599": [1, 10], "014953": [1, 10], "43659": [1, 10], "2065215": 1, "8444121": 1, "2108167": 1, "7840909": 1, "2352954": 1, "7816107": 1, "2175146": 1, "7558741": 1, "2721888": 1, "6977664": 1, "2791918": 1, "4645342": 1, "3291104": 1, "3768539": 1, "3194757": 1, "2322716": 1, "3731357": 1, "082024": 1, "4999784": 1, "3666887": 1, "9854746": 1, "7769763": 1, "9230516": 1, "3280336": 1, "7392742": 1, "2895938": 1, "2116847": 1, "8817232": 1, "s1a_iw_grdh_1sdv_20220614t121359_20220614t121424_043659_05365f": [1, 10], "s1a_iw_grdh_1sdv_20220614t121359_20220614t121424_043659_05365f_0a74": 1, "1865314824": 1, "fe8622562d9b1dc59b3f7e53b1078981": 1, "1873669327": 1, "4027204a99723c279f228ef43da341e3": 1, "20652146": 1, "98547463": 1, "28959376": 1, "s1a_iw_grdh_1sdv_20220609t120551_20220609t120616_043586_053436_rtc": [1, 10], "09t12": [1, 5, 6, 7, 10, 12], "189105z": 1, "28427": 1, "618110": 1, "902380": 1, "09": [1, 5, 6, 7, 10, 12], "688822": [1, 10], "341046": [1, 10], "43586": [1, 10], "9814389": 1, "0126096": 1, "992731": 1, "1728627": 1, "7239388": 1, "6820311": 1, "2168682": 1, "27986": 1, "3539541": 1, "7231174": 1, "3291473": 1, "5842618": 1, "3756785": 1, "5218875": 1, "357285": 1, "4089659": 1, "3996598": 1, "3363345": 1, "3787274": 1, "3028733": 1, "4157046": 1, "2067309": 1, "4035362": 1, "0894145": 1, "474628": 1, "7596103": 1, "s1a_iw_grdh_1sdv_20220609t120551_20220609t120616_043586_053436": [1, 10], "s1a_iw_grdh_1sdv_20220609t120551_20220609t120616_043586_053436_3a38": 1, "1849172623": 1, "f3cf342914cb73f3e9e6895d28744b4": 1, "1856750734": 1, "5fb29759358b5622df056dfcdbcfb31b": 1, "21686823": 1, "99273099": 1, "68203106": 1, "s1a_iw_grdh_1sdv_20220605t000317_20220605t000342_043520_05323c_rtc": [1, 10], "05t00": [1, 5, 6, 7, 10, 12], "836741z": 1, "27532": 1, "524430": 1, "2980830": 1, "3191680": 1, "336084": [1, 10], "340540": [1, 10], "337399": [1, 10], "43520": [1, 10], "8035152": 1, "0231237": 1, "8288853": 1, "2745536": 1, "9064227": 1, "448429": 1, "9211939": 1, "6322412": 1, "9521143": 1, "6784946": 1, "9281283": 1, "8235189": 1, "9438378": 1, "9503765": 1, "9871338": 1, "0027536": 1, "9709825": 1, "0843779": 1, "9972752": 1, "1483905": 1, "9728269": 1, "1916798": 1, "0257261": 1, "2911827": 1, "0494423": 1, "4416906": 1, "5578155": 1, "8402078": 1, "4253854": 1, "1940788": 1, "3048774": 1, "3291109": 1, "7844681": 1, "9226325": 1, "7765394": 1, "9953737": 1, "s1a_iw_grdh_1sdv_20220605t000317_20220605t000342_043520_05323c": [1, 10], "s1a_iw_grdh_1sdv_20220605t000317_20220605t000342_043520_05323c_8d59": 1, "1840514683": 1, "921628446b5df1c85eb2fed15471588d": 1, "1847526531": 1, "ca11c29d5d33f030432db68a0ca2cb01": 1, "30487745": 1, "92263252": 1, "04944227": 1, "84020785": 1, "s1a_iw_grdh_1sdv_20220602t121358_20220602t121423_043484_053126_rtc": [1, 10], "02t12": [1, 5, 6, 7, 10, 12], "897104z": 1, "28147": 1, "703270": 1, "396823": [1, 10], "340262": [1, 10], "397386": [1, 10], "43484": [1, 10], "2058139": 1, "8439567": 1, "2095097": 1, "7823683": 1, "2342811": 1, "7815148": 1, "2158898": 1, "7560455": 1, "2702649": 1, "697305": 1, "2769672": 1, "4642518": 1, "3264828": 1, "3765704": 1, "3181683": 1, "2313625": 1, "3549312": 1, "1610279": 1, "4984761": 1, "3664126": 1, "984064": 1, "7768155": 1, "9220304": 1, "3274159": 1, "7375399": 1, "2895256": 1, "s1a_iw_grdh_1sdv_20220602t121358_20220602t121423_043484_053126": [1, 10], "s1a_iw_grdh_1sdv_20220602t121358_20220602t121423_043484_053126_4e1c": 1, "1865022621": 1, "914372d96022b72155e6136d84a33a38": 1, "1872655875": 1, "a79077dba129fe886ea3a6d49a13f8fa": 1, "20581389": 1, "36641257": 1, "98406404": 1, "28952559": 1, "s1a_iw_grdh_1sdv_20220528t120550_20220528t120615_043411_052f0a_rtc": [1, 10], "28t12": [1, 5, 6, 7, 10, 12], "110968z": 1, "28424": 1, "618210": 1, "902450": 1, "610707": [1, 10], "339722": [1, 10], "611230": [1, 10], "43411": [1, 10], "9800177": 1, "0121886": 1, "9936373": 1, "1728369": 1, "7247527": 1, "6819185": 1, "2178877": 1, "2798509": 1, "3555779": 1, "7231918": 1, "3301602": 1, "5842521": 1, "3766964": 1, "5223288": 1, "3584964": 1, "4087735": 1, "4006772": 1, "3368659": 1, "3794291": 1, "302415": 1, "4162094": 1, "2067258": 1, "4045457": 1, "0894946": 1, "4755329": 1, "7596009": 1, "s1a_iw_grdh_1sdv_20220528t120550_20220528t120615_043411_052f0a": [1, 10], "s1a_iw_grdh_1sdv_20220528t120550_20220528t120615_043411_052f0a_0446": 1, "1850730748": 1, "bc70bafede30bbdf5fb2fb82fb4461c": 1, "1858400097": 1, "d582bf5f3ff6999d49eb3460d2db14ea": 1, "21788771": 1, "75960088": 1, "99363729": 1, "68191847": 1, "s1a_iw_grdh_1sdv_20220521t121357_20220521t121422_043309_052c00_rtc": [1, 10], "786375z": 1, "28153": 1, "421860": 1, "2916220": 1, "703390": 1, "285304": [1, 10], "338944": [1, 10], "287447": [1, 10], "43309": [1, 10], "2064206": 1, "8443213": 1, "210615": 1, "7839092": 1, "2351945": 1, "7815198": 1, "2173116": 1, "755873": 1, "2718852": 1, "6976746": 1, "2789888": 1, "4646234": 1, "3289065": 1, "3771237": 1, "3192737": 1, "2322706": 1, "372935": 1, "0818426": 1, "4998786": 1, "3665981": 1, "9852736": 1, "7769791": 1, "9228496": 1, "3280364": 1, "7390703": 1, "2895964": 1, "2114822": 1, "8816318": 1, "s1a_iw_grdh_1sdv_20220521t121357_20220521t121422_043309_052c00": [1, 10], "s1a_iw_grdh_1sdv_20220521t121357_20220521t121422_043309_052c00_4f15": 1, "1865470343": 1, "9a148c01c3d76af29f239998b25907ad": 1, "1872975938": 1, "0ee0d8b9d3d0e4f4c1864942a0b56c0f": 1, "20642056": 1, "36659805": 1, "98527357": 1, "28959635": 1, "s1a_iw_grdh_1sdv_20220516t120549_20220516t120614_043236_0529dd_rtc": [1, 10], "16t12": [1, 5, 6, 7, 10, 12], "314833z": 1, "618240": 1, "902460": 1, "814536": [1, 10], "338397": [1, 10], "815129": [1, 10], "43236": [1, 10], "993738": 1, "172834": 1, "7250591": 1, "68191": 1, "2181946": 1, "2799384": 1, "356085": 1, "7231868": 1, "330365": 1, "5844306": 1, "3771013": 1, "5223248": 1, "3588031": 1, "4090413": 1, "4009815": 1, "3369532": 1, "3795301": 1, "302414": 1, "4165065": 1, "2062715": 1, "4048493": 1, "0895819": 1, "s1a_iw_grdh_1sdv_20220516t120549_20220516t120614_043236_0529dd": [1, 10], "s1a_iw_grdh_1sdv_20220516t120549_20220516t120614_043236_0529dd_a510": 1, "1850677121": 1, "e6dd6168ee38d3a32f27a2a65775aec": 1, "1858485456": 1, "ed2e0e07f98c2a3e458fe81168d0f149": 1, "21819458": 1, "99373799": 1, "68191003": 1, "s1a_iw_grdh_1sdv_20220509t121356_20220509t121421_043134_0526c4_rtc": [1, 10], "980398z": 1, "28152": 1, "421850": 1, "703370": 1, "479341": [1, 10], "337604": [1, 10], "481455": [1, 10], "43134": [1, 10], "2063197": 1, "8442304": 1, "210414": 1, "7836373": 1, "2349909": 1, "781609": 1, "2170066": 1, "7559615": 1, "2715809": 1, "697673": 1, "2783816": 1, "4646203": 1, "3287048": 1, "3770325": 1, "3190728": 1, "2320891": 1, "3725311": 1, "0819311": 1, "4995783": 1, "3665067": 1, "9850709": 1, "7768917": 1, "922747": 1, "3279475": 1, "7387631": 1, "28951": 1, "s1a_iw_grdh_1sdv_20220509t121356_20220509t121421_043134_0526c4": [1, 10], "s1a_iw_grdh_1sdv_20220509t121356_20220509t121421_043134_0526c4_1bb0": 1, "1868079463": 1, "b3074f61b4988670e771e990168f53cb": 1, "1876182996": 1, "29cda12e618752246a1e3f509920bec6": 1, "20631967": 1, "36650671": 1, "98507093": 1, "28951002": 1, "s1a_iw_grdh_1sdv_20220504t120548_20220504t120613_043061_05245f_rtc": [1, 10], "04t12": [1, 5, 6, 7, 10, 12], "122366z": 1, "28428": 1, "619630": 1, "2960660": 1, "895970": 1, "3178430": 1, "622093": [1, 10], "618410": 1, "336991": [1, 10], "622638": [1, 10], "43061": [1, 10], "9842575": 1, "0125498": 1, "9952485": 1, "1727909": 1, "726387": 1, "6818734": 1, "2198247": 1, "2798336": 1, "3575016": 1, "7229022": 1, "3318833": 1, "5843258": 1, "378522": 1, "5225815": 1, "3603234": 1, "4092973": 1, "4027019": 1, "3371164": 1, "3834428": 1, "2675323": 1, "4181193": 1, "2060746": 1, "4066611": 1, "0892929": 1, "4776443": 1, "7595789": 1, "s1a_iw_grdh_1sdv_20220504t120548_20220504t120613_043061_05245f": [1, 10], "s1a_iw_grdh_1sdv_20220504t120548_20220504t120613_043061_05245f_2c7a": 1, "1851161483": 1, "dfdb50fb74a2317d861eae6cb7bed13": 1, "1859839915": 1, "0438d66c18ccb3f2cebf117c2d812d54": 1, "21982471": 1, "75957888": 1, "99524848": 1, "68187343": 1, "s1a_iw_grdh_1sdv_20220430t000314_20220430t000339_042995_05221e_rtc": [1, 10], "30t00": [1, 5, 6, 7, 10, 12], "201903z": 1, "524470": 1, "2980840": 1, "799780": 1, "701264": [1, 10], "336414": [1, 10], "702542": [1, 10], "42995": [1, 6, 10], "8039135": 1, "0229353": 1, "8289793": 1, "274281": 1, "9023405": 1, "4315541": 1, "9215": 1, "632325": 1, "9524181": 1, "6784882": 1, "9283287": 1, "8234245": 1, "9440409": 1, "9503721": 1, "987441": 1, "0028371": 1, "9710817": 1, "0842856": 1, "9975753": 1, "1482035": 1, "9730329": 1, "1917655": 1, "0259221": 1, "2909078": 1, "0495442": 1, "4416883": 1, "5580205": 1, "840207": 1, "4256917": 1, "1942584": 1, "3050801": 1, "3292911": 1, "7843697": 1, "9227247": 1, "7768392": 1, "9952776": 1, "s1a_iw_grdh_1sdv_20220430t000314_20220430t000339_042995_05221": [1, 10], "s1a_iw_grdh_1sdv_20220430t000314_20220430t000339_042995_05221e_c8b3": 1, "1835294264": 1, "2f8f8b859427c913f4c5f4f5a14da8eb": 1, "1845659694": 1, "82b4dd2b219fbae5f965e5cf5d82e3b6": 1, "30508012": 1, "92272468": 1, "04954425": 1, "s1a_iw_grdh_1sdv_20220427t121355_20220427t121420_042959_0520ee_rtc": [1, 10], "426000z": 1, "421840": 1, "703350": 1, "924939": [1, 10], "336110": [1, 10], "927061": [1, 10], "42959": [1, 10], "2062188": 1, "8441396": 1, "2103164": 1, "7830951": 1, "2348913": 1, "7813376": 1, "2165981": 1, "7563203": 1, "2712767": 1, "6976714": 1, "2777744": 1, "4646171": 1, "3280981": 1, "3770295": 1, "3187682": 1, "2323585": 1, "3555352": 1, "1613015": 1, "4992776": 1, "3665057": 1, "9847693": 1, "7768959": 1, "9225403": 1, "3276796": 1, "7384558": 1, "2894237": 1, "211279": 1, "8816306": 1, "s1a_iw_grdh_1sdv_20220427t121355_20220427t121420_042959_0520e": [1, 10], "s1a_iw_grdh_1sdv_20220427t121355_20220427t121420_042959_0520ee_baeb": 1, "1868139780": 1, "9c144ab1a19de08a087a8cee8f9f2f58": 1, "1875904277": 1, "8932f2fd6be19668190bac38047629e4": 1, "20621878": 1, "36650566": 1, "98476934": 1, "28942369": 1, "s1a_iw_grdh_1sdv_20220422t120548_20220422t120613_042886_051e96_rtc": [1, 10], "22t12": [1, 5, 6, 7, 10, 12], "051309z": 1, "551041": [1, 10], "335510": [1, 10], "551577": [1, 10], "42886": [1, 10], "9823449": 1, "0125904": 1, "7244463": 1, "6819269": 1, "3547666": 1, "7231997": 1, "3296559": 1, "5844374": 1, "376188": 1, "5221533": 1, "4002661": 1, "3363285": 1, "3791271": 1, "3025083": 1, "4160063": 1, "2066376": 1, "4752301": 1, "7595138": 1, "s1a_iw_grdh_1sdv_20220422t120548_20220422t120613_042886_051e96": [1, 10], "s1a_iw_grdh_1sdv_20220422t120548_20220422t120613_042886_051e96_444a": 1, "1850079888": 1, "1d388c296cd34b01d4c4deca99f1422": 1, "1858496026": 1, "6f266efcc7f69222e48d20697f7ae5fa": 1, "75951376": 1, "68192691": 1, "s1a_iw_grdh_1sdv_20220418t000314_20220418t000339_042820_051c63_rtc": [1, 10], "18t00": [1, 5, 6, 7, 10, 12], "603587z": 1, "524460": 1, "799770": 1, "102936": [1, 10], "334947": [1, 10], "104239": [1, 10], "42820": [1, 10], "9022371": 1, "431466": 1, "9282249": 1, "8233365": 1, "9874435": 1, "0029273": 1, "9710842": 1, "0843757": 1, "0259247": 1, "2909979": 1, "4255884": 1, "1938976": 1, "3050804": 1, "3293813": 1, "7767341": 1, "9950992": 1, "s1a_iw_grdh_1sdv_20220418t000314_20220418t000339_042820_051c63": [1, 10], "s1a_iw_grdh_1sdv_20220418t000314_20220418t000339_042820_051c63_0160": 1, "1840376768": 1, "8aa1c6a10a3619840885a31755c0d068": 1, "1847060143": 1, "91fc0952c59fc0dafca55cb2f1e38f83": 1, "30508036": 1, "s1a_iw_grdh_1sdv_20220415t121355_20220415t121420_042784_051b30_rtc": [1, 10], "711367z": 1, "210307": [1, 10], "334640": [1, 10], "212427": [1, 10], "42784": [1, 10], "2104153": 1, "7834567": 1, "2349915": 1, "7815187": 1, "2169045": 1, "7560512": 1, "2714795": 1, "6976724": 1, "2781792": 1, "4646192": 1, "3286037": 1, "377032": 1, "3189707": 1, "2322692": 1, "3724302": 1, "0819306": 1, "4994781": 1, "3665064": 1, "9849704": 1, "7768931": 1, "922646": 1, "3279489": 1, "7386597": 1, "2894211": 1, "2109749": 1, "8815386": 1, "s1a_iw_grdh_1sdv_20220415t121355_20220415t121420_042784_051b30": [1, 10], "s1a_iw_grdh_1sdv_20220415t121355_20220415t121420_042784_051b30_d3f": 1, "1868892861": 1, "3b619cfd2807f46ff13e861a03429313": 1, "1877116298": 1, "9a7de98b5c6ef5fe03e5bfb454343326": 1, "36650636": 1, "28942109": 1, "s1a_iw_grdh_1sdv_20220410t120547_20220410t120612_042711_0518c0_rtc": [1, 10], "10t12": [1, 5, 6, 7, 10, 12], "398442z": 1, "2960420": 1, "3180130": 1, "897487": [1, 10], "334016": [1, 10], "899396": [1, 10], "42711": [1, 10], "9820381": 1, "0124165": 1, "9937348": 1, "172744": 1, "7249506": 1, "6817327": 1, "2178857": 1, "2796704": 1, "3554765": 1, "7231928": 1, "3300611": 1, "5844335": 1, "3766953": 1, "5222385": 1, "3583975": 1, "408955": 1, "4006749": 1, "3366854": 1, "379428": 1, "3023248": 1, "4162082": 1, "2066355": 1, "4045434": 1, "0893141": 1, "4755317": 1, "7595106": 1, "s1a_iw_grdh_1sdv_20220410t120547_20220410t120612_042711_0518c0": [1, 10], "s1a_iw_grdh_1sdv_20220410t120547_20220410t120612_042711_0518c0_ad57": 1, "1849248469": 1, "dc4ded4cc868bfd7bdbf128b40755c07": 1, "1857800450": 1, "370dbbe6800649f6dab0845d3b3b5d3b": 1, "21788565": 1, "75951062": 1, "99373478": 1, "s1a_iw_grdh_1sdv_20220406t000313_20220406t000338_042645_051682_rtc": [1, 10], "06t00": [1, 5, 6, 7, 10, 12], "181999z": 1, "27529": 1, "21083": 1, "681256": [1, 10], "333442": [1, 10], "682743": [1, 10], "42645": [1, 10], "8039112": 1, "0228452": 1, "8290894": 1, "2746397": 1, "9023381": 1, "4314639": 1, "9214952": 1, "6321447": 1, "9524157": 1, "678398": 1, "9441448": 1, "9504601": 1, "9874385": 1, "002747": 1, "9975778": 1, "1482937": 1, "9730304": 1, "1916754": 1, "0260316": 1, "2911759": 1, "0495468": 1, "4417784": 1, "5584305": 1, "8402053": 1, "4257925": 1, "1939872": 1, "3052825": 1, "3293809": 1, "7846715": 1, "9227187": 1, "7768369": 1, "9951874": 1, "s1a_iw_grdh_1sdv_20220406t000313_20220406t000338_042645_051682": [1, 10], "s1a_iw_grdh_1sdv_20220406t000313_20220406t000338_042645_051682_ff5d": 1, "1839808152": 1, "74d860c0f0de2a006b6e029b8f6773e3": 1, "1846408660": 1, "8a0842501473ea58f12928031b306a93": 1, "30528253": 1, "92271872": 1, "04954684": 1, "s1a_iw_grdh_1sdv_20220403t121355_20220403t121420_042609_05154a_rtc": [1, 10], "585924z": 1, "28170": 1, "421570": 1, "2916200": 1, "3132180": 1, "084951": [1, 10], "333130": [1, 10], "086898": [1, 10], "preorb": [1, 10], "42609": [1, 10], "2034604": 1, "8463805": 1, "2093067": 1, "7823671": 1, "2341796": 1, "7815142": 1, "2156862": 1, "7561346": 1, "2700615": 1, "6973942": 1, "2768677": 1, "4639805": 1, "3263828": 1, "3763893": 1, "3179652": 1, "231542": 1, "3547288": 1, "1611172": 1, "4983763": 1, "3663219": 1, "9839619": 1, "7767267": 1, "922032": 1, "3275061": 1, "7374335": 1, "2892562": 1, "2107718": 1, "8815375": 1, "s1a_iw_grdh_1sdv_20220403t121355_20220403t121420_042609_05154a": [1, 10], "s1a_iw_grdh_1sdv_20220403t121355_20220403t121420_042609_05154a_a72b": 1, "1868994854": 1, "0083767d8612852440a827fee64becb3": 1, "1877132508": 1, "d65e427c9d9cd02d63735ed3dcf51796": 1, "20346043": 1, "36632192": 1, "98396194": 1, "28925621": 1, "s1a_iw_grdh_1sdv_20220329t120547_20220329t120612_042536_0512d7_rtc": [1, 10], "29t12": [1, 5, 6, 7, 10, 12], "140262z": 1, "28426": 1, "618160": 1, "640119": [1, 10], "332503": [1, 10], "640405": [1, 10], "42536": [1, 10], "9823401": 1, "0124101": 1, "9934295": 1, "1726625": 1, "7245421": 1, "681744": 1, "2173759": 1, "2796749": 1, "3545637": 1, "7232017": 1, "3295524": 1, "5842579": 1, "3760845": 1, "5219738": 1, "3576895": 1, "4089619": 1, "4000652": 1, "3364208": 1, "3790272": 1, "3025995": 1, "4159077": 1, "2068191": 1, "4039384": 1, "0893202": 1, "4750267": 1, "7593353": 1, "s1a_iw_grdh_1sdv_20220329t120547_20220329t120612_042536_0512d7": [1, 10], "s1a_iw_grdh_1sdv_20220329t120547_20220329t120612_042536_0512d7_2f9f": 1, "1851366425": 1, "e0ae64a9ff78467d090c853e5ad141b3": 1, "1859964499": 1, "b6be367b82761770f77554a188f62277": 1, "21737592": 1, "75933533": 1, "99342947": 1, "68174395": 1, "s1a_iw_grdh_1sdv_20220325t000313_20220325t000338_042470_051096_rtc": [1, 10], "25t00": [1, 5, 6, 7, 10, 12], "139523z": 1, "638828": [1, 10], "331926": [1, 10], "640217": [1, 10], "42470": [1, 10], "8037166": 1, "0231197": 1, "8289885": 1, "2746417": 1, "9017413": 1, "4318372": 1, "9212903": 1, "6320588": 1, "9522131": 1, "6784023": 1, "9281235": 1, "8233386": 1, "9439393": 1, "9503743": 1, "9873419": 1, "0029295": 1, "97098": 1, "0842878": 1, "9974736": 1, "1482058": 1, "9729286": 1, "1916776": 1, "0258228": 1, "2910002": 1, "558123": 1, "8402066": 1, "4255888": 1, "1939879": 1, "3050794": 1, "3290202": 1, "7846693": 1, "9226285": 1, "7766356": 1, "9951914": 1, "s1a_iw_grdh_1sdv_20220325t000313_20220325t000338_042470_051096": [1, 10], "s1a_iw_grdh_1sdv_20220325t000313_20220325t000338_042470_051096_641b": 1, "1840024425": 1, "dd1040a5ba0bc5403371612d33d75372": 1, "1847064110": 1, "90f6b3a91a5b5573933ad33ea10f1c46": 1, "30507937": 1, "92262854": 1, "84020658": 1, "s1a_iw_grdh_1sdv_20220322t121354_20220322t121419_042434_050f59_rtc": [1, 10], "362180z": 1, "28172": 1, "421480": 1, "703200": 1, "861261": [1, 10], "331609": [1, 10], "863098": [1, 10], "42434": [1, 10], "2025445": 1, "846646": 1, "2083952": 1, "7820911": 1, "2335694": 1, "7816914": 1, "2147723": 1, "7562197": 1, "2692514": 1, "6972093": 1, "2760599": 1, "4637055": 1, "3256755": 1, "3762956": 1, "3172594": 1, "231358": 1, "3540244": 1, "1607529": 1, "4975744": 1, "3663191": 1, "9833587": 1, "7767352": 1, "9215238": 1, "3273326": 1, "7366181": 1, "2892666": 1, "2102638": 1, "8815345": 1, "s1a_iw_grdh_1sdv_20220322t121354_20220322t121419_042434_050f59": [1, 10], "s1a_iw_grdh_1sdv_20220322t121354_20220322t121419_042434_050f59_968c": 1, "1869306173": 1, "d11fd850f9744ea7da8e4e7fcb6155b8": 1, "1877602462": 1, "d684920e0ed910d98662306fda9af136": 1, "20254447": 1, "36631911": 1, "98335874": 1, "28926658": 1, "s1a_iw_grdh_1sdv_20220317t120547_20220317t120612_042361_050ce5_rtc": [1, 10], "17t12": [1, 5, 6, 7, 10, 12], "706124z": 1, "618200": 1, "2960410": 1, "3180120": 1, "205265": [1, 10], "330981": [1, 10], "206984": [1, 10], "42361": [1, 10], "9822371": 1, "012322": 1, "9938323": 1, "172651": 1, "7249474": 1, "6816426": 1, "2177827": 1, "279581": 1, "3552737": 1, "7231948": 1, "3299565": 1, "5841637": 1, "3764917": 1, "5221503": 1, "3581952": 1, "408957": 1, "4004728": 1, "3366875": 1, "3792292": 1, "3025975": 1, "4161084": 1, "2067268": 1, "4043417": 1, "0893161": 1, "4754288": 1, "7593311": 1, "s1a_iw_grdh_1sdv_20220317t120547_20220317t120612_042361_050ce5": [1, 10], "s1a_iw_grdh_1sdv_20220317t120547_20220317t120612_042361_050ce5_229b": 1, "1851157188": 1, "cc0f1cd0417f3ab7a9ca4497a27bffa1": 1, "1859445680": 1, "5832380899429b9885dda85acae1b97b": 1, "21778268": 1, "75933115": 1, "99383227": 1, "68164262": 1, "s1a_iw_grdh_1sdv_20220313t000313_20220313t000338_042295_050aa2_rtc": [1, 10], "13t00": [1, 5, 6, 7, 10, 12], "744897z": 1, "27528": 1, "524520": 1, "244245": [1, 10], "330402": [1, 10], "245549": [1, 10], "42295": [1, 10], "8044147": 1, "0228351": 1, "8292866": 1, "2744552": 1, "9034426": 1, "4311703": 1, "9220229": 1, "6329455": 1, "9528305": 1, "67875": 1, "9295723": 1, "8243904": 1, "9445509": 1, "9504514": 1, "9878149": 1, "0016563": 1, "971285": 1, "0842811": 1, "9979847": 1, "1482848": 1, "9733381": 1, "1917589": 1, "0264313": 1, "2908965": 1, "0498528": 1, "4417715": 1, "5585335": 1, "8402951": 1, "4260993": 1, "1942571": 1, "3056889": 1, "3301023": 1, "7846737": 1, "9228089": 1, "7774365": 1, "9949951": 1, "s1a_iw_grdh_1sdv_20220313t000313_20220313t000338_042295_050aa2": [1, 10], "s1a_iw_grdh_1sdv_20220313t000313_20220313t000338_042295_050aa2_ead0": 1, "1841450421": 1, "57e98d4eac4ed8c106665a319c270289": 1, "1848032165": 1, "06a185e3304da3b6be7d3a8a884e436b": 1, "30568886": 1, "04985278": 1, "84029514": 1, "s1a_iw_grdh_1sdv_20220310t121354_20220310t121419_042259_050962_rtc": [1, 10], "994606z": 1, "703290": 1, "3132190": 1, "493699": [1, 10], "330082": [1, 10], "495512": [1, 10], "42259": [1, 10], "2094089": 1, "7822775": 1, "234179": 1, "7816045": 1, "2157889": 1, "7559546": 1, "2701647": 1, "6971239": 1, "2768671": 1, "4640708": 1, "3263822": 1, "3764796": 1, "3180678": 1, "2312717": 1, "3548303": 1, "1610274": 1, "4984765": 1, "3663223": 1, "9841646": 1, "7768141": 1, "9220351": 1, "3276866": 1, "7377423": 1, "2894328": 1, "s1a_iw_grdh_1sdv_20220310t121354_20220310t121419_042259_050962": [1, 10], "s1a_iw_grdh_1sdv_20220310t121354_20220310t121419_042259_050962_07c2": 1, "1869355372": 1, "8fac9172c79d0fc88c81e46e66a40926": 1, "1877981798": 1, "41a44200c3d3e42675337da80f203180": 1, "36632228": 1, "98416457": 1, "28943277": 1, "s1a_iw_grdh_1sdv_20220305t120547_20220305t120612_042186_0506f7_rtc": [1, 10], "05t12": [1, 5, 6, 7, 10, 12], "677073z": 1, "28430": 1, "618130": 1, "176227": [1, 10], "329463": [1, 10], "177919": [1, 10], "42186": [1, 10], "9818368": 1, "0124207": 1, "9932313": 1, "1727583": 1, "7243346": 1, "6816595": 1, "217069": 1, "2795874": 1, "3540566": 1, "7232067": 1, "3292486": 1, "5842608": 1, "3757797": 1, "5218865": 1, "3572883": 1, "4092366": 1, "3997608": 1, "3363335": 1, "3788273": 1, "302782": 1, "4158033": 1, "2065494": 1, "4036359": 1, "0893232": 1, "4747262": 1, "7594287": 1, "s1a_iw_grdh_1sdv_20220305t120547_20220305t120612_042186_0506f7": [1, 10], "s1a_iw_grdh_1sdv_20220305t120547_20220305t120612_042186_0506f7_5f93": 1, "1852325928": 1, "97ed6215600375a6131f7f7e42d4ae78": 1, "1860383274": 1, "973d5def0c33dfa4f7a6e076a4318295": 1, "21706905": 1, "75942873": 1, "99323128": 1, "68165951": 1, "s1a_iw_grdh_1sdv_20220301t000313_20220301t000338_042120_0504af_rtc": 1, "01t00": [1, 5, 6, 7, 10, 12], "589986z": 1, "3191690": 1, "089393": [1, 10], "328879": [1, 10], "090580": [1, 10], "42120": [1, 10], "8042178": 1, "0230195": 1, "8291926": 1, "2747278": 1, "9030408": 1, "4312689": 1, "9217072": 1, "6325011": 1, "9525169": 1, "6783958": 1, "9291497": 1, "8237679": 1, "9442464": 1, "9504579": 1, "9875127": 1, "0017531": 1, "9711858": 1, "0843735": 1, "9977787": 1, "1481991": 1, "9731321": 1, "1916732": 1, "0261258": 1, "2909033": 1, "0496514": 1, "4418663": 1, "5583285": 1, "840296": 1, "4257929": 1, "1940775": 1, "3052828": 1, "3294712": 1, "7847743": 1, "9228069": 1, "7770383": 1, "9951834": 1, "s1a_iw_grdh_1sdv_20220301t000313_20220301t000338_042120_0504af": 1, "s1a_iw_grdh_1sdv_20220301t000313_20220301t000338_042120_0504af_1199": 1, "1841704310": 1, "e20e90e3201b177c90557c5018746f04": 1, "1848145675": 1, "8c48373ade426c42d79ed36e703304eb": 1, "30528278": 1, "92280692": 1, "84029599": 1, "s1a_iw_grdh_1sdv_20220226t121354_20220226t121419_042084_050376_rtc": 1, "075742z": 1, "421580": 1, "574817": 1, "328566": [1, 10], "576668": 1, "42084": [1, 10], "2035613": 1, "8464713": 1, "2097146": 1, "7820987": 1, "2343838": 1, "7813348": 1, "2159919": 1, "7559558": 1, "2703663": 1, "6973055": 1, "2770689": 1, "4641621": 1, "3265856": 1, "3763": 1, "3181672": 1, "231543": 1, "3549302": 1, "1612084": 1, "4985768": 1, "3663226": 1, "9221377": 1, "3277754": 1, "7377408": 1, "2893425": 1, "2108733": 1, "881538": 1, "s1a_iw_grdh_1sdv_20220226t121354_20220226t121419_042084_050376": 1, "s1a_iw_grdh_1sdv_20220226t121354_20220226t121419_042084_050376_7d87": 1, "1871501868": 1, "a78e5ba166fd8bd8ce8c1b6748c427f5": 1, "1879094912": 1, "8df4f90f49002cce0230df3d6407cde0": 1, "20356132": 1, "36632263": 1, "28934254": 1, "s1a_iw_grdh_1sdv_20220221t120547_20220221t120612_042011_050108_rtc": 1, "939806z": 1, "618080": 1, "438945": 1, "327944": [1, 10], "440666": 1, "42011": [1, 10], "9810315": 1, "0124378": 1, "9926271": 1, "1727756": 1, "7238271": 1, "6817637": 1, "2164574": 1, "2795929": 1, "3534481": 1, "7232126": 1, "3287421": 1, "5842656": 1, "3752724": 1, "5218013": 1, "3581562": 1, "3974936": 1, "3992532": 1, "3361581": 1, "3785276": 1, "3030558": 1, "4155016": 1, "2066427": 1, "4031317": 1, "0893282": 1, "4741229": 1, "759435": 1, "s1a_iw_grdh_1sdv_20220221t120547_20220221t120612_042011_050108": 1, "s1a_iw_grdh_1sdv_20220221t120547_20220221t120612_042011_050108_9831": 1, "1853786004": 1, "d5f3444264ce3fdd82db1ac5f094b9fb": 1, "1860866586": 1, "647ceccdc6a6c800fe0b7b1ca826560": 1, "21645736": 1, "75943501": 1, "99262708": 1, "68176365": 1, "s1a_iw_grdh_1sdv_20220217t000313_20220217t000338_041945_04feb2_rtc": 1, "677942z": 1, "2980860": 1, "176642": 1, "327346": [1, 10], "179242": 1, "41945": [1, 10], "804314": 1, "0228371": 1, "9527292": 1, "6787521": 1, "9293598": 1, "824034": 1, "9443454": 1, "9503656": 1, "9877158": 1, "0017487": 1, "9978804": 1, "1481969": 1, "0263346": 1, "291079": 1, "558226": 1, "8402964": 1, "4257922": 1, "193897": 1, "3053841": 1, "3295612": 1, "7847765": 1, "9228971": 1, "7772352": 1, "9949991": 1, "s1a_iw_grdh_1sdv_20220217t000313_20220217t000338_041945_04feb2": 1, "s1a_iw_grdh_1sdv_20220217t000313_20220217t000338_041945_04feb2_6a2c": 1, "1840786190": 1, "667056533b49b2b8c3edbbac76a53766": 1, "1847324712": 1, "1864f7256ba09fcbe83df5ec47c62803": 1, "30538411": 1, "84029641": 1, "s1a_iw_grdh_1sdv_20220214t121354_20220214t121419_041909_04fd6f_rtc": 1, "178103z": 1, "28241": 1, "420920": 1, "703330": 1, "677198": 1, "327023": [1, 10], "679007": 1, "41909": [1, 10], "86403": 1, "5974425": 1, "9845667": 1, "7768085": 1, "9222387": 1, "327774": 1, "7379447": 1, "2893399": 1, "2036606": 1, "8467878": 1, "2098135": 1, "7824603": 1, "2344847": 1, "7814256": 1, "2160921": 1, "7561369": 1, "2772708": 1, "4642534": 1, "3265774": 1, "3776542": 1, "3183703": 1, "2313635": 1, "3551331": 1, "1610288": 1, "4987772": 1, "3663233": 1, "s1a_iw_grdh_1sdv_20220214t121354_20220214t121419_041909_04fd6f": 1, "s1a_iw_grdh_1sdv_20220214t121354_20220214t121419_041909_04fd6f_3952": 1, "1870648966": 1, "74029c4a6490151b21d265a5560a3e94": 1, "1878267778": 1, "cc8900877d1c0553280e409224ca5b7a": 1, "20366057": 1, "36632333": 1, "28933995": 1, "s1a_iw_grdh_1sdv_20220209t120547_20220209t120612_041836_04faf5_rtc": 1, "019287z": 1, "28429": 1, "2960430": 1, "518456": 1, "326389": 1, "520119": 1, "41836": 1, "9819398": 1, "0125088": 1, "9932345": 1, "1728484": 1, "7242356": 1, "6817524": 1, "2170701": 1, "2796777": 1, "3541547": 1, "7229349": 1, "3573861": 1, "4089649": 1, "4158044": 1, "2066396": 1, "403637": 1, "0894134": 1, "s1a_iw_grdh_1sdv_20220209t120547_20220209t120612_041836_04faf5": 1, "s1a_iw_grdh_1sdv_20220209t120547_20220209t120612_041836_04faf5_94bf": 1, "1851372280": 1, "92599c4474baed6136c0dc3d26dea1f5": 1, "1858250597": 1, "c80fd4b6edeac5c108bafcc366a7a671": 1, "21707007": 1, "99323449": 1, "s1a_iw_grdh_1sdv_20220205t000313_20220205t000338_041770_04f88b_rtc": 1, "849186z": 1, "524550": 1, "348647": 1, "325771": 1, "349725": 1, "41770": 1, "8053209": 1, "0228171": 1, "8298003": 1, "2748057": 1, "9034657": 1, "4281928": 1, "9234852": 1, "6384174": 1, "9532258": 1, "6783807": 1, "9319176": 1, "8512225": 1, "9455038": 1, "9518743": 1, "9883053": 1, "0010142": 1, "9858697": 1, "188419": 1, "0500619": 1, "4419472": 1, "5588415": 1, "8403841": 1, "4263034": 1, "1943467": 1, "3059924": 1, "3301919": 1, "7850783": 1, "9228911": 1, "7783336": 1, "9946165": 1, "s1a_iw_grdh_1sdv_20220205t000313_20220205t000338_041770_04f88b": 1, "s1a_iw_grdh_1sdv_20220205t000313_20220205t000338_041770_04f88b_fcf7": 1, "1842118322": 1, "e2ee6bf5beaebcb7ac687208de1d51": 1, "1849058352": 1, "83809e01973feea61e5167d4e6591b8f": 1, "30599236": 1, "92289114": 1, "05006191": 1, "84038412": 1, "s1a_iw_grdh_1sdv_20220202t121354_20220202t121419_041734_04f754_rtc": 1, "057390z": 1, "28247": 1, "21600": 1, "420990": 1, "703460": 1, "557243": 1, "325460": [1, 10], "557538": 1, "41734": [1, 10], "8660391": 1, "5975205": 1, "9858736": 1, "7767902": 1, "9233578": 1, "3282099": 1, "7395771": 1, "2894094": 1, "2113819": 1, "8814507": 1, "2046761": 1, "8467937": 1, "2107139": 1, "7842709": 1, "2790906": 1, "4645337": 1, "3291093": 1, "3770344": 1, "3148608": 1, "309618": 1, "3430187": 1, "2819473": 1, "3194751": 1, "2323619": 1, "3732376": 1, "0818439": 1, "5000802": 1, "3663279": 1, "s1a_iw_grdh_1sdv_20220202t121354_20220202t121419_041734_04f754": 1, "s1a_iw_grdh_1sdv_20220202t121354_20220202t121419_041734_04f754_02d7": 1, "1872347120": 1, "72884db8a2f2ae5005c58d246b3bf59": 1, "1879106636": 1, "d6f16e1ecb8e42f53d0152bdac3ccc24": 1, "36632788": 1, "98587362": 1, "28940941": 1, "s1a_iw_grdh_1sdv_20220128t120547_20220128t120612_041661_04f4d6_rtc": 1, "352862z": 1, "852033": 1, "324822": [1, 10], "853690": 1, "41661": [1, 10], "9824432": 1, "0124981": 1, "9938387": 1, "1728312": 1, "2177837": 1, "2796713": 1, "3300589": 1, "584253": 1, "3765952": 1, "5223298": 1, "3583953": 1, "4087745": 1, "4006715": 1, "3364147": 1, "3793303": 1, "3025965": 1, "4162071": 1, "2065453": 1, "4044448": 1, "0894956": 1, "s1a_iw_grdh_1sdv_20220128t120547_20220128t120612_041661_04f4d6": 1, "s1a_iw_grdh_1sdv_20220128t120547_20220128t120612_041661_04f4d6_7a17": 1, "1853333353": 1, "eb41e71abec8b34022d5c08407dcd8ca": 1, "1859894605": 1, "5f7c6bd25e36060ab6534870c3d624c1": 1, "21778371": 1, "99383869": 1, "s1a_iw_grdh_1sdv_20220124t000313_20220124t000338_041595_04f294_rtc": 1, "24t00": [1, 5, 6, 7, 10, 12], "424832z": 1, "2980870": 1, "799840": 1, "923599": 1, "324244": [1, 10], "926064": 1, "41595": [1, 10], "8054104": 1, "0223642": 1, "829899": 1, "2747135": 1, "9036725": 1, "4283689": 1, "9235912": 1, "6385956": 1, "9533295": 1, "6784687": 1, "9320214": 1, "8513105": 1, "9456054": 1, "9518721": 1, "9885085": 1, "0010098": 1, "9860707": 1, "1883244": 1, "0502633": 1, "4418525": 1, "558944": 1, "8403837": 1, "426406": 1, "194527": 1, "3060967": 1, "3313653": 1, "7850805": 1, "9229813": 1, "7784299": 1, "9944342": 1, "s1a_iw_grdh_1sdv_20220124t000313_20220124t000338_041595_04f294": 1, "s1a_iw_grdh_1sdv_20220124t000313_20220124t000338_041595_04f294_e282": 1, "1842024465": 1, "2aec57660de0785cec98fefd04c3107": 1, "1848146005": 1, "962c8d5938cbf737f0ac1d584fae5d3b": 1, "30609667": 1, "92298132": 1, "05026329": 1, "s1a_iw_grdh_1sdv_20220121t121355_20220121t121420_041559_04f156_rtc": 1, "716165z": 1, "28245": 1, "420950": 1, "703400": 1, "216033": 1, "323926": [1, 10], "216297": 1, "41559": [1, 10], "8656381": 1, "5976133": 1, "9850694": 1, "7768015": 1, "9226491": 1, "3281294": 1, "2040668": 1, "8467902": 1, "2164966": 1, "7563197": 1, "3555358": 1, "1612112": 1, "4992784": 1, "3663251": 1, "s1a_iw_grdh_1sdv_20220121t121355_20220121t121420_041559_04f156": 1, "s1a_iw_grdh_1sdv_20220121t121355_20220121t121420_041559_04f156_099f": 1, "1872523101": 1, "a138031b52fa0c6352bfad98af758464": 1, "1878957107": 1, "ea7911b957a3127df74133d08de988a2": 1, "20406678": 1, "36632508": 1, "98506936": 1, "s1a_iw_grdh_1sdv_20220116t120548_20220116t120613_041486_04eee8_rtc": 1, "877035z": 1, "902470": 1, "376211": 1, "323304": [1, 10], "377859": 1, "41486": [1, 10], "9825438": 1, "012496": 1, "2176818": 1, "2796722": 1, "3299576": 1, "584254": 1, "4005693": 1, "3363254": 1, "3792304": 1, "3026878": 1, "4161096": 1, "2068171": 1, "4043429": 1, "0894064": 1, "4754312": 1, "7595117": 1, "s1a_iw_grdh_1sdv_20220116t120548_20220116t120613_041486_04eee8": 1, "s1a_iw_grdh_1sdv_20220116t120548_20220116t120613_041486_04eee8_f185": 1, "1852959592": 1, "fb54c35b87cee352fdee42d566523ffb": 1, "1859813313": 1, "7af3cb1579be27df41d33fb1bc5a3b22": 1, "21768176": 1, "75951167": 1, "s1a_iw_grdh_1sdv_20220112t000314_20220112t000339_041420_04eccd_rtc": 1, "12t00": [1, 5, 6, 7, 10, 12], "070182z": 1, "524540": 1, "568941": 1, "322765": [1, 10], "571423": 1, "41420": [1, 10], "8052112": 1, "0224584": 1, "8296926": 1, "2745373": 1, "9234876": 1, "6385076": 1, "9883078": 1, "0011044": 1, "9858722": 1, "1885091": 1, "0501613": 1, "4418548": 1, "5593535": 1, "8402917": 1, "4263038": 1, "194437": 1, "30589": 1, "3297407": 1, "7848793": 1, "9229853": 1, "7782308": 1, "9945283": 1, "s1a_iw_grdh_1sdv_20220112t000314_20220112t000339_041420_04eccd": 1, "s1a_iw_grdh_1sdv_20220112t000314_20220112t000339_041420_04eccd_74bb": 1, "1841674140": 1, "4c21bfbe8be068dcc304c3e7bced5228": 1, "1847936889": 1, "857c83d3015af18d5d2fd31967dbadb4": 1, "30589004": 1, "92298529": 1, "05016131": 1, "84029174": 1, "s1a_iw_grdh_1sdv_20220109t121355_20220109t121420_041384_04eb9b_rtc": 1, "415805z": 1, "28240": 1, "420880": 1, "914936": 1, "322459": [1, 10], "916673": 1, "41384": [1, 10], "8606121": 1, "5970117": 1, "983863": 1, "7768184": 1, "9218315": 1, "3275991": 1, "7371292": 1, "2893503": 1, "2029497": 1, "8467837": 1, "2089014": 1, "7822745": 1, "2339779": 1, "7813326": 1, "2153831": 1, "7559523": 1, "2697584": 1, "697212": 1, "2764623": 1, "4640686": 1, "3261816": 1, "3762078": 1, "3176611": 1, "2317211": 1, "3544266": 1, "1610255": 1, "4980756": 1, "3663209": 1, "s1a_iw_grdh_1sdv_20220109t121355_20220109t121420_041384_04eb9b": 1, "s1a_iw_grdh_1sdv_20220109t121355_20220109t121420_041384_04eb9b_1e8c": 1, "1871831280": 1, "80fc2592bf4bdf4da63b86672b0ba201": 1, "1879019714": 1, "d889135f0c1aee2d363e651345fef846": 1, "20294969": 1, "36632087": 1, "98386297": 1, "28935032": 1, "s1a_iw_grdh_1sdv_20220104t120548_20220104t120613_041311_04e931_rtc": 1, "280484z": 1, "618190": 1, "779661": 1, "321841": [1, 10], "781306": 1, "41311": [1, 10], "9822418": 1, "0125024": 1, "7249538": 1, "6818228": 1, "2176828": 1, "2797624": 1, "3550708": 1, "7231968": 1, "3298574": 1, "5843452": 1, "3763905": 1, "5221513": 1, "3580941": 1, "408958": 1, "4004683": 1, "3363264": 1, "3792281": 1, "3025073": 1, "4161073": 1, "2066366": 1, "4042432": 1, "0894977": 1, "4753306": 1, "7595127": 1, "s1a_iw_grdh_1sdv_20220104t120548_20220104t120613_041311_04e931": 1, "s1a_iw_grdh_1sdv_20220104t120548_20220104t120613_041311_04e931_3143": 1, "1853989262": 1, "ea1f7eecd615a9a5c40f1941c25f0074": 1, "1860670002": 1, "21457402e62ac76e55d995f9a4ecfb3f": 1, "21768279": 1, "75951271": 1, "68182277": 1, "s1a_iw_grdh_1sdv_20211231t000314_20211231t000339_041245_04e6d7_rtc": 1, "31t00": [1, 5, 6, 7, 10, 12], "432317z": 1, "27535": 1, "524510": 1, "799860": 1, "931813": 1, "321239": [1, 10], "932821": 1, "41245": [1, 10], "8059138": 1, "0223541": 1, "7787319": 1, "9944282": 1, "3058925": 1, "3306435": 1, "4266094": 1, "194436": 1, "5598656": 1, "8401994": 1, "0504672": 1, "441848": 1, "9717907": 1, "08418": 1, "9888182": 1, "0011835": 1, "9457044": 1, "9517798": 1, "932118": 1, "8511281": 1, "9534235": 1, "6781961": 1, "9237985": 1, "6387717": 1, "9039733": 1, "4282724": 1, "830509": 1, "2748816": 1, "s1a_iw_grdh_1sdv_20211231t000314_20211231t000339_041245_04e6d7": 1, "s1a_iw_grdh_1sdv_20211231t000314_20211231t000339_041245_04e6d7_403f": 1, "1841689212": 1, "b14eaa33d090d0353a5a8740efda9c35": 1, "1847951398": 1, "59581c6ba4179230e88d76fe87d00fbd": 1, "30589252": 1, "05046725": 1, "84019936": 1, "s1a_iw_grdh_1sdv_20211228t121356_20211228t121421_041209_04e5ab_rtc": 1, "858303z": 1, "28244": 1, "420940": 1, "703380": 1, "358168": 1, "320939": [1, 10], "358437": 1, "41209": [1, 10], "865136": 1, "5976163": 1, "499278": 1, "3664154": 1, "3554348": 1, "1612107": 1, "3187742": 1, "2313654": 1, "3272885": 1, "3771159": 1, "2776738": 1, "4645263": 1, "2710756": 1, "6973995": 1, "2164979": 1, "7561392": 1, "2346864": 1, "7816073": 1, "2101141": 1, "7830037": 1, "2039652": 1, "8467896": 1, "2111775": 1, "88163": 1, "7382534": 1, "2895165": 1, "9225449": 1, "3279503": 1, "9848699": 1, "7768945": 1, "s1a_iw_grdh_1sdv_20211228t121356_20211228t121421_041209_04e5ab": 1, "s1a_iw_grdh_1sdv_20211228t121356_20211228t121421_041209_04e5ab_8b61": 1, "1873308921": 1, "88c01ed6a1ffcfe0c9108d59dcd26716": 1, "1880212329": 1, "be6c9774b3516ecaf85ffc9e610a76aa": 1, "20396522": 1, "36641537": 1, "98486987": 1, "28951651": 1, "s1a_iw_grdh_1sdv_20211223t120549_20211223t120614_041136_04e340_rtc": 1, "23t12": [1, 5, 6, 7, 10, 12], "793721z": 1, "292909": 1, "320320": [1, 10], "294533": 1, "41136": [1, 10], "9824455": 1, "0125883": 1, "7247495": 1, "6818284": 1, "2174779": 1, "279674": 1, "s1a_iw_grdh_1sdv_20211223t120549_20211223t120614_041136_04e340": 1, "s1a_iw_grdh_1sdv_20211223t120549_20211223t120614_041136_04e340_1239": 1, "1853713181": 1, "fc58122890f1275ba52fc0effd48afb2": 1, "1859861533": 1, "851592fd3da9cce0f032b703aea5e6bc": 1, "21747786": 1, "s1a_iw_grdh_1sdv_20211219t000315_20211219t000340_041070_04e110_rtc": 1, "19t00": [1, 5, 6, 7, 10, 12], "141449z": 1, "27541": 1, "524380": 1, "799790": 1, "640936": 1, "319760": [1, 10], "641961": 1, "41070": [1, 10], "8053729": 1, "0654006": 1, "7847721": 1, "9227167": 1, "3047776": 1, "3295626": 1, "4256899": 1, "193807": 1, "558328": 1, "8402057": 1, "0497508": 1, "4417738": 1, "0262327": 1, "2910813": 1, "9732389": 1, "1918512": 1, "9711833": 1, "0842833": 1, "9292632": 1, "8242165": 1, "9217048": 1, "6324109": 1, "903036": 1, "4310885": 1, "8291903": 1, "2746376": 1, "s1a_iw_grdh_1sdv_20211219t000315_20211219t000340_041070_04e110": 1, "s1a_iw_grdh_1sdv_20211219t000315_20211219t000340_041070_04e110_c898": 1, "1842110892": 1, "619030dee3444106a656e488592c657": 1, "1847934060": 1, "aec8188fc0c5786e053f18cffbc54a35": 1, "92271674": 1, "84020573": 1, "s1a_iw_grdh_1sdv_20211216t121357_20211216t121422_041034_04dfdd_rtc": 1, "596874z": 1, "28242": 1, "096009": 1, "319453": [1, 10], "097740": 1, "41034": [1, 10], "8643319": 1, "5975309": 1, "4988771": 1, "366414": 1, "2099144": 1, "7825512": 1, "2037615": 1, "8468787": 1, "7380481": 1, "2894289": 1, "9224377": 1, "3275908": 1, "s1a_iw_grdh_1sdv_20211216t121357_20211216t121422_041034_04dfdd": 1, "s1a_iw_grdh_1sdv_20211216t121357_20211216t121422_041034_04dfdd_d57b": 1, "1871629643": 1, "0cf725f32f4d619c3e41a7197c79c4b2": 1, "1878560549": 1, "997e6d72efec6d3232c6f44a6cea2d23": 1, "20376146": 1, "36641397": 1, "28942888": 1, "s1a_iw_grdh_1sdv_20211211t120550_20211211t120615_040961_04dd71_rtc": 1, "11t12": [1, 5, 6, 7, 10, 12], "513966z": 1, "28433": 1, "618070": 1, "902400": 1, "013151": 1, "318833": [1, 10], "014780": 1, "downlink": [1, 10], "40961": [1, 10], "9838668": 1, "0130092": 1, "9926303": 1, "1728656": 1, "7238303": 1, "6818537": 1, "2163564": 1, "279684": 1, "3581551": 1, "3974033": 1, "4741241": 1, "7595253": 1, "s1a_iw_grdh_1sdv_20211211t120550_20211211t120615_040961_04dd71": 1, "s1a_iw_grdh_1sdv_20211211t120550_20211211t120615_040961_04dd71_165f": 1, "1853315434": 1, "11b5f08e0ce1d78ddaa1c86d0328c7e9": 1, "1859886753": 1, "f2e77c86f3e92ee4c9a6047061b1c81c": 1, "21635644": 1, "75952527": 1, "99263029": 1, "68185372": 1, "s1a_iw_grdh_1sdv_20211207t000316_20211207t000341_040895_04db21_rtc": 1, "07t00": [1, 5, 6, 7, 10, 12], "568419z": 1, "067903": 1, "318241": [1, 10], "068935": 1, "40895": [1, 10], "8044169": 1, "0229253": 1, "7773381": 1, "9950873": 1, "3048787": 1, "3295623": 1, "4258951": 1, "1941675": 1, "558533": 1, "8402049": 1, "026439": 1, "2911669": 1, "9733406": 1, "191849": 1, "9526158": 1, "6783035": 1, "9033415": 1, "4311724": 1, "8292912": 1, "2746356": 1, "s1a_iw_grdh_1sdv_20211207t000316_20211207t000341_040895_04db21": 1, "s1a_iw_grdh_1sdv_20211207t000316_20211207t000341_040895_04db21_2b97": 1, "1841189135": 1, "c877550a9de463f58ff32a3a11778c54": 1, "1847439958": 1, "9fcb36ebcce2ef6ab7dcf9013bb58681": 1, "30487868": 1, "84020488": 1, "s1a_iw_grdh_1sdv_20211204t121357_20211204t121422_040859_04d9e8_rtc": 1, "007158z": 1, "420930": 1, "507027": 1, "317928": [1, 10], "507290": 1, "40859": [1, 10], "8649351": 1, "5976175": 1, "4989773": 1, "3664143": 1, "355233": 1, "1612098": 1, "3185728": 1, "2312742": 1, "3268807": 1, "3776556": 1, "277472": 1, "464435": 1, "2706688": 1, "6975779": 1, "2161922": 1, "756318": 1, "2345856": 1, "7815165": 1, "2099124": 1, "782822": 1, "203863": 1, "8468793": 1, "2107711": 1, "8816277": 1, "7381515": 1, "2895178": 1, "9224423": 1, "3278615": 1, "9846672": 1, "7768071": 1, "s1a_iw_grdh_1sdv_20211204t121357_20211204t121422_040859_04d9e8": 1, "s1a_iw_grdh_1sdv_20211204t121357_20211204t121422_040859_04d9e8_b9b1": 1, "1871334511": 1, "a9f6c7c36f4c05d02c781c5831e0e475": 1, "1878924621": 1, "3c0a4474c2201947f0edfa6e659345fd": 1, "20386301": 1, "36641432": 1, "98466723": 1, "28951781": 1, "s1a_iw_grdh_1sdv_20211129t120550_20211129t120615_040786_04d761_rtc": 1, "035677z": 1, "534838": 1, "317281": [1, 10], "536515": 1, "40786": [1, 10], "9819422": 1, "0125989": 1, "724341": 1, "6818397": 1, "2169692": 1, "2797688": 1, "3541558": 1, "7230252": 1, "3292497": 1, "584351": 1, "3757808": 1, "5219768": 1, "399762": 1, "3364238": 1, "3788285": 1, "3028723": 1, "4036381": 1, "0895037": 1, "4747274": 1, "759519": 1, "s1a_iw_grdh_1sdv_20211129t120550_20211129t120615_040786_04d761": 1, "s1a_iw_grdh_1sdv_20211129t120550_20211129t120615_040786_04d761_08c0": 1, "1853191760": 1, "f686c8b13f6634b231b067ae6e7adf4a": 1, "1860107120": 1, "991799f593a0f389e89f5b2f229976f5": 1, "21696915": 1, "75951899": 1, "68183965": 1, "s1a_iw_grdh_1sdv_20211125t000316_20211125t000341_040720_04d50e_rtc": 1, "120003z": 1, "619475": 1, "316686": [1, 10], "620531": 1, "40720": [1, 10], "8042133": 1, "0228392": 1, "5582255": 1, "8402062": 1, "0497482": 1, "4416837": 1, "0262302": 1, "2909911": 1, "9977812": 1, "1482892": 1, "9030384": 1, "4311787": 1, "s1a_iw_grdh_1sdv_20211125t000316_20211125t000341_040720_04d50": 1, "s1a_iw_grdh_1sdv_20211125t000316_20211125t000341_040720_04d50e_5d0": 1, "1840989028": 1, "4c940df17f6b98c705b47c1ceaf5a492": 1, "1847405525": 1, "b9e4f8bd6ec911f274eea0adc48374af": 1, "04974821": 1, "84020615": 1, "s1a_iw_grdh_1sdv_20211122t121358_20211122t121423_040684_04d3cc_rtc": 1, "576899z": 1, "28174": 1, "421550": 1, "076767": 1, "316364": [1, 10], "077031": 1, "40684": [1, 10], "2032553": 1, "8466501": 1, "7374379": 1, "2895269": 1, "9839635": 1, "7768169": 1, "4983759": 1, "3664122": 1, "3547294": 1, "1610269": 1, "3179658": 1, "2314518": 1, "3263833": 1, "3762991": 1, "2767653": 1, "4641605": 1, "2700621": 1, "6973039": 1, "2156868": 1, "7560443": 1, "2093074": 1, "7822769": 1, "s1a_iw_grdh_1sdv_20211122t121358_20211122t121423_040684_04d3cc": 1, "s1a_iw_grdh_1sdv_20211122t121358_20211122t121423_040684_04d3cc_a87d": 1, "1870599543": 1, "e5cecf2e132a545865c27179dff63a45": 1, "1877510105": 1, "90ed96cf67d709802337ab7645025ce9": 1, "20325534": 1, "36641222": 1, "98396351": 1, "28952689": 1, "s1a_iw_grdh_1sdv_20211117t120551_20211117t120616_040611_04d14f_rtc": 1, "560526z": 1, "059690": 1, "315727": [1, 10], "061362": 1, "40611": [1, 10], "9822442": 1, "0125925": 1, "9935366": 1, "1728398": 1, "7246474": 1, "6818312": 1, "2173769": 1, "2797652": 1, "3547643": 1, "7230192": 1, "3296526": 1, "5841666": 1, "3761857": 1, "5219728": 1, "3577907": 1, "4089609": 1, "4001662": 1, "3364197": 1, "3790283": 1, "3026898": 1, "4160052": 1, "2065473": 1, "4040392": 1, "0893192": 1, "s1a_iw_grdh_1sdv_20211117t120551_20211117t120616_040611_04d14f": 1, "s1a_iw_grdh_1sdv_20211117t120551_20211117t120616_040611_04d14f_64d1": 1, "1852341839": 1, "6ef51d64339eb1d546afe13e73938ff5": 1, "1859006695": 1, "e68bd272e8585b829484e3337c2b3368": 1, "21737694": 1, "99353659": 1, "68183121": 1, "s1a_iw_grdh_1sdv_20211113t000316_20211113t000341_040545_04ceff_rtc": 1, "481869z": 1, "27536": 1, "981337": 1, "315135": [1, 10], "982401": 1, "40545": [1, 10], "7851745": 1, "9227088": 1, "4263027": 1, "1941662": 1, "5592506": 1, "8402019": 1, "0501587": 1, "4417647": 1, "9883103": 1, "0011945": 1, "93192": 1, "8513127": 1, "9531221": 1, "6782927": 1, "9034704": 1, "4283731": 1, "s1a_iw_grdh_1sdv_20211113t000316_20211113t000341_040545_04ceff": 1, "s1a_iw_grdh_1sdv_20211113t000316_20211113t000341_040545_04ceff_65e": 1, "1841635009": 1, "c1ce8c96f4d4e6564a7b5143190cf358": 1, "1848328891": 1, "8f0b65e3e799f3ce45fb0738d62e5df5": 1, "92270879": 1, "05015872": 1, "84020191": 1, "s1a_iw_grdh_1sdv_20211110t121358_20211110t121423_040509_04cdc8_rtc": 1, "742983z": 1, "28238": 1, "420890": 1, "242066": 1, "314824": [1, 10], "243900": 1, "40509": [1, 10], "8602111": 1, "5971045": 1, "4983751": 1, "3665928": 1, "3179663": 1, "2313615": 1, "2767659": 1, "4640702": 1, "2700627": 1, "6972136": 1, "2155841": 1, "7562243": 1, "2341809": 1, "7813337": 1, "2092046": 1, "7824568": 1, "2032537": 1, "8468757": 1, "2104657": 1, "8817162": 1, "7372341": 1, "2895295": 1, "9838661": 1, "7769988": 1, "s1a_iw_grdh_1sdv_20211110t121358_20211110t121423_040509_04cdc8": 1, "s1a_iw_grdh_1sdv_20211110t121358_20211110t121423_040509_04cdc8_a5d0": 1, "1869823182": 1, "877e086c714d6c32dd757b12b2362172": 1, "1877247836": 1, "f656d73a0cb42cf49a9cc112042aa920": 1, "20325369": 1, "98386611": 1, "28952948": 1, "s1a_iw_grdh_1sdv_20211105t120551_20211105t120616_040436_04cb46_rtc": 1, "645002z": 1, "618220": 1, "902490": 1, "144152": 1, "314182": [1, 10], "145852": 1, "40436": [1, 10], "9826469": 1, "012584": 1, "725056": 1, "68182": 1, "2178867": 1, "2797606": 1, "3767954": 1, "5221473": 1, "3584975": 1, "4088638": 1, "4007737": 1, "3365039": 1, "4163046": 1, "2062735": 1, "s1a_iw_grdh_1sdv_20211105t120551_20211105t120616_040436_04cb46": 1, "s1a_iw_grdh_1sdv_20211105t120551_20211105t120616_040436_04cb46_ac9d": 1, "1851984556": 1, "1be600080a631f476395f32955b7af76": 1, "1859036305": 1, "d9b99842b6c817e9e2d9a1ed894b67dd": 1, "21788668": 1, "68181995": 1, "s1a_iw_grdh_1sdv_20211101t000317_20211101t000342_040370_04c8e9_rtc": 1, "702246z": 1, "27537": 1, "524450": 1, "799820": 1, "200949": 1, "313577": [1, 10], "203544": 1, "40370": [1, 10], "8049226": 1, "0230055": 1, "7779354": 1, "9948048": 1, "7849733": 1, "9227128": 1, "305283": 1, "3295615": 1, "4262004": 1, "1940762": 1, "5587375": 1, "8401138": 1, "0501535": 1, "4415844": 1, "0268489": 1, "291248": 1, "9736459": 1, "1918424": 1, "9982873": 1, "1481879": 1, "9714908": 1, "0843669": 1, "9881246": 1, "00183": 1, "9452959": 1, "9516983": 1, "9297848": 1, "8247467": 1, "9529196": 1, "678297": 1, "9233887": 1, "6385999": 1, "9030592": 1, "428111": 1, "8294907": 1, "2745413": 1, "s1a_iw_grdh_1sdv_20211101t000317_20211101t000342_040370_04c8e9": 1, "s1a_iw_grdh_1sdv_20211101t000317_20211101t000342_040370_04c8e9_b7eb": 1, "1840626091": 1, "951c0d146b9181384e2d444db1f52d4f": 1, "1847834258": 1, "07dc7190d3d8404f6ef7ffd31bcffcab": 1, "30528303": 1, "92271277": 1, "05015354": 1, "84011377": 1, "s1a_iw_grdh_1sdv_20211029t121358_20211029t121423_040334_04c7a8_rtc": 1, "052769z": 1, "28237": 1, "703260": 1, "551845": 1, "313256": [1, 10], "553693": 1, "40334": [1, 10], "8601107": 1, "5971051": 1, "4981747": 1, "3665921": 1, "3546284": 1, "1610265": 1, "3178653": 1, "231361": 1, "3262822": 1, "3762986": 1, "2766653": 1, "4639794": 1, "2699619": 1, "6971228": 1, "215586": 1, "7559535": 1, "2340781": 1, "7815137": 1, "2091037": 1, "782366": 1, "2031521": 1, "8468752": 1, "2103641": 1, "8817157": 1, "7371321": 1, "2895308": 1, "921931": 1, "3275075": 1, "9837656": 1, "7770002": 1, "s1a_iw_grdh_1sdv_20211029t121358_20211029t121423_040334_04c7a8": 1, "s1a_iw_grdh_1sdv_20211029t121358_20211029t121423_040334_04c7a8_c4db": 1, "1868096021": 1, "28bc610a1d14686677a955e1541b6463": 1, "1876325502": 1, "cbdaf76c5f862445c665865d3433ad4c": 1, "20315214": 1, "36659209": 1, "98376558": 1, "28953078": 1, "s1a_iw_grdh_1sdv_20211024t120551_20211024t120616_040261_04c52e_rtc": 1, "24t12": [1, 5, 6, 7, 10, 12], "954256z": 1, "21972": 1, "3180160": 1, "454118": 1, "312622": [1, 10], "454394": 1, "40261": [1, 10], "9820453": 1, "012687": 1, "993137": 1, "1729413": 1, "7242452": 1, "6820226": 1, "2169702": 1, "2798591": 1, "3541569": 1, "7231154": 1, "3293477": 1, "5840793": 1, "3573873": 1, "4090551": 1, "4036392": 1, "089594": 1, "4747285": 1, "7596093": 1, "s1a_iw_grdh_1sdv_20211024t120551_20211024t120616_040261_04c52": 1, "s1a_iw_grdh_1sdv_20211024t120551_20211024t120616_040261_04c52e_779a": 1, "1850705799": 1, "a934b657a0cfa7171320d8e582bb2910": 1, "1859367383": 1, "077b9a4b6436345ba4788cb2713061e5": 1, "21697018": 1, "75960925": 1, "68202261": 1, "s1a_iw_grdh_1sdv_20211020t000317_20211020t000342_040195_04c2d6_rtc": 1, "20t00": [1, 5, 6, 7, 10, 12], "919736z": 1, "418433": 1, "312022": [1, 10], "421040": 1, "40195": [1, 10], "8043162": 1, "0229273": 1, "7771389": 1, "9951815": 1, "7847699": 1, "9226266": 1, "4257918": 1, "1938067": 1, "558327": 1, "8400252": 1, "0262276": 1, "290901": 1, "9732364": 1, "1917611": 1, "9876168": 1, "0018411": 1, "9442439": 1, "9503678": 1, "9292608": 1, "8241264": 1, "9525145": 1, "6783057": 1, "9218132": 1, "6326792": 1, "9031394": 1, "4311766": 1, "8291857": 1, "2744573": 1, "s1a_iw_grdh_1sdv_20211020t000317_20211020t000342_040195_04c2d6": 1, "s1a_iw_grdh_1sdv_20211020t000317_20211020t000342_040195_04c2d6_30cd": 1, "1837388933": 1, "367bb9da12894c3f90ce59088d994f53": 1, "1845275938": 1, "809bf64527b13dc436748d6d3eae6cfb": 1, "92262656": 1, "84002521": 1, "s1a_iw_grdh_1sdv_20211017t121358_20211017t121423_040159_04c195_rtc": 1, "200359z": 1, "703320": 1, "699399": 1, "311701": [1, 10], "701319": 1, "40159": [1, 10], "2109736": 1, "8817191": 1, "7379476": 1, "2895204": 1, "9223335": 1, "3274117": 1, "9844693": 1, "7769904": 1, "3552335": 1, "1611195": 1, "3184702": 1, "2315445": 1, "3267791": 1, "3777454": 1, "2773708": 1, "4644345": 1, "2706694": 1, "6974876": 1, "2161929": 1, "7562277": 1, "2345862": 1, "7814262": 1, "s1a_iw_grdh_1sdv_20211017t121358_20211017t121423_040159_04c195": 1, "s1a_iw_grdh_1sdv_20211017t121358_20211017t121423_040159_04c195_e0b1": 1, "1866566882": 1, "5a20cbca9e7a5acda9ba0705a3d75828": 1, "1874668635": 1, "dea3f11d3fb08a7ff1a3354e182a6e97": 1, "98446931": 1, "s1a_iw_grdh_1sdv_20211012t120551_20211012t120616_040086_04bf12_rtc": 1, "12t12": [1, 5, 6, 7, 10, 12], "850150z": 1, "618120": 1, "2960460": 1, "902410": 1, "3180170": 1, "349229": 1, "311058": [1, 10], "351071": 1, "40086": [1, 10], "9815443": 1, "0127878": 1, "9928381": 1, "17304": 1, "7241463": 1, "6821155": 1, "2168693": 1, "2799502": 1, "3540533": 1, "7229359": 1, "3292475": 1, "5841705": 1, "3757786": 1, "5217963": 1, "3572861": 1, "4090561": 1, "3997586": 1, "336153": 1, "3787308": 1, "3031441": 1, "4158022": 1, "2064591": 1, "4035384": 1, "089595": 1, "4746303": 1, "7597908": 1, "s1a_iw_grdh_1sdv_20211012t120551_20211012t120616_040086_04bf12": 1, "s1a_iw_grdh_1sdv_20211012t120551_20211012t120616_040086_04bf12_3ed7": 1, "1850216981": 1, "ea0091b9d9488e7eb5c9fe12d060c6cd": 1, "1858234391": 1, "657a19e3caded899a4e23753d02dd530": 1, "21686926": 1, "75979082": 1, "99283811": 1, "s1a_iw_grdh_1sdv_20211008t000317_20211008t000342_040020_04bcb8_rtc": 1, "08t00": [1, 5, 6, 7, 10, 12], "713275z": 1, "27538": 1, "799810": 1, "211968": 1, "310456": [1, 10], "214581": 1, "40020": [1, 10], "8049271": 1, "0231858": 1, "7778347": 1, "9948068": 1, "3051814": 1, "3293811": 1, "4260986": 1, "1940766": 1, "5589421": 1, "8400227": 1, "0500516": 1, "4415867": 1, "0267419": 1, "29107": 1, "9736509": 1, "1920227": 1, "9981906": 1, "1483705": 1, "9713866": 1, "0842789": 1, "9880181": 1, "0016519": 1, "9452983": 1, "9517885": 1, "952922": 1, "6783872": 1, "9030615": 1, "4282012": 1, "829493": 1, "2746315": 1, "s1a_iw_grdh_1sdv_20211008t000317_20211008t000342_040020_04bcb8": 1, "s1a_iw_grdh_1sdv_20211008t000317_20211008t000342_040020_04bcb8_bf4d": 1, "1840973408": 1, "05b8343583496e24e1a1250d3a3829e0": 1, "1848183631": 1, "2645256c3392def121b844c32c339d33": 1, "30518145": 1, "05005156": 1, "84002267": 1, "s1a_iw_grdh_1sdv_20211005t121358_20211005t121423_039984_04bb88_rtc": 1, "035095z": 1, "28154": 1, "534843": 1, "310152": 1, "535347": 1, "39984": 1, "2114809": 1, "8818123": 1, "7389699": 1, "2896879": 1, "922949": 1, "3279448": 1, "985173": 1, "7769805": 1, "4997784": 1, "3665977": 1, "3727328": 1, "081932": 1, "3191727": 1, "2322702": 1, "3288054": 1, "3771232": 1, "2788871": 1, "4647132": 1, "2716817": 1, "6977638": 1, "2172102": 1, "7558724": 1, "2350924": 1, "7816096": 1, "2105142": 1, "7838184": 1, "s1a_iw_grdh_1sdv_20211005t121358_20211005t121423_039984_04bb88": 1, "s1a_iw_grdh_1sdv_20211005t121358_20211005t121423_039984_04bb88_68f7": 1, "1866629861": 1, "683df5f1cfc87127dea2205a0a17ccb4": 1, "1875041877": 1, "9880529abf204173922820443cfecbd": 1, "98517304": 1, "28968788": 1, "s1a_iw_grdh_1sdv_20210930t120551_20210930t120616_039911_04b8ff_rtc": 1, "30t12": [1, 5, 6, 7, 10, 12], "760613z": 1, "259641": 1, "309503": [1, 10], "261585": 1, "39911": [1, 10], "981645": 1, "0127856": 1, "9929388": 1, "1730371": 1, "7241431": 1, "6820254": 1, "2169712": 1, "2799493": 1, "3293488": 1, "5841696": 1, "3758798": 1, "5217953": 1, "3997631": 1, "336514": 1, "3788296": 1, "3029625": 1, "4158056": 1, "2067299": 1, "4037367": 1, "0893222": 1, "4747309": 1, "7597898": 1, "s1a_iw_grdh_1sdv_20210930t120551_20210930t120616_039911_04b8ff": 1, "s1a_iw_grdh_1sdv_20210930t120551_20210930t120616_039911_04b8ff_9b25": 1, "1850859837": 1, "5ef89982114f5e020a97ae3f979d403": 1, "1858802212": 1, "1d08f38ab7c2a0098507531d17e1f27f": 1, "75978977": 1, "99293881": 1, "68202543": 1, "s1a_iw_grdh_1sdv_20210926t000317_20210926t000342_039845_04b6ab_rtc": 1, "26t00": [1, 5, 6, 7, 10, 12], "558327z": 1, "057026": 1, "308907": [1, 10], "059628": 1, "39845": [1, 10], "8046161": 1, "0228311": 1, "7776334": 1, "9948108": 1, "7849711": 1, "9226226": 1, "304979": 1, "3292913": 1, "4259963": 1, "1939866": 1, "5587371": 1, "8400235": 1, "050049": 1, "4414965": 1, "0266401": 1, "2910722": 1, "9735466": 1, "1919348": 1, "998178": 1, "1479197": 1, "9879165": 1, "0016541": 1, "9451919": 1, "9516104": 1, "9296834": 1, "8247488": 1, "9528207": 1, "6783894": 1, "9232851": 1, "6385119": 1, "903647": 1, "4312562": 1, "8294976": 1, "2748119": 1, "s1a_iw_grdh_1sdv_20210926t000317_20210926t000342_039845_04b6ab": 1, "s1a_iw_grdh_1sdv_20210926t000317_20210926t000342_039845_04b6ab_d1e5": 1, "1840122585": 1, "20c32f3e6164b24ec6e85dd33872c453": 1, "1846552525": 1, "05ae60af47c99603dfd1dc7c85769fc6": 1, "30497903": 1, "92262259": 1, "05004897": 1, "84002352": 1, "s1a_iw_grdh_1sdv_20210923t121358_20210923t121423_039809_04b566_rtc": 1, "788780z": 1, "703410": 1, "287715": 1, "308582": [1, 10], "289844": 1, "39809": [1, 10], "2111768": 1, "8817203": 1, "7391737": 1, "2896853": 1, "923047": 1, "3277629": 1, "9853757": 1, "7770679": 1, "5000783": 1, "3667793": 1, "3731362": 1, "0819338": 1, "3290071": 1, "3772145": 1, "2721894": 1, "6976762": 1, "2174118": 1, "7560541": 1, "2107146": 1, "7841806": 1, "s1a_iw_grdh_1sdv_20210923t121358_20210923t121423_039809_04b566": 1, "s1a_iw_grdh_1sdv_20210923t121358_20210923t121423_039809_04b566_0737": 1, "1868141721": 1, "dcdb56f3dfdf4ed20ac8a4b81ed48c0c": 1, "1876188972": 1, "32ea74f78053ba8d27e7531292f4bc45": 1, "36677934": 1, "98537567": 1, "28968528": 1, "s1a_iw_grdh_1sdv_20210918t120550_20210918t120615_039736_04b2fb_rtc": 1, "18t12": [1, 5, 6, 7, 10, 12], "415938z": 1, "915669": 1, "307963": [1, 10], "916208": 1, "39736": [1, 10], "9804251": 1, "0123604": 1, "9938451": 1, "1730113": 1, "7250655": 1, "6820902": 1, "2181956": 1, "2800287": 1, "3304641": 1, "5842491": 1, "3771025": 1, "522415": 1, "4010803": 1, "3367716": 1, "3796289": 1, "3022325": 1, "4165076": 1, "2063617": 1, "4758368": 1, "7597783": 1, "s1a_iw_grdh_1sdv_20210918t120550_20210918t120615_039736_04b2fb": 1, "s1a_iw_grdh_1sdv_20210918t120550_20210918t120615_039736_04b2fb_90af": 1, "1850795544": 1, "d03f2b032eb5765c2cd22e89bdfe0535": 1, "1858497973": 1, "7dbdb7991523f0162808585a0d7443d4": 1, "75977826": 1, "99384511": 1, "68209017": 1, "s1a_iw_grdh_1sdv_20210914t000316_20210914t000341_039670_04b0c4_rtc": 1, "14t00": [1, 5, 6, 7, 10, 12], "135941z": 1, "635342": 1, "307396": [1, 10], "636540": 1, "39670": [1, 10], "8050233": 1, "0230034": 1, "777931": 1, "9946245": 1, "4263041": 1, "1945273": 1, "5592496": 1, "8400214": 1, "0268438": 1, "2910677": 1, "9737551": 1, "1921106": 1, "9982898": 1, "1482781": 1, "9714883": 1, "0842767": 1, "9881171": 1, "0015596": 1, "9454023": 1, "9518765": 1, "9530257": 1, "6784752": 1, "9233863": 1, "6385097": 1, "9031626": 1, "4281991": 1, "8295962": 1, "2747196": 1, "s1a_iw_grdh_1sdv_20210914t000316_20210914t000341_039670_04b0c4": 1, "s1a_iw_grdh_1sdv_20210914t000316_20210914t000341_039670_04b0c4_54a3": 1, "1840281264": 1, "3f605f2b2088cc01280bcd6f7608e662": 1, "1846760166": 1, "102d51eede34dc6072f7f1afad8110ab": 1, "84002139": 1, "s1a_iw_grdh_1sdv_20210911t121357_20210911t121422_039634_04af85_rtc": 1, "406593z": 1, "28150": 1, "905498": 1, "307077": [1, 10], "907688": 1, "39634": [1, 10], "2062181": 1, "8442299": 1, "2112777": 1, "8818112": 1, "7382549": 1, "2896067": 1, "9225418": 1, "3277699": 1, "9847725": 1, "7770764": 1, "4994773": 1, "3666869": 1, "3723294": 1, "0819302": 1, "3189724": 1, "2319983": 1, "328502": 1, "3771218": 1, "278078": 1, "4646187": 1, "2713781": 1, "6976719": 1, "2169051": 1, "7559609": 1, "2349934": 1, "7812479": 1, "2103138": 1, "7834561": 1, "s1a_iw_grdh_1sdv_20210911t121357_20210911t121422_039634_04af85": 1, "s1a_iw_grdh_1sdv_20210911t121357_20210911t121422_039634_04af85_e8a4": 1, "1867417713": 1, "93c2dbd8ce9a329ddd09ef806cb87578": 1, "1875673198": 1, "1b9b355e0f1e8fce595bee4eb53c80a3": 1, "20621812": 1, "36668694": 1, "98477247": 1, "28960674": 1, "s1a_iw_grdh_1sdv_20210906t120550_20210906t120615_039561_04ad0d_rtc": 1, "06t12": [1, 5, 6, 7, 10, 12], "971474z": 1, "470505": 1, "306445": [1, 10], "472443": 1, "39561": [1, 10], "9937412": 1, "1729241": 1, "2179897": 1, "27985": 1, "3557808": 1, "7231898": 1, "3301635": 1, "5845228": 1, "3768966": 1, "5221463": 1, "3585986": 1, "4088628": 1, "4007783": 1, "3368649": 1, "379529": 1, "3023238": 1, "416308": 1, "2065443": 1, "4046465": 1, "0894936": 1, "4756346": 1, "7596901": 1, "s1a_iw_grdh_1sdv_20210906t120550_20210906t120615_039561_04ad0d": 1, "s1a_iw_grdh_1sdv_20210906t120550_20210906t120615_039561_04ad0d_190c": 1, "1849342737": 1, "37bf9b7c3cef4c3467706f9a30741651": 1, "1858394123": 1, "0ea6b1ab787a1d8f8ebc84946d626ae6": 1, "21798965": 1, "75969009": 1, "s1a_iw_grdh_1sdv_20210902t000315_20210902t000340_039495_04aab3_rtc": 1, "02t00": [1, 5, 6, 7, 10, 12], "464707z": 1, "524500": 1, "3191650": 1, "964057": 1, "305843": [1, 10], "965357": 1, "39495": [1, 10], "8055156": 1, "0225425": 1, "7784277": 1, "994344": 1, "7853713": 1, "9225245": 1, "3057912": 1, "3305534": 1, "4266101": 1, "1946166": 1, "0503575": 1, "4415798": 1, "9861775": 1, "1885025": 1, "9036749": 1, "428459": 1, "8298967": 1, "2746233": 1, "s1a_iw_grdh_1sdv_20210902t000315_20210902t000340_039495_04aab3": 1, "s1a_iw_grdh_1sdv_20210902t000315_20210902t000340_039495_04aab3_4826": 1, "1839255425": 1, "3a71e00cc20043b27f151a53a10f51d9": 1, "1847221864": 1, "8038fd60cd30ad2ee4e2727d530bbcef": 1, "30579118": 1, "92252446": 1, "s1a_iw_grdh_1sdv_20210830t121357_20210830t121422_039459_04a972_rtc": 1, "783019z": 1, "282732": 1, "305522": 1, "283307": 1, "39459": 1, "2107698": 1, "8818083": 1, "7376433": 1, "2896145": 1, "9221346": 1, "327595": 1, "9841677": 1, "7769946": 1, "3550311": 1, "1612089": 1, "2704665": 1, "6974866": 1, "2344853": 1, "7813354": 1, "2098142": 1, "78237": 1, "s1a_iw_grdh_1sdv_20210830t121357_20210830t121422_039459_04a972": 1, "s1a_iw_grdh_1sdv_20210830t121357_20210830t121422_039459_04a972_bf51": 1, "1865892369": 1, "33cfdf9c6815fb4b37ed7e0080ab7dd1": 1, "1874919785": 1, "bdb7e9ae1465c91c6d5e16312035a5d8": 1, "98416771": 1, "28961452": 1, "s1a_iw_grdh_1sdv_20210825t120549_20210825t120614_039386_04a6fc_rtc": 1, "25t12": [1, 5, 6, 7, 10, 12], "421490z": 1, "921233": 1, "304892": [1, 10], "921748": 1, "39386": [1, 10], "9799194": 1, "0122809": 1, "7249602": 1, "6820029": 1, "2178898": 1, "2800314": 1, "3556794": 1, "7231908": 1, "3767976": 1, "5223278": 1, "3795279": 1, "3022335": 1, "4163069": 1, "206454": 1, "s1a_iw_grdh_1sdv_20210825t120549_20210825t120614_039386_04a6fc": 1, "s1a_iw_grdh_1sdv_20210825t120549_20210825t120614_039386_04a6fc_7a0b": 1, "1849855320": 1, "952cf5763d5438f40d1eceb53579e42b": 1, "1859057771": 1, "bbf26ae09c477c13fe4e46ddaacf3d8b": 1, "21788976": 1, "68200291": 1, "s1a_iw_grdh_1sdv_20210821t000315_20210821t000340_039320_04a4b9_rtc": [1, 10], "21t00": [1, 5, 6, 7, 10, 12], "059716z": 1, "27540": 1, "559065": [1, 10], "304313": [1, 10], "560368": [1, 10], "39320": [1, 10], "784866": 1, "9224442": 1, "304676": 1, "3293822": 1, "425691": 1, "1940778": 1, "5578145": 1, "8400273": 1, "0496411": 1, "4415057": 1, "9873345": 1, "002659": 1, "9523144": 1, "6784002": 1, "9215023": 1, "6324152": 1, "9022394": 1, "4315562": 1, "s1a_iw_grdh_1sdv_20210821t000315_20210821t000340_039320_04a4b9": [1, 10], "s1a_iw_grdh_1sdv_20210821t000315_20210821t000340_039320_04a4b9_7651": 1, "1841180976": 1, "d47b81a20e85c89a9ca739dc611f1bdd": 1, "1848338829": 1, "8536ed7de681dbe2b83797f670e4d64b": 1, "30467602": 1, "92244421": 1, "04964105": 1, "84002733": 1, "s1a_iw_grdh_1sdv_20210818t121356_20210818t121421_039284_04a383_rtc": [1, 10], "226637z": 1, "725577": [1, 10], "304003": [1, 10], "727697": [1, 10], "39284": [1, 10], "984873": 1, "777075": 1, "4993771": 1, "3666866": 1, "3556367": 1, "1612117": 1, "3189746": 1, "2316372": 1, "3284014": 1, "377031": 1, "2778756": 1, "4646176": 1, "216803": 1, "7560506": 1, "23489": 1, "7815182": 1, "2103145": 1, "7833659": 1, "s1a_iw_grdh_1sdv_20210818t121356_20210818t121421_039284_04a383": [1, 10], "s1a_iw_grdh_1sdv_20210818t121356_20210818t121421_039284_04a383_bc2": 1, "1865977949": 1, "c72bf190efce03f57ab0e694fe8b75e6": 1, "1874387191": 1, "f8d22b60375ca3de7a66ef403d000a09": 1, "36668659": 1, "98487301": 1, "s1a_iw_grdh_1sdv_20210813t120549_20210813t120614_039211_04a0ff_rtc": [1, 10], "13t12": [1, 5, 6, 7, 10, 12], "713793z": 1, "28421": 1, "618300": 1, "902510": 1, "213502": [1, 10], "303359": [1, 10], "214084": [1, 10], "39211": [1, 10], "980624": 1, "012266": 1, "9942447": 1, "1729097": 1, "725573": 1, "681986": 1, "2187053": 1, "2800241": 1, "356795": 1, "7231799": 1, "3308725": 1, "584516": 1, "3776098": 1, "5225003": 1, "3594088": 1, "4089452": 1, "4015868": 1, "3368568": 1, "3800308": 1, "302048": 1, "4170101": 1, "2061761": 1, "4054532": 1, "0894856": 1, "4763396": 1, "759773": 1, "s1a_iw_grdh_1sdv_20210813t120549_20210813t120614_039211_04a0ff": [1, 10], "s1a_iw_grdh_1sdv_20210813t120549_20210813t120614_039211_04a0ff_0305": 1, "1848888770": 1, "768978653becd310c5c3562153d39352": 1, "1857678647": 1, "b8add69dceb8ee53445731c6f5ca7536": 1, "21870534": 1, "75977302": 1, "68198603": 1, "s1a_iw_grdh_1sdv_20210809t000314_20210809t000339_039145_049eac_rtc": [1, 10], "09t00": [1, 5, 6, 7, 10, 12], "454588z": 1, "27539": 1, "524400": 1, "953924": [1, 10], "302764": [1, 10], "955252": [1, 10], "39145": [1, 10], "8043207": 1, "0231077": 1, "784667": 1, "9225384": 1, "3048782": 1, "3293818": 1, "5582245": 1, "8400256": 1, "0496436": 1, "4415958": 1, "829188": 1, "2745475": 1, "s1a_iw_grdh_1sdv_20210809t000314_20210809t000339_039145_049eac": [1, 10], "s1a_iw_grdh_1sdv_20210809t000314_20210809t000339_039145_049eac_ff46": 1, "1838141873": 1, "407ea217dcd530cf2befc106ba45e6e2": 1, "1845668472": 1, "3e72c0abee4953f9d1a2b2b4ac4c8a1a": 1, "30487819": 1, "92253836": 1, "04964364": 1, "84002564": 1, "s1a_iw_grdh_1sdv_20210806t121356_20210806t121421_039109_049d70_rtc": [1, 10], "698596z": 1, "197519": [1, 10], "302448": [1, 10], "199672": [1, 10], "39109": [1, 10], "206319": 1, "8443207": 1, "21138": 1, "8817215": 1, "7386626": 1, "2896015": 1, "9227485": 1, "3280378": 1, "984972": 1, "7769833": 1, "4996778": 1, "3666876": 1, "3726319": 1, "0819315": 1, "3191744": 1, "2319993": 1, "3288059": 1, "377033": 1, "2788888": 1, "4644423": 1, "2716823": 1, "6976735": 1, "217108": 1, "7559621": 1, "235093": 1, "7815193": 1, "2104121": 1, "7839081": 1, "s1a_iw_grdh_1sdv_20210806t121356_20210806t121421_039109_049d70": [1, 10], "s1a_iw_grdh_1sdv_20210806t121356_20210806t121421_039109_049d70_358f": 1, "1866849711": 1, "096d272f2f36c25342ddd02481aa0a3": 1, "1875753699": 1, "e1c25a88759a9a776a9278e4c78609b3": 1, "20631901": 1, "36668765": 1, "98497197": 1, "28960155": 1, "s1a_iw_grdh_1sdv_20210801t120548_20210801t120613_039036_049b1f_rtc": [1, 10], "150857z": 1, "649807": [1, 10], "301855": [1, 10], "651907": [1, 10], "39036": [1, 10], "9798187": 1, "0122831": 1, "9937444": 1, "1730142": 1, "7250623": 1, "6820001": 1, "330366": 1, "5845209": 1, "3589009": 1, "4087696": 1, "3795312": 1, "3025043": 1, "4048505": 1, "0896721": 1, "s1a_iw_grdh_1sdv_20210801t120548_20210801t120613_039036_049b1f": [1, 10], "s1a_iw_grdh_1sdv_20210801t120548_20210801t120613_039036_049b1f_f4cf": 1, "1849667547": 1, "4eb635efbee259c88c82d5d88d54c9d1": 1, "1857752361": 1, "132ed423fcfc43de1554182f7a771302": 1, "99374441": 1, "s1a_iw_grdh_1sdv_20210728t000314_20210728t000339_038970_04991e_rtc": [1, 10], "28t00": [1, 5, 6, 7, 10, 12], "667023z": 1, "799870": 1, "166376": [1, 10], "301342": [1, 10], "167671": [1, 10], "38970": [1, 10], "8061085": 1, "0220796": 1, "7789288": 1, "9942439": 1, "7852751": 1, "9227068": 1, "3061963": 1, "3308234": 1, "4269162": 1, "1947059": 1, "5601722": 1, "8400176": 1, "050666": 1, "4416631": 1, "9719965": 1, "0842657": 1, "9890163": 1, "0009988": 1, "9459099": 1, "9518656": 1, "9322146": 1, "8509456": 1, "9535199": 1, "6780136": 1, "9238997": 1, "6387695": 1, "9040649": 1, "4279096": 1, "8308163": 1, "2750558": 1, "s1a_iw_grdh_1sdv_20210728t000314_20210728t000339_038970_04991": [1, 10], "s1a_iw_grdh_1sdv_20210728t000314_20210728t000339_038970_04991e_c882": 1, "1839235753": 1, "929073f1cd952e202e43aa01a874b040": 1, "1848864998": 1, "e1f7470191ffa37e030aa013d9a2df39": 1, "30619627": 1, "92270681": 1, "05066603": 1, "84001756": 1, "s1a_iw_grdh_1sdv_20210725t121355_20210725t121420_038934_04980f_rtc": [1, 10], "814919z": 1, "28156": 1, "421910": 1, "703470": 1, "313830": [1, 10], "301071": [1, 10], "316007": [1, 10], "38934": [1, 10], "2069263": 1, "844595": 1, "211787": 1, "8816335": 1, "7399877": 1, "2895847": 1, "9237666": 1, "328475": 1, "9861799": 1, "7770566": 1, "5007803": 1, "3666915": 1, "373639": 1, "0822068": 1, "3202836": 1, "2322755": 1, "3441296": 1, "2820428": 1, "3157687": 1, "3098933": 1, "3295116": 1, "3773975": 1, "2796978": 1, "4645368": 1, "2727961": 1, "6979502": 1, "2189474": 1, "7541671": 1, "s1a_iw_grdh_1sdv_20210725t121355_20210725t121420_038934_04980f": [1, 10], "s1a_iw_grdh_1sdv_20210725t121355_20210725t121420_038934_04980f_52ff": 1, "1866902577": 1, "620cc0e00adc415be0da32a043c91fdf": 1, "1876123828": 1, "4eead1a710574c930ed138ef5ed6d1ca": 1, "20692635": 1, "36669149": 1, "98617993": 1, "28958466": 1, "s1a_iw_grdh_1sdv_20210720t120547_20210720t120612_038861_0495ec_rtc": [1, 10], "428473z": 1, "927516": [1, 10], "300524": [1, 10], "929430": [1, 10], "38861": [1, 10], "9815372": 1, "0125173": 1, "7246506": 1, "6819213": 1, "3296548": 1, "5843472": 1, "3761869": 1, "522063": 1, "3577918": 1, "4090512": 1, "4001685": 1, "3366002": 1, "3790305": 1, "3028703": 1, "s1a_iw_grdh_1sdv_20210720t120547_20210720t120612_038861_0495ec": [1, 10], "s1a_iw_grdh_1sdv_20210720t120547_20210720t120612_038861_0495ec_d05a": 1, "1849476617": 1, "364673a424eff2e7a337d7b810ce5116": 1, "1858328480": 1, "f1bb06901c94a5fb1a3c659115a7ea81": 1, "68192128": 1, "s1a_iw_grdh_1sdv_20210716t000313_20210716t000338_038795_0493db_rtc": [1, 10], "16t00": [1, 5, 6, 7, 10, 12], "093195z": 1, "592472": [1, 10], "299995": [1, 10], "593918": [1, 10], "38795": [1, 10], "8040142": 1, "0229333": 1, "7768347": 1, "9950972": 1, "3047751": 1, "3286598": 1, "558532": 1, "8400244": 1, "0260265": 1, "2909957": 1, "9731371": 1, "1918535": 1, "997677": 1, "1482013": 1, "9284301": 1, "8234223": 1, "921606": 1, "6325032": 1, "9024392": 1, "4314618": 1, "8290871": 1, "2745495": 1, "s1a_iw_grdh_1sdv_20210716t000313_20210716t000338_038795_0493db": [1, 10], "s1a_iw_grdh_1sdv_20210716t000313_20210716t000338_038795_0493db_d5af": 1, "1840030943": 1, "bf1988ead80831e90bd12747b6e20ab": 1, "1848342594": 1, "a1f42a31e13b40abc547d541ecc99106": 1, "30477513": 1, "84002436": 1, "s1a_iw_grdh_1sdv_20210713t121354_20210713t121419_038759_0492d4_rtc": [1, 10], "266919z": 1, "766644": [1, 10], "299732": [1, 10], "767193": [1, 10], "38759": [1, 10], "9225387": 1, "3275894": 1, "3188747": 1, "2314562": 1, "3279969": 1, "3770291": 1, "2711753": 1, "6976708": 1, "2165988": 1, "75623": 1, "2347879": 1, "7816079": 1, "2101115": 1, "7833647": 1, "s1a_iw_grdh_1sdv_20210713t121354_20210713t121419_038759_0492d4": [1, 10], "s1a_iw_grdh_1sdv_20210713t121354_20210713t121419_038759_0492d4_f4f6": 1, "1865746386": 1, "b45ffe469526a80df7f15f3cf06d3920": 1, "1875309435": 1, "98702060e657dff744c1f739527efc93": 1, "s1a_iw_grdh_1sdv_20210708t120547_20210708t120612_038686_0490ad_rtc": [1, 10], "613554z": 1, "618280": 1, "112559": [1, 10], "299181": [1, 10], "114550": [1, 10], "38686": [1, 10], "9800153": 1, "0120985": 1, "9941408": 1, "1728225": 1, "7254645": 1, "6818087": 1, "2186013": 1, "2798445": 1, "3565932": 1, "7232721": 1, "330769": 1, "5843365": 1, "3775063": 1, "5223208": 1, "3592076": 1, "4090374": 1, "4013847": 1, "3368588": 1, "3799309": 1, "3021393": 1, "4168093": 1, "2062684": 1, "4052516": 1, "0894876": 1, "4762379": 1, "7596838": 1, "s1a_iw_grdh_1sdv_20210708t120547_20210708t120612_038686_0490ad": [1, 10], "s1a_iw_grdh_1sdv_20210708t120547_20210708t120612_038686_0490ad_1560": 1, "1850256435": 1, "c4f837a30c3504e963a3b47dabd6c752": 1, "1858557537": 1, "feae8308c196144a7f077b63baef7aa7": 1, "21860134": 1, "75968381": 1, "99414079": 1, "s1a_iw_grdh_1sdv_20210704t000312_20210704t000337_038620_048e99_rtc": [1, 10], "04t00": [1, 5, 6, 7, 10, 12], "347747z": 1, "847082": [1, 10], "298649": [1, 10], "848412": [1, 10], "38620": [1, 10], "7772374": 1, "9950893": 1, "7848705": 1, "9226246": 1, "4259974": 1, "1942574": 1, "5585325": 1, "8401146": 1, "9877183": 1, "0018389": 1, "9293622": 1, "8241242": 1, "9526182": 1, "6783937": 1, "9219193": 1, "6328574": 1, "9032405": 1, "4311745": 1, "s1a_iw_grdh_1sdv_20210704t000312_20210704t000337_038620_048e99": [1, 10], "s1a_iw_grdh_1sdv_20210704t000312_20210704t000337_038620_048e99_43e6": 1, "1838209077": 1, "0036e0eeaf5c838c0043755597fd76ab": 1, "1846834581": 1, "22349dd14a66ce75eeeb22dbe3435e40": 1, "92262457": 1, "84011462": 1, "s1a_iw_grdh_1sdv_20210701t121354_20210701t121419_038584_048d87_rtc": [1, 10], "572473z": 1, "071405": [1, 10], "298375": [1, 10], "073541": [1, 10], "38584": [1, 10], "2061166": 1, "8442293": 1, "9224392": 1, "327681": 1, "4993774": 1, "3665963": 1, "3188725": 1, "2318173": 1, "2778762": 1, "4645274": 1, "2102136": 1, "783275": 1, "s1a_iw_grdh_1sdv_20210701t121354_20210701t121419_038584_048d87": [1, 10], "s1a_iw_grdh_1sdv_20210701t121354_20210701t121419_038584_048d87_1ebb": 1, "1866677367": 1, "889320f3af4af71ae729f904fa35c22f": 1, "1876314082": 1, "f3978d8c1ecb65af00647b43a46a0b98": 1, "20611657": 1, "s1a_iw_grdh_1sdv_20210626t120546_20210626t120611_038511_048b6c_rtc": [1, 10], "982444z": 1, "28420": 1, "618310": 1, "482149": [1, 10], "297836": [1, 10], "482738": [1, 10], "38511": [1, 10], "9811274": 1, "0122553": 1, "9943422": 1, "1728168": 1, "7256752": 1, "6819832": 1, "2189082": 1, "279932": 1, "3568964": 1, "7231789": 1, "3309749": 1, "5846053": 1, "377711": 1, "5224993": 1, "3595099": 1, "4089442": 1, "4017855": 1, "336584": 1, "380033": 1, "3022285": 1, "4172097": 1, "2059935": 1, "4055552": 1, "0895748": 1, "4765395": 1, "7596807": 1, "s1a_iw_grdh_1sdv_20210626t120546_20210626t120611_038511_048b6c": [1, 10], "s1a_iw_grdh_1sdv_20210626t120546_20210626t120611_038511_048b6c_65b9": 1, "1851311121": 1, "b82d6c860dc5ac8ea843f1a97cb6441a": 1, "1859184765": 1, "81bfca5f8afc9c06f11b3e4517b230bb": 1, "21890821": 1, "75968067": 1, "99434219": 1, "68198321": 1, "s1a_iw_grdh_1sdv_20210622t000312_20210622t000337_038445_04895a_rtc": [1, 10], "22t00": [1, 5, 6, 7, 10, 12], "594621z": 1, "799760": 1, "093898": [1, 10], "297306": [1, 10], "095344": [1, 10], "38445": [1, 10], "804764": 1, "0652323": 1, "7842669": 1, "9226365": 1, "304573": 1, "3286602": 1, "4255881": 1, "1938073": 1, "557815": 1, "8401176": 1, "0494397": 1, "4416004": 1, "0258279": 1, "2911805": 1, "9729311": 1, "1917677": 1, "9973744": 1, "1482981": 1, "9872403": 1, "0029317": 1, "9281259": 1, "8234288": 1, "9521118": 1, "6784045": 1, "9212975": 1, "6323293": 1, "9015415": 1, "4319316": 1, "s1a_iw_grdh_1sdv_20210622t000312_20210622t000337_038445_04895a": [1, 10], "s1a_iw_grdh_1sdv_20210622t000312_20210622t000337_038445_04895a_5da4": 1, "1840705741": 1, "2b125f8aa43c4904d69da9562a4474": 1, "1848037975": 1, "bf12dbd35a278927b8e1a0fa88e6cf08": 1, "30457296": 1, "92263649": 1, "04943968": 1, "84011759": 1, "s1a_iw_grdh_1sdv_20210619t121353_20210619t121418_038409_04884c_rtc": [1, 10], "19t12": [1, 5, 6, 7, 10, 12], "865662z": 1, "365410": [1, 10], "297036": [1, 10], "365914": [1, 10], "38409": [1, 10], "2104664": 1, "881626": 1, "7374365": 1, "2894367": 1, "4986766": 1, "3664133": 1, "3181661": 1, "2317236": 1, "326585": 1, "3763903": 1, "2770684": 1, "4642523": 1, "2703657": 1, "6973958": 1, "2158885": 1, "756226": 1, "2343832": 1, "7814251": 1, "2096112": 1, "7823689": 1, "s1a_iw_grdh_1sdv_20210619t121353_20210619t121418_038409_04884c": [1, 10], "s1a_iw_grdh_1sdv_20210619t121353_20210619t121418_038409_04884c_9cd": 1, "1862410918": 1, "c5103e6b371b903e1ed9ceb79fea3128": 1, "1872031535": 1, "6aec364b490644e199334a7a156cc0b0": 1, "36641327": 1, "28943666": 1, "s1a_iw_grdh_1sdv_20210614t120545_20210614t120610_038336_04862f_rtc": [1, 10], "373830z": 1, "872859": [1, 10], "296495": [1, 10], "874802": [1, 10], "38336": [1, 10], "9816378": 1, "0125152": 1, "s1a_iw_grdh_1sdv_20210614t120545_20210614t120610_038336_04862f": [1, 10], "s1a_iw_grdh_1sdv_20210614t120545_20210614t120610_038336_04862f_72a7": 1, "1849869905": 1, "9096824f8bccbf42172788b36d2ddd87": 1, "1858333551": 1, "9d9c0437a9e671247144be198054a379": 1, "s1a_iw_grdh_1sdv_20210610t000311_20210610t000336_038270_04841e_rtc": [1, 10], "10t00": [1, 5, 6, 7, 10, 12], "870450z": 1, "369821": [1, 10], "295966": [1, 10], "371078": [1, 10], "38270": [1, 10], "8042156": 1, "0229293": 1, "4258955": 1, "1942577": 1, "0262378": 1, "2912616": 1, "9875152": 1, "0018433": 1, "9525194": 1, "678486": 1, "s1a_iw_grdh_1sdv_20210610t000311_20210610t000336_038270_04841": [1, 10], "s1a_iw_grdh_1sdv_20210610t000311_20210610t000336_038270_04841e_3fa6": 1, "1840290420": 1, "e5730aa51e4b026514360c13ee17a584": 1, "1847644659": 1, "41689411ff4fb41e2006846f825dccaa": 1, "s1a_iw_grdh_1sdv_20210607t121352_20210607t121417_038234_048318_rtc": [1, 10], "07t12": [1, 5, 6, 7, 10, 12], "058343z": 1, "557268": [1, 10], "295704": [1, 10], "559418": [1, 10], "38234": [1, 10], "2112784": 1, "8817209": 1, "7383553": 1, "2895152": 1, "9847709": 1, "7769861": 1, "2779768": 1, "4646182": 1, "s1a_iw_grdh_1sdv_20210607t121352_20210607t121417_038234_048318": [1, 10], "s1a_iw_grdh_1sdv_20210607t121352_20210607t121417_038234_048318_0fb2": 1, "1864517000": 1, "655c7919cd5d3f53cbabef16d08de6a": 1, "1872823263": 1, "dbbfd6dac633e82eabdbac5ac9a68551": 1, "98477091": 1, "28951521": 1, "s1a_iw_grdh_1sdv_20210602t120544_20210602t120609_038161_0480fd_rtc": [1, 10], "441074z": 1, "940813": [1, 10], "295165": [1, 10], "941334": [1, 10], "38161": [1, 10], "9803197": 1, "0121822": 1, "7251613": 1, "6819072": 1, "3797288": 1, "3021413": 1, "s1a_iw_grdh_1sdv_20210602t120544_20210602t120609_038161_0480fd": [1, 10], "s1a_iw_grdh_1sdv_20210602t120544_20210602t120609_038161_0480fd_ca56": 1, "1850358920": 1, "684c4f0b5633fecffbd859ab4f3da347": 1, "1858726594": 1, "f388e4486f437a599c3b899042a3d9f6": 1, "68190721": 1, "s1a_iw_grdh_1sdv_20210529t000310_20210529t000335_038095_047ef4_rtc": 1, "152330z": 1, "651693": 1, "294644": 1, "652966": 1, "38095": 1, "7773358": 1, "9949971": 1, "3049793": 1, "3293816": 1, "4259967": 1, "1940769": 1, "55884": 1, "8401133": 1, "0498502": 1, "4416814": 1, "0264415": 1, "2912571": 1, "s1a_iw_grdh_1sdv_20210529t000310_20210529t000335_038095_047ef4": 1, "s1a_iw_grdh_1sdv_20210529t000310_20210529t000335_038095_047ef4_e47a": 1, "1839290925": 1, "6bc0534ddea95367b8af5fdf5c4ef645": 1, "1847418243": 1, "77f4f9d73931649b14b98fb252d493d8": 1, "30497928": 1, "04985019": 1, "84011335": 1, "s1a_iw_grdh_1sdv_20210526t121351_20210526t121416_038059_047de5_rtc": 1, "351880z": 1, "850793": 1, "294373": 1, "852966": 1, "38059": 1, "2113806": 1, "8816312": 1, "7387616": 1, "2894198": 1, "3191733": 1, "2321799": 1, "s1a_iw_grdh_1sdv_20210526t121351_20210526t121416_038059_047de5": 1, "s1a_iw_grdh_1sdv_20210526t121351_20210526t121416_038059_047de5_c35a": 1, "1865840728": 1, "3f305484c85e14b4b1a588894ed3287b": 1, "1873608727": 1, "e4b745f3050b8e44678298b8bb3f0246": 1, "28941979": 1, "s1a_iw_grdh_1sdv_20210521t120544_20210521t120609_037986_047bbd_rtc": 1, "706900z": 1, "206611": 1, "293821": 1, "207189": 1, "37986": 1, "9804227": 1, "0122703": 1, "7248549": 1, "6819157": 1, "3302615": 1, "5842511": 1, "3768978": 1, "5222365": 1, "3585997": 1, "4089531": 1, "4008748": 1, "3365029": 1, "4046476": 1, "0895839": 1, "4756334": 1, "7595998": 1, "s1a_iw_grdh_1sdv_20210521t120544_20210521t120609_037986_047bbd": 1, "s1a_iw_grdh_1sdv_20210521t120544_20210521t120609_037986_047bbd_1faa": 1, "1850823804": 1, "e4993f9c2d458bda8f08cfce9719aaa7": 1, "1859433373": 1, "8c550008f76e2752130d375329355c92": 1, "75959983": 1, "68191566": 1, "s1a_iw_grdh_1sdv_20210517t000309_20210517t000334_037920_0479a9_rtc": 1, "364326z": 1, "863631": 1, "293289": 1, "865021": 1, "37920": 1, "7776356": 1, "994901": 1, "4262001": 1, "193986": 1, "5589426": 1, "8401129": 1, "0499522": 1, "4416791": 1, "0266427": 1, "2911624": 1, "9980864": 1, "1482825": 1, "9713891": 1, "0843691": 1, "9451944": 1, "9517005": 1, "9221241": 1, "6329433": 1, "9035389": 1, "4309878": 1, "8293875": 1, "2744532": 1, "s1a_iw_grdh_1sdv_20210517t000309_20210517t000334_037920_0479a9": 1, "s1a_iw_grdh_1sdv_20210517t000309_20210517t000334_037920_0479a9_4c29": 1, "1840322242": 1, "9d102c47c57bc910df0dd66904b80e33": 1, "1848463651": 1, "3aa211782bf91d37da271cea616011d1": 1, "04995217": 1, "84011292": 1, "s1a_iw_grdh_1sdv_20210514t121351_20210514t121416_037884_047898_rtc": 1, "650190z": 1, "703360": 1, "149895": 1, "293016": 1, "150485": 1, "37884": 1, "7385577": 1, "2894224": 1, "9226475": 1, "3280392": 1, "4996789": 1, "3664168": 1, "3725316": 1, "0818408": 1, "3190734": 1, "2319988": 1, "2169032": 1, "7562317": 1, "s1a_iw_grdh_1sdv_20210514t121351_20210514t121416_037884_047898": 1, "s1a_iw_grdh_1sdv_20210514t121351_20210514t121416_037884_047898_b8a6": 1, "1865477089": 1, "922e8032cee53ac2b3903689eed8e83d": 1, "1873094701": 1, "9d761e8204075590a645512ce943cf28": 1, "36641677": 1, "28942239": 1, "s1a_iw_grdh_1sdv_20210509t120543_20210509t120608_037811_047676_rtc": 1, "202200z": 1, "618230": 1, "701918": 1, "292470": 1, "702482": 1, "37811": 1, "724957": 1, "6819128": 1, "3302626": 1, "5843413": 1, "3768989": 1, "5223268": 1, "3586986": 1, "4087716": 1, "4008759": 1, "3365932": 1, "s1a_iw_grdh_1sdv_20210509t120543_20210509t120608_037811_047676": 1, "s1a_iw_grdh_1sdv_20210509t120543_20210509t120608_037811_047676_f363": 1, "1849317170": 1, "7172af952b211c9854795fe50e8f2919": 1, "1858320559": 1, "de17fb6a802adf48070ef359bd1ea9e4": 1, "68191284": 1, "s1a_iw_grdh_1sdv_20210505t000309_20210505t000334_037745_047463_rtc": 1, "746142z": 1, "245439": 1, "291939": 1, "246846": 1, "37745": 1, "8048197": 1, "0229173": 1, "7848727": 1, "9227148": 1, "3053844": 1, "3296515": 1, "4263031": 1, "1942565": 1, "5590451": 1, "8401125": 1, "0500541": 1, "4416768": 1, "0267445": 1, "2911601": 1, "9981881": 1, "1482803": 1, "9529244": 1, "6784774": 1, "9232779": 1, "6382414": 1, "9029558": 1, "428023": 1, "s1a_iw_grdh_1sdv_20210505t000309_20210505t000334_037745_047463": 1, "s1a_iw_grdh_1sdv_20210505t000309_20210505t000334_037745_047463_35e": 1, "1840475079": 1, "c4b168138e0ff50234c9af93ff9f2960": 1, "1847690067": 1, "77ca1e771e902bc345f9e459b9fb1e4": 1, "30538436": 1, "92271475": 1, "05005415": 1, "s1a_iw_grdh_1sdv_20210502t121350_20210502t121415_037709_047321_rtc": 1, "953073z": 1, "28243": 1, "421000": 1, "703430": 1, "452022": 1, "291617": 1, "454124": 1, "37709": 1, "8653362": 1, "5975248": 1, "5002799": 1, "3665092": 1, "3733379": 1, "0819347": 1, "3196777": 1, "2322726": 1, "343525": 1, "2817691": 1, "3150629": 1, "309619": 1, "3292099": 1, "3771252": 1, "272391": 1, "6978578": 1, "2176147": 1, "7560552": 1, "2353962": 1, "7817015": 1, "2109163": 1, "7843623": 1, "2047796": 1, "8465235": 1, "7393732": 1, "289412": 1, "9232584": 1, "3283015": 1, "9856741": 1, "7768832": 1, "s1a_iw_grdh_1sdv_20210502t121350_20210502t121415_037709_047321": 1, "s1a_iw_grdh_1sdv_20210502t121350_20210502t121415_037709_047321_709": 1, "1868137657": 1, "9e0dc37e6fb1a0e9a6f3a0f1431e2a84": 1, "1876026692": 1, "6e7829665ab124a839cbe472642423af": 1, "20477962": 1, "36650916": 1, "98567413": 1, "s1a_iw_grdh_1sdv_20210427t120543_20210427t120608_037636_0470a6_rtc": 1, "506409z": 1, "006150": 1, "290982": 1, "006668": 1, "37636": 1, "9808206": 1, "0120814": 1, "9944397": 1, "1727239": 1, "7257709": 1, "6818003": 1, "2189072": 1, "2798418": 1, "3309738": 1, "584515": 1, "401689": 1, "3369461": 1, "3801318": 1, "302047": 1, "4171099": 1, "2060848": 1, "4765383": 1, "7595904": 1, "s1a_iw_grdh_1sdv_20210427t120543_20210427t120608_037636_0470a6": 1, "s1a_iw_grdh_1sdv_20210427t120543_20210427t120608_037636_0470a6_d059": 1, "1851511153": 1, "4282a2b9eca1c33c3fb745616cb50124": 1, "1860083984": 1, "72b3fa91c78dab08fc8984d56fba5f88": 1, "21890718": 1, "75959041": 1, "99443967": 1, "68180025": 1, "s1a_iw_grdh_1sdv_20210423t000308_20210423t000333_037570_046e48_rtc": 1, "367239z": 1, "866560": 1, "290376": 1, "867917": 1, "37570": 1, "7772396": 1, "9951795": 1, "5586355": 1, "8402045": 1, "0263371": 1, "2911692": 1, "9876143": 1, "0017509": 1, "9443479": 1, "9504558": 1, "9292584": 1, "8240362": 1, "9526231": 1, "678574": 1, "9218108": 1, "6325891": 1, "9032429": 1, "4312647": 1, "8291811": 1, "2742769": 1, "s1a_iw_grdh_1sdv_20210423t000308_20210423t000333_037570_046e48": 1, "s1a_iw_grdh_1sdv_20210423t000308_20210423t000333_037570_046e48_dd3c": 1, "1840542859": 1, "e27803afbe0278b95912952b8fe6b3d6": 1, "1847647099": 1, "94c9d7c30511b961ce76d64a31e044b9": 1, "84020446": 1, "s1a_iw_grdh_1sdv_20210420t121350_20210420t121415_037534_046d0c_rtc": 1, "616767z": 1, "421820": 1, "703310": 1, "115720": 1, "290060": 1, "117814": 1, "37534": 1, "2060163": 1, "8440482": 1, "2106702": 1, "8815369": 1, "7378442": 1, "2894315": 1, "9223382": 1, "3276824": 1, "9844677": 1, "7769001": 1, "4990771": 1, "366505": 1, "3553339": 1, "1612103": 1, "3186738": 1, "2312747": 1, "3269813": 1, "3777464": 1, "2775732": 1, "4644355": 1, "2708722": 1, "6974887": 1, "2162937": 1, "7563186": 1, "2346883": 1, "7813365": 1, "2100132": 1, "7829128": 1, "s1a_iw_grdh_1sdv_20210420t121350_20210420t121415_037534_046d0c": 1, "s1a_iw_grdh_1sdv_20210420t121350_20210420t121415_037534_046d0c_b82c": 1, "1868997106": 1, "398187d8fe3aa734bafbac5aa5630469": 1, "1876932801": 1, "70a47b71902d03cf4a35bf9b56d9ee5b": 1, "20601633": 1, "36650496": 1, "98446774": 1, "28943147": 1, "s1a_iw_grdh_1sdv_20210415t120542_20210415t120607_037461_046a8e_rtc": 1, "061444z": 1, "561187": 1, "289422": 1, "561702": 1, "37461": 1, "9799146": 1, "0121006": 1, "3301613": 1, "5843423": 1, "3767965": 1, "5222375": 1, "3584997": 1, "4090443": 1, "400776": 1, "3366844": 1, "3794302": 1, "3025053": 1, "4163057": 1, "2063637": 1, "4045468": 1, "0895849": 1, "4756323": 1, "7595096": 1, "s1a_iw_grdh_1sdv_20210415t120542_20210415t120607_037461_046a8": 1, "s1a_iw_grdh_1sdv_20210415t120542_20210415t120607_037461_046a8e_e06b": 1, "1850136497": 1, "6257df5d19406c9e1f8ef686eae1368b": 1, "1858586252": 1, "492d5f1c8eb59734de956f1f9bc19793": 1, "75950957": 1, "s1a_iw_grdh_1sdv_20210411t000308_20210411t000333_037395_046837_rtc": 1, "827103z": 1, "524370": 1, "326434": 1, "288823": 1, "327771": 1, "37395": 1, "8049677": 1, "0653184": 1, "3045735": 1, "3288408": 1, "4255891": 1, "1940781": 1, "557918": 1, "8402074": 1, "9872354": 1, "0027514": 1, "9522155": 1, "6784925": 1, "9212927": 1, "632149": 1, "901746": 1, "4320176": 1, "s1a_iw_grdh_1sdv_20210411t000308_20210411t000333_037395_046837": 1, "s1a_iw_grdh_1sdv_20210411t000308_20210411t000333_037395_046837_115a": 1, "1841631842": 1, "f36c9e342038576cbfd52f4304874713": 1, "1848475394": 1, "c0e7935406caf34e7d4c2fb0d5e630c2": 1, "30457345": 1, "84020742": 1, "s1a_iw_grdh_1sdv_20210408t121349_20210408t121414_037359_0466fa_rtc": 1, "083742z": 1, "582680": 1, "288506": 1, "584804": 1, "37359": 1, "2108727": 1, "8816283": 1, "9222372": 1, "3276838": 1, "9842667": 1, "776903": 1, "4989769": 1, "3665046": 1, "2100152": 1, "782642": 1, "s1a_iw_grdh_1sdv_20210408t121349_20210408t121414_037359_0466fa": 1, "s1a_iw_grdh_1sdv_20210408t121349_20210408t121414_037359_0466fa_0943": 1, "1868324949": 1, "b24d81cbe89019caff86ec89392506f7": 1, "1876432960": 1, "18aca2eec884dd83e5e8b096deaafe8c": 1, "36650461": 1, "98426667": 1, "s1a_iw_grdh_1sdv_20210403t120542_20210403t120607_037286_046480_rtc": 1, "597722z": 1, "902440": 1, "096815": 1, "287872": 1, "098629": 1, "37286": 1, "9821388": 1, "0124143": 1, "9936341": 1, "1727468": 1, "7247463": 1, "6817383": 1, "2175788": 1, "2795829": 1, "3549694": 1, "7231978": 1, "3298552": 1, "5841647": 1, "3763871": 1, "5218805": 1, "357994": 1, "4090492": 1, "4003683": 1, "3364177": 1, "3791304": 1, "302779": 1, "4160098": 1, "2069083": 1, "4042409": 1, "0893171": 1, "4753295": 1, "7594225": 1, "s1a_iw_grdh_1sdv_20210403t120542_20210403t120607_037286_046480": 1, "s1a_iw_grdh_1sdv_20210403t120542_20210403t120607_037286_046480_b51": 1, "1850690130": 1, "482cf4e210876f5ff7addfc9b9a77cbd": 1, "1859134985": 1, "7e2e880bc52fc3249d37c051cbb58ecd": 1, "21757878": 1, "75942245": 1, "99363408": 1, "68173833": 1, "s1a_iw_grdh_1sdv_20210330t000307_20210330t000332_037220_046230_rtc": 1, "340535z": 1, "524440": 1, "839794": 1, "287280": 1, "841277": 1, "37220": 1, "9064251": 1, "4485192": 1, "9871388": 1, "0029339": 1, "9972727": 1, "1483004": 1, "9728294": 1, "1917699": 1, "0257312": 1, "291363": 1, "0493403": 1, "4416928": 1, "5581225": 1, "8401163": 1, "4255898": 1, "1942587": 1, "7845687": 1, "9226305": 1, "s1a_iw_grdh_1sdv_20210330t000307_20210330t000332_037220_046230": 1, "s1a_iw_grdh_1sdv_20210330t000307_20210330t000332_037220_046230_0349": 1, "1840256361": 1, "64f05846135b33746c2671786bf69cb8": 1, "1846854044": 1, "91e8c2854f998792d0554fade346bad4": 1, "92263053": 1, "04934029": 1, "84011632": 1, "s1a_iw_grdh_1sdv_20210327t121349_20210327t121414_037184_0460f2_rtc": 1, "688939z": 1, "28239": 1, "187996": 1, "286962": 1, "189882": 1, "37184": 1, "8607112": 1, "5968306": 1, "4989777": 1, "366324": 1, "2037621": 1, "8467884": 1, "210874": 1, "8814478": 1, "7378413": 1, "289251": 1, "9845651": 1, "7767183": 1, "s1a_iw_grdh_1sdv_20210327t121349_20210327t121414_037184_0460f2": 1, "s1a_iw_grdh_1sdv_20210327t121349_20210327t121414_037184_0460f2_dca6": 1, "1868773937": 1, "a144b440fc73caed629b81a85048acc1": 1, "1876794561": 1, "8d9ea8dccc9c50949b6cb96ec1d11262": 1, "20376212": 1, "36632403": 1, "98456513": 1, "28925102": 1, "s1a_iw_grdh_1sdv_20210322t120541_20210322t120606_037111_045e7a_rtc": 1, "345504z": 1, "845375": 1, "286330": 1, "845632": 1, "37111": 1, "9935334": 1, "1727497": 1, "217274": 1, "2796758": 1, "3545626": 1, "7231115": 1, "3790261": 1, "3025093": 1, "s1a_iw_grdh_1sdv_20210322t120541_20210322t120606_037111_045e7a": 1, "s1a_iw_grdh_1sdv_20210322t120541_20210322t120606_037111_045e7a_6e29": 1, "1852849134": 1, "ca05a1fb3fed07389840431dba51b3a6": 1, "1861208127": 1, "175e4ab087a06d83d97c22186fb340b": 1, "21727397": 1, "99353338": 1, "s1a_iw_grdh_1sdv_20210318t000307_20210318t000332_037045_045c26_rtc": 1, "961567z": 1, "460896": 1, "285734": 1, "462239": 1, "37045": 1, "8055133": 1, "0224523": 1, "7848771": 1, "9228951": 1, "4266091": 1, "1943458": 1, "986175": 1, "1884123": 1, "9885135": 1, "0011901": 1, "9036702": 1, "4282787": 1, "8300045": 1, "2748918": 1, "s1a_iw_grdh_1sdv_20210318t000307_20210318t000332_037045_045c26": 1, "s1a_iw_grdh_1sdv_20210318t000307_20210318t000332_037045_045c26_f988": 1, "1841803775": 1, "27f45b7d4cbf705675e5c969361d4d3c": 1, "1848608152": 1, "e3f20b300ed714a30f9957b92c92d24f": 1, "92289511": 1, "s1a_iw_grdh_1sdv_20210315t121348_20210315t121413_037009_045ae4_rtc": 1, "353874z": 1, "852977": 1, "285412": 1, "854771": 1, "37009": 1, "3185734": 1, "2311839": 1, "2773702": 1, "4645247": 1, "2100159": 1, "7825517": 1, "2037628": 1, "8466981": 1, "7380451": 1, "2892484": 1, "s1a_iw_grdh_1sdv_20210315t121348_20210315t121413_037009_045ae4": 1, "s1a_iw_grdh_1sdv_20210315t121348_20210315t121413_037009_045ae4_6925": 1, "1870790475": 1, "6c24f0674a983da87ea443e40eb3134d": 1, "1878757013": 1, "e8ec5d8b2b6ba85282a67b0df2c2a499": 1, "20376278": 1, "28924842": 1, "s1a_iw_grdh_1sdv_20210310t120541_20210310t120606_036936_045868_rtc": 1, "192429z": 1, "691590": 1, "284776": 1, "693267": 1, "36936": 1, "9936309": 1, "1726568": 1, "7247432": 1, "6816483": 1, "2174768": 1, "2795838": 1, "3546652": 1, "7232007": 1, "3761846": 1, "5218825": 1, "4001651": 1, "3363295": 1, "4159088": 1, "2069094": 1, "4040381": 1, "0892289": 1, "4751272": 1, "7593343": 1, "s1a_iw_grdh_1sdv_20210310t120541_20210310t120606_036936_045868": 1, "s1a_iw_grdh_1sdv_20210310t120541_20210310t120606_036936_045868_0f4a": 1, "1852351421": 1, "382f8c13e2f1a9e85ef07ab3cc1489bf": 1, "1859984464": 1, "c699f8e898fe81d8db8e2133e216d5c8": 1, "21747684": 1, "75933429": 1, "99363087": 1, "68164825": 1, "s1a_iw_grdh_1sdv_20210306t000307_20210306t000332_036870_045604_rtc": 1, "005012z": 1, "524530": 1, "799850": 1, "504373": 1, "284164": 1, "505651": 1, "36870": 1, "8058131": 1, "0223561": 1, "778629": 1, "99434": 1, "7852795": 1, "9228872": 1, "4267113": 1, "1944357": 1, "5597636": 1, "84029": 1, "0502659": 1, "4419427": 1, "9717932": 1, "0842701": 1, "9887091": 1, "0009153": 1, "9321204": 1, "8512182": 1, "9534284": 1, "6783764": 1, "9236925": 1, "6385935": 1, "9038676": 1, "4280942": 1, "8305113": 1, "2749718": 1, "s1a_iw_grdh_1sdv_20210306t000307_20210306t000332_036870_045604": 1, "s1a_iw_grdh_1sdv_20210306t000307_20210306t000332_036870_045604_ddc6": 1, "1842361718": 1, "5b69b97f00dd999d12b225b1ad192ed": 1, "1848755445": 1, "fa4a06dbfa636e09222588b57ef5b640": 1, "92288717": 1, "05026587": 1, "84029004": 1, "s1a_iw_grdh_1sdv_20210303t121348_20210303t121413_036834_0454c9_rtc": 1, "245451z": 1, "2916190": 1, "745322": 1, "283849": 1, "745579": 1, "36834": 1, "8646325": 1, "5974388": 1, "4988778": 1, "3662334": 1, "3551326": 1, "1611191": 1, "3183697": 1, "2314537": 1, "3265768": 1, "3777444": 1, "2106708": 1, "8814466": 1, "7378427": 1, "2893412": 1, "9223398": 1, "3277726": 1, "s1a_iw_grdh_1sdv_20210303t121348_20210303t121413_036834_0454c9": 1, "s1a_iw_grdh_1sdv_20210303t121348_20210303t121413_036834_0454c9_6015": 1, "1870390775": 1, "62d575a4e47d1064e8448c8ad45770e7": 1, "1878114076": 1, "34b5b3c45c08b3ea9d65131fe9e801da": 1, "36623339": 1, "28934124": 1, "s1a_iw_grdh_1sdv_20210226t120541_20210226t120606_036761_04524c_rtc": 1, "153373z": 1, "652546": 1, "283212": 1, "654199": 1, "36761": 1, "9935302": 1, "1726596": 1, "724641": 1, "6816511": 1, "2173749": 1, "2795847": 1, "400064": 1, "3363305": 1, "4159065": 1, "2067289": 1, "4039373": 1, "0892299": 1, "4750278": 1, "7594256": 1, "s1a_iw_grdh_1sdv_20210226t120541_20210226t120606_036761_04524c": 1, "s1a_iw_grdh_1sdv_20210226t120541_20210226t120606_036761_04524c_a4f4": 1, "1851793184": 1, "ba24fdbde57b356885fd4124a7dc101f": 1, "1859249694": 1, "5303891de377e4d13ae529bfa4b08174": 1, "21737489": 1, "75942559": 1, "99353017": 1, "68165107": 1, "s1a_iw_grdh_1sdv_20210222t000307_20210222t000332_036695_044ff8_rtc": 1, "101142z": 1, "600569": 1, "282616": 1, "601714": 1, "36695": 1, "7851789": 1, "9228892": 1, "3056881": 1, "3298314": 1, "4265075": 1, "1944364": 1, "5596611": 1, "8402905": 1, "0501639": 1, "441945": 1, "9861725": 1, "1883222": 1, "988511": 1, "0011": 1, "s1a_iw_grdh_1sdv_20210222t000307_20210222t000332_036695_044ff8": 1, "s1a_iw_grdh_1sdv_20210222t000307_20210222t000332_036695_044ff8_44fa": 1, "1841809107": 1, "6becf06aa23c3060b501c5bd02f05444": 1, "1847744667": 1, "7e67d8c1145027fea562d551f72a2aa8": 1, "30568811": 1, "92288915": 1, "05016389": 1, "84029046": 1, "s1a_iw_grdh_1sdv_20210219t121348_20210219t121413_036659_044ebc_rtc": 1, "373591z": 1, "873464": 1, "282300": 1, "873719": 1, "36659": 1, "864834": 1, "5975279": 1, "4988775": 1, "3663237": 1, "3183708": 1, "2312732": 1, "3264762": 1, "3776537": 1, "2160927": 1, "7560466": 1, "234486": 1, "7812451": 1, "2098148": 1, "7822798": 1, "2036599": 1, "8468781": 1, "9844646": 1, "7767197": 1, "s1a_iw_grdh_1sdv_20210219t121348_20210219t121413_036659_044ebc": 1, "s1a_iw_grdh_1sdv_20210219t121348_20210219t121413_036659_044ebc_98a2": 1, "1872136979": 1, "c1845dd70ec33aeec81c443b2ac3fdaf": 1, "1879319111": 1, "5078477a0bee6c9c57407abee8a21861": 1, "20365991": 1, "36632368": 1, "131": 1, "s1a_iw_grdh_1sdv_20210214t120541_20210214t120606_036586_044c38_rtc": 1, "310324z": 1, "28431": 1, "809495": 1, "281656": 1, "811154": 1, "36586": 1, "7243378": 1, "6817496": 1, "2169681": 1, "2796786": 1, "3540544": 1, "7230262": 1, "3292464": 1, "5840803": 1, "3756796": 1, "5219778": 1, "3996609": 1, "3364248": 1, "4157058": 1, "2068211": 1, "4035373": 1, "0895047": 1, "4746256": 1, "7594298": 1, "s1a_iw_grdh_1sdv_20210214t120541_20210214t120606_036586_044c38": 1, "s1a_iw_grdh_1sdv_20210214t120541_20210214t120606_036586_044c38_ebb8": 1, "1852176053": 1, "20d7dab0fbd254502835ecc5782aa843": 1, "1859100582": 1, "a36a4150b4d55c4d58ebe32242db8417": 1, "21696813": 1, "75942978": 1, "68174958": 1, "132": 1, "s1a_iw_grdh_1sdv_20210210t000307_20210210t000332_036520_0449d9_rtc": 1, "428394z": 1, "524360": 1, "3191700": 1, "927869": 1, "281049": 1, "928920": 1, "36520": 1, "8052744": 1, "0654928": 1, "3044726": 1, "3289313": 1, "4254862": 1, "1938077": 1, "5577139": 1, "8403888": 1, "0495494": 1, "4418685": 1, "9282273": 1, "8234266": 1, "9213939": 1, "6321468": 1, "9021384": 1, "4315583": 1, "8289816": 1, "2743712": 1, "s1a_iw_grdh_1sdv_20210210t000307_20210210t000332_036520_0449d9": 1, "s1a_iw_grdh_1sdv_20210210t000307_20210210t000332_036520_0449d9_45e6": 1, "1841853646": 1, "15c868b1e130b2a515dff3b476ce6f9c": 1, "1847695512": 1, "1db79b216dff9a299c061a6fac824977": 1, "30447261": 1, "04954942": 1, "84038879": 1, "133": [1, 12], "s1a_iw_grdh_1sdv_20210207t121349_20210207t121414_036484_04489d_rtc": 1, "793585z": 1, "293448": 1, "280733": 1, "293723": 1, "36484": 1, "2705674": 1, "6975774": 1, "2344834": 1, "7816062": 1, "s1a_iw_grdh_1sdv_20210207t121349_20210207t121414_036484_04489d": 1, "s1a_iw_grdh_1sdv_20210207t121349_20210207t121414_036484_04489d_60b2": 1, "1872843598": 1, "a449765d7bcfe68879a8fd8f753fb9cc": 1, "1879673984": 1, "58d4b4861bb49acc5e80d076ff195487": 1, "134": 1, "s1a_iw_grdh_1sdv_20210202t120542_20210202t120607_036411_044618_rtc": 1, "664862z": 1, "618100": 1, "164051": 1, "280088": 1, "165674": 1, "36411": 1, "9814365": 1, "0125194": 1, "9930331": 1, "1728541": 1, "7241367": 1, "6818453": 1, "2167642": 1, "2796804": 1, "3537524": 1, "7232097": 1, "3290449": 1, "5841725": 1, "3755761": 1, "5217983": 1, "3570839": 1, "4090581": 1, "3995564": 1, "3361551": 1, "3786297": 1, "303145": 1, "4157012": 1, "2064601": 1, "4033356": 1, "0895067": 1, "4744257": 1, "7595221": 1, "s1a_iw_grdh_1sdv_20210202t120542_20210202t120607_036411_044618": 1, "s1a_iw_grdh_1sdv_20210202t120542_20210202t120607_036411_044618_fa49": 1, "1852343464": 1, "3d9b85b4578c08f70cf65978a3842518": 1, "1859133861": 1, "95efe91ab80e01479ee73b022c81d42c": 1, "21676423": 1, "75952213": 1, "99303309": 1, "68184528": 1, "135": 1, "s1a_iw_grdh_1sdv_20210129t000308_20210129t000333_036345_0443c6_rtc": 1, "796758z": 1, "27543": 1, "524340": 1, "296249": 1, "279494": 1, "297266": 1, "36345": 1, "8051737": 1, "0654948": 1, "7842713": 1, "9228168": 1, "3044738": 1, "3293827": 1, "4254876": 1, "1941687": 1, "5578159": 1, "8402981": 1, "0259298": 1, "2911782": 1, "9729262": 1, "1915874": 1, "9974761": 1, "1482959": 1, "9439344": 1, "950194": 1, "9213987": 1, "6323271": 1, "9018423": 1, "4318351": 1, "8289862": 1, "2745515": 1, "s1a_iw_grdh_1sdv_20210129t000308_20210129t000333_036345_0443c6": 1, "s1a_iw_grdh_1sdv_20210129t000308_20210129t000333_036345_0443c6_e01a": 1, "1841294015": 1, "dd31c2f252d6d235fae3434fd52bf337": 1, "1846880291": 1, "bb053aaa773133336e184201b8078cf2": 1, "30447385": 1, "92281685": 1, "84029811": 1, "136": 1, "s1a_iw_grdh_1sdv_20210126t121349_20210126t121414_036309_04428f_rtc": 1, "170790z": 1, "670649": 1, "279183": 1, "670932": 1, "36309": 1, "8651353": 1, "597526": 1, "3555368": 1, "1610306": 1, "2101128": 1, "7831842": 1, "2040661": 1, "8468804": 1, "9225465": 1, "3280405": 1, "9849673": 1, "7767126": 1, "s1a_iw_grdh_1sdv_20210126t121349_20210126t121414_036309_04428f": 1, "s1a_iw_grdh_1sdv_20210126t121349_20210126t121414_036309_04428f_059d": 1, "1873636693": 1, "f111755410354282ec44a5a476e5164b": 1, "1880219969": 1, "d2503452e8f718f8ad78cc7e327a7e50": 1, "20406612": 1, "98496726": 1, "137": 1, "s1a_iw_grdh_1sdv_20210121t120542_20210121t120607_036236_044009_rtc": 1, "958063z": 1, "457235": 1, "278537": 1, "458891": 1, "36236": 1, "9829489": 1, "0125776": 1, "7251581": 1, "6818171": 1, "2179876": 1, "2796695": 1, "3301646": 1, "5846131": 1, "4757328": 1, "7595085": 1, "s1a_iw_grdh_1sdv_20210121t120542_20210121t120607_036236_044009": 1, "s1a_iw_grdh_1sdv_20210121t120542_20210121t120607_036236_044009_0293": 1, "1853063864": 1, "a3514f28bf368648c33dd64c5ce06a37": 1, "1859593009": 1, "e89fbe72349604cfbee0422d8bd00370": 1, "75950853": 1, "68181714": 1, "138": 1, "s1a_iw_grdh_1sdv_20210117t000308_20210117t000333_036170_043dad_rtc": 1, "123774z": 1, "623271": 1, "277933": 1, "624276": 1, "36170": 1, "8049204": 1, "0229153": 1, "7846759": 1, "9228991": 1, "3051819": 1, "3295617": 1, "4260975": 1, "1938058": 1, "5591485": 1, "8402926": 1, "0500593": 1, "4418571": 1, "0268463": 1, "2911579": 1, "9881221": 1, "0017399": 1, "9530306": 1, "6786555": 1, "9031673": 1, "4283794": 1, "8295985": 1, "2748098": 1, "s1a_iw_grdh_1sdv_20210117t000308_20210117t000333_036170_043dad": 1, "s1a_iw_grdh_1sdv_20210117t000308_20210117t000333_036170_043dad_1e9c": 1, "1841582787": 1, "bd74f0f4a16dfc3b66832b7180c36b3": 1, "1847287214": 1, "75fdd4c00cff66d3063388f668fa5992": 1, "30518194": 1, "92289908": 1, "05005933": 1, "84029259": 1, "139": 1, "s1a_iw_grdh_1sdv_20210114t121350_20210114t121415_036134_043c7e_rtc": 1, "556282z": 1, "056154": 1, "277630": 1, "056410": 1, "36134": 1, "8647336": 1, "5975285": 1, "2707714": 1, "6973979": 1, "2109743": 1, "8816289": 1, "73815": 1, "2894276": 1, "s1a_iw_grdh_1sdv_20210114t121350_20210114t121415_036134_043c7": 1, "s1a_iw_grdh_1sdv_20210114t121350_20210114t121415_036134_043c7e_4e4a": 1, "1873433928": 1, "4c74052dac83dd5a992624cb09c6df0d": 1, "1880196912": 1, "a0f375318ec89a0ea5bba3a6a9c1e5ba": 1, "28942758": 1, "140": 1, "s1a_iw_grdh_1sdv_20210109t120543_20210109t120608_036061_0439ee_rtc": 1, "523867z": 1, "902500": 1, "023063": 1, "276974": 1, "024671": 1, "36061": 1, "4007771": 1, "3367747": 1, "s1a_iw_grdh_1sdv_20210109t120543_20210109t120608_036061_0439e": 1, "s1a_iw_grdh_1sdv_20210109t120543_20210109t120608_036061_0439ee_8c80": 1, "1854512239": 1, "0d4b042a710815abaa9e3dc3d20fe704": 1, "1860784863": 1, "75cc2269109b910806dbb3ac101fb752": 1, "141": [1, 6], "s1a_iw_grdh_1sdv_20210105t000309_20210105t000334_035995_043787_rtc": 1, "634308z": 1, "133805": 1, "276359": 1, "134812": 1, "35995": 1, "805614": 1, "0224503": 1, "7785305": 1, "9944322": 1, "7849777": 1, "9228931": 1, "305586": 1, "3294705": 1, "4265079": 1, "1945266": 1, "5594561": 1, "8402913": 1, "9716916": 1, "0842723": 1, "988506": 1, "0009197": 1, "9456029": 1, "951782": 1, "932019": 1, "8512204": 1, "9533247": 1, "6782884": 1, "9235864": 1, "6384153": 1, "9036655": 1, "4280984": 1, "8299976": 1, "2746213": 1, "s1a_iw_grdh_1sdv_20210105t000309_20210105t000334_035995_043787": 1, "s1a_iw_grdh_1sdv_20210105t000309_20210105t000334_035995_043787_a787": 1, "1840810614": 1, "6561f26dc6f7b814c6c684e04caf7b30": 1, "1846825213": 1, "b8735c3650f43378b765259397be4583": 1, "30558604": 1, "92289313": 1, "84029131": 1, "142": 1, "s1a_iw_grdh_1sdv_20210102t121350_20210102t121415_035959_043653_rtc": 1, "114206z": 1, "613351": 1, "276051": 1, "615060": 1, "35959": 1, "2034598": 1, "8464707": 1, "2103654": 1, "8815351": 1, "7375369": 1, "2893451": 1, "4985764": 1, "3664129": 1, "3548293": 1, "161208": 1, "3180645": 1, "2318134": 1, "3264834": 1, "3764801": 1, "2769677": 1, "4641615": 1, "2702655": 1, "6972147": 1, "2158904": 1, "7559552": 1, "2095103": 1, "782278": 1, "s1a_iw_grdh_1sdv_20210102t121350_20210102t121415_035959_043653": 1, "s1a_iw_grdh_1sdv_20210102t121350_20210102t121415_035959_043653_741c": 1, "1872053692": 1, "a12d3e78f17a3e1cfc3b0b150f087911": 1, "1878845599": 1, "387e82f795d6aa8f99a5e3bbadefaf0f": 1, "20345977": 1, "36641292": 1, "28934514": 1, "To": [1, 5, 6, 7, 10, 13], "make": [1, 3, 4, 5, 6, 7, 11, 12, 13], "easier": [1, 6, 7], "convert": [1, 5, 6, 7], "dictionari": [1, 6, 7], "geodatafram": [1, 7, 12], "within": [1, 4, 5, 6, 7, 11], "each": [1, 4, 5, 6, 7, 10, 13], "present": [1, 5], "its": [1, 4, 6, 7, 10], "scan": 1, "df": 1, "from_featur": 1, "to_dict": 1, "cr": [1, 6, 7, 10, 12], "4326": [1, 5, 6, 7, 10, 12], "head": [1, 12], "20612": 1, "84414": 1, "21011": 1, "78327": 1, "98012": 1, "01219": 1, "99394": 1, "17292": 1, "80442": 1, "02311": 1, "82929": 1, "27473": 1, "20591": 1, "84405": 1, "21002": 1, "98022": 1, "01218": 1, "17283": 1, "row": [1, 5, 12], "column": [1, 12], "dtype": [1, 5, 6, 7, 10, 12], "want": [1, 4, 5, 6, 7, 10, 12], "individu": [1, 6, 7, 11], "accessor": [1, 5, 7], "suppli": [1, 7], "kei": [1, 6, 7], "construct": [1, 2, 10], "singl": [1, 4, 5, 6, 7, 10, 11], "scene": [1, 4, 5, 6, 7, 10, 13], "ie": [1, 4, 7], "element": [1, 5, 6, 7, 10], "k": 1, "v": [1, 6, 13], "add_row": 1, "str": [1, 5, 6, 10], "also": [1, 3, 5, 6, 7, 8, 11, 13], "outsid": 1, "try": [1, 4, 6, 7, 10], "onto": [1, 10], "term": 1, "programmat": 1, "same": [1, 4, 6, 7, 10], "syntax": [1, 7], "write": [1, 4, 7], "word": 1, "fit": [1, 4, 7], "seen": 1, "let": [1, 5, 6, 7, 10, 12], "distribut": [1, 6, 7], "manag": 1, "task": [1, 4, 6], "confusingli": 1, "cluster": [1, 6], "process": [1, 3, 4, 6, 7, 10, 11, 13], "fals": [1, 5, 6, 7, 10, 12], "dashboard_link": 1, "192": 1, "168": 1, "8787": [1, 6], "statu": [1, 6, 12], "dashboard": [1, 6], "instanti": 1, "have": [1, 3, 4, 5, 6, 7, 10, 12], "inspect": [1, 7, 8, 10, 11], "stack": [1, 4, 5, 7, 10], "produc": [1, 4, 7], "lazi": [1, 4, 6], "dataarrai": [1, 4, 5, 6, 7, 10], "integr": [1, 7], "wrapper": 1, "sign": 1, "subscript": [1, 8], "credenti": [1, 13], "allow": [1, 4, 6, 7], "further": [1, 4, 6, 10, 12], "your": [1, 4, 7], "purpos": 1, "accord": [1, 10], "refer": 1, "system": [1, 5, 6, 7, 10, 11, 12], "someth": 1, "than": [1, 5, 6, 7, 10], "which": [1, 4, 5, 6, 7, 8, 10, 11, 13], "argument": [1, 4, 5, 6, 7], "os": [1, 5, 6, 7, 10, 13], "da": [1, 6], "bounds_latlon": 1, "prepar": [1, 3, 9, 11], "408": 1, "userwarn": [1, 7], "infer_datetime_format": 1, "remov": [1, 5], "futur": 1, "A": [1, 3, 10], "strict": 1, "pydata": 1, "pdep": 1, "0004": 1, "consist": [1, 5], "pars": [1, 6], "safe": 1, "to_datetim": [1, 7], "lt": [1, 5, 6, 7, 10, 12], "x27": [1, 5, 6, 7, 10, 12], "01228b676fa509c76ad69808ca72985": 1, "y": [1, 5, 6, 7, 10, 11, 12], "1188": [1, 10], "x": [1, 5, 6, 7, 10, 11, 12], "869": [1, 10], "gt": [1, 5, 6, 7, 10, 12], "fetch_raster_window": [1, 10], "float64": [1, 5, 6, 7, 10, 12], "chunksiz": [1, 5, 6, 7, 10, 12], "1024": [1, 10], "chunktyp": [1, 7, 10], "ndarrai": [1, 5, 6, 7, 10, 12], "datetime64": [1, 5, 6, 7, 10, 12], "ns": [1, 5, 6, 7, 10, 12], "02t1": [1, 10], "u66": [1, 10], "s1a_iw_grdh_1sdv_2021": [1, 10], "u2": [1, 5, 7, 10, 12], "194e": [1, 5, 7, 10, 12], "281e": [1, 5, 7, 10, 12], "102e": [1, 5, 7, 10, 12], "09e": [1, 5, 7, 10, 12], "u3": [1, 5, 7, 10, 12], "u9": [1, 10], "u8": [1, 10], "u41": [1, 10], "data_ti": [1, 10], "u173": [1, 10], "ga": [1, 10], "int64": [1, 5, 6, 7, 10, 12], "attribut": [1, 5, 6, 7, 10, 12], "rasterspec": [1, 10], "619420": [1, 6, 7, 10], "3089780": [1, 10], "628110": [1, 10], "n": [1, 5, 6, 7, 10, 12], "3101660": [1, 10], "0xarrai": [1, 7, 10], "143band": 1, "2y": [1, 10], "1188x": [1, 10], "869dask": [1, 10], "meta": [1, 5, 6, 7, 10, 12], "chunk": [1, 4, 5, 10, 12], "byte": [1, 5, 6, 7, 10, 12], "gib": [1, 6, 7, 10], "mib": [1, 5, 6, 7, 10, 12], "graph": [1, 5, 6, 7, 10, 12], "572": 1, "114206": 1, "114206000": 1, "634308000": 1, "523867000": 1, "556282000": 1, "123774000": 1, "958063000": 1, "170790000": 1, "796758000": 1, "664862000": 1, "793585000": 1, "428394000": 1, "310324000": 1, "373591000": 1, "101142000": 1, "153373000": 1, "245451000": 1, "005012000": 1, "192429000": 1, "353874000": 1, "961567000": 1, "345504000": 1, "688939000": 1, "340535000": 1, "597722000": 1, "083742000": 1, "827103000": 1, "061444000": 1, "616767000": 1, "367239000": 1, "506409000": 1, "953073000": 1, "746142000": 1, "202200000": 1, "650190000": 1, "364326000": 1, "706900000": 1, "351880000": 1, "152330000": 1, "441074000": [1, 10], "058343000": [1, 10], "870450000": [1, 10], "373830000": [1, 10], "865662000": [1, 10], "594621000": [1, 10], "982444000": [1, 10], "572473000": [1, 10], "347747000": [1, 10], "613554000": [1, 10], "266919000": [1, 10], "093195000": [1, 10], "428473000": [1, 10], "814919000": [1, 10], "667023000": [1, 10], "150857000": [1, 10], "698596000": [1, 10], "454588000": [1, 10], "713793000": [1, 10], "226637000": [1, 10], "059716000": [1, 10], "421490000": [1, 10], "783019000": 1, "464707000": [1, 10], "971474000": [1, 10], "406593000": [1, 10], "135941000": [1, 10], "415938000": [1, 10], "788780000": [1, 10], "558327000": [1, 10], "760613000": [1, 10], "035095000": 1, "713275000": [1, 10], "850150000": [1, 10], "200359000": [1, 10], "919736000": [1, 10], "954256000": [1, 10], "052769000": [1, 10], "702246000": [1, 10], "645002000": [1, 10], "742983000": [1, 10], "481869000": [1, 10], "560526000": [1, 10], "576899000": [1, 10], "120003000": [1, 10], "035677000": [1, 10], "007158000": [1, 10], "568419000": [1, 10], "513966000": [1, 10], "596874000": [1, 10], "141449000": [1, 10], "793721000": [1, 10], "858303000": [1, 10], "432317000": [1, 10], "280484000": [1, 10], "415805000": [1, 10], "070182000": [1, 10], "877035000": [1, 10], "716165000": [1, 10], "424832000": [1, 10], "352862000": [1, 10], "057390000": [1, 10], "849186000": 1, "019287000": 1, "178103000": [1, 10], "677942000": [1, 10], "939806000": [1, 10], "075742000": [1, 10], "589986000": [1, 10], "677073000": [1, 10], "994606000": [1, 10], "744897000": [1, 10], "706124000": [1, 10], "362180000": [1, 10], "139523000": [1, 10], "140262000": [1, 10], "585924000": [1, 10], "181999000": [1, 10], "398442000": [1, 10], "711367000": [1, 10], "603587000": [1, 10], "051309000": [1, 10], "426000000": [1, 10], "201903000": [1, 10], "122366000": [1, 10], "980398000": [1, 10], "314833000": [1, 10], "786375000": [1, 10], "110968000": [1, 10], "897104000": [1, 10], "836741000": [1, 10], "189105000": [1, 10], "513880000": [1, 10], "273763000": [1, 10], "879869000": [1, 10], "455112000": [1, 10], "187957000": 1, "553402000": [1, 10], "035532000": [1, 10], "868452000": [1, 10], "242032000": [1, 10], "801000000": [1, 10], "650978000": [1, 10], "953202000": [1, 10], "610123000": [1, 10], "s1a_iw_grdh_1sdv_20210102t12135": 1, "float646": [1, 5, 7, 10, 12], "05arrai": [1, 5, 6, 7, 10], "619430": [1, 10], "619440": [1, 10], "628080": [1, 10], "628090": [1, 10], "628100": [1, 6, 7, 10], "float643": [1, 5, 6, 7, 10, 12], "06arrai": [1, 5, 6, 7, 10], "3101650": [1, 10], "3101640": [1, 10], "3089810": [1, 10], "3089800": [1, 10], "3089790": [1, 6, 7, 10], "int6435959": 1, "44359arrai": [1, 10], "int6410arrai": [1, 10], "u10": [1, 10], "u1": [1, 5, 7, 10, 12], "u4": [1, 5, 7, 10, 12], "u5": [1, 5, 7, 10, 12], "u6": [1, 5, 10], "u11": [1, 10], "float645": [1, 10], "405arrai": [1, 10], "int6412": [1, 10], "12arrai": [1, 7, 10], "int6432645arrai": [1, 10], "u32": [1, 10], "float644": [1, 10], "4arrai": [1, 10], "int641arrai": [1, 6, 10], "int6420arrai": [1, 10], "int645arrai": [1, 10], "int6422arrai": [1, 10], "timepandasindexpandasindex": 1, "datetimeindex": [1, 5, 7], "634308": 1, "523867": 1, "556282": 1, "123774": 1, "958063": 1, "170790": 1, "796758": 1, "664862": 1, "793585": 1, "455112": 1, "187957": 1, "553402": 1, "035532": 1, "868452": 1, "242032": 1, "801000": 1, "650978": 1, "953202": 1, "610123": 1, "name": [1, 5, 6, 7, 10, 12], "length": [1, 5, 7], "freq": [1, 5, 7], "none": [1, 5, 6, 7, 10, 12], "bandpandasindexpandasindex": [1, 7], "xpandasindexpandasindex": [1, 5, 7], "619450": 1, "619460": 1, "619470": 1, "619480": 1, "619490": 1, "619500": 1, "619510": 1, "628010": 1, "628020": 1, "628030": 1, "628040": 1, "628050": 1, "628060": 1, "628070": 1, "ypandasindexpandasindex": [1, 5, 7], "3101630": 1, "3101620": 1, "3101610": 1, "3101600": 1, "3101590": 1, "3101580": 1, "3101570": 1, "3089880": 1, "3089870": 1, "3089860": 1, "3089850": 1, "3089840": 1, "3089830": 1, "3089820": 1, "resolutions_xi": [1, 10], "32645transform": [1, 10], "It": [1, 3, 5, 6, 7, 8, 10, 11], "origin": [1, 6, 7], "acquisit": [1, 5, 7, 10], "gener": [1, 5, 7, 10], "follow": [1, 5, 6, 7], "ad": [1, 5, 10], "variabl": [1, 6, 7, 9, 10, 11, 12], "coorind": 1, "stac_item": 1, "read_fil": [1, 6, 7, 12], "extract_source_granule_pc": 1, "rtc_id": 1, "base_url": 1, "full_url": 1, "source_granul": 1, "target": 1, "granule_l": [1, 7], "isel": [1, 5, 6, 7, 10], "t": [1, 3, 5, 6, 7, 10], "make_granule_coord_pc": 1, "fn": [1, 7], "take": [1, 4, 5, 6, 12], "acq": [1, 7], "date": [1, 5, 6, 7, 10], "assign": [1, 5, 6, 7, 10], "coord": [1, 5, 6, 10, 12], "obj": [1, 5], "acq_dat": [1, 5, 6, 7, 10, 12], "granule_da": [1, 7], "dim": [1, 6, 7, 10, 12], "attr": [1, 6, 7, 10], "granule_id": [1, 5, 7, 10, 12], "granule_coord": 1, "u62": [1, 10], "01arrai": 1, "000000000": [1, 5, 6, 7, 10, 12], "03t00": [1, 7, 10], "15t00": [1, 7, 10], "27t00": [1, 7, 10], "dimension": [1, 5, 10, 11], "align": [1, 4, 11], "combine_by_coord": 1, "merg": [1, 6], "two": [1, 5, 6, 7, 8, 9, 10, 11, 12, 13], "one": [1, 5, 6, 7, 8], "first": [1, 4, 5, 6, 7, 8, 10, 11, 13], "between": [1, 6, 7, 10], "thei": [1, 6, 10, 12], "renam": [1, 6, 7, 10], "when": [1, 4, 5, 6, 7], "comparison": [1, 3], "da_pc": [1, 10], "later": [1, 5, 6, 7], "great": [1, 4, 5, 10], "cube": [1, 6, 10, 11, 12], "backscatt": [1, 6, 7, 9, 11, 12], "dimens": [1, 5, 6, 7, 10, 11, 12], "look": [1, 4, 6, 10, 11, 12], "much": [1, 4, 5, 6, 7, 11, 12], "littl": [1, 6], "bit": [1, 4], "around": 1, "pixel": [1, 5, 6, 7, 10, 11], "db": [1, 5, 7, 10], "scale": [1, 6, 7], "won": 1, "yet": [1, 10], "logarithm": 1, "run": [1, 6], "ani": [1, 3, 5, 6, 12], "summari": 1, "statist": [1, 5, 6], "distort": [1, 5, 11], "power_to_db": [1, 5, 6, 7, 10, 12], "input_arr": [1, 5, 6, 7, 10, 12], "log10": [1, 5, 6, 7, 10, 12], "ab": [1, 5, 6, 7, 10, 12], "what": [1, 5, 7, 10, 12], "onli": [1, 4, 5, 6, 12], "da_vv": 1, "sel": [1, 5, 10], "da_vh": 1, "next": [1, 5, 10, 12], "taken": 1, "satellit": [1, 11, 13], "so": [1, 4, 6, 7, 10, 11, 12], "could": [1, 6, 8, 10, 12], "orbit": [1, 5, 10], "need": [1, 5, 6, 7, 10, 12], "approach": [1, 4, 8], "differ": [1, 4, 5, 6, 7, 8, 11, 13], "da_asc": 1, "where": [1, 5, 6, 7, 10, 12], "drop": [1, 5, 6, 7, 10, 12], "da_desc": 1, "97band": 1, "388": 1, "310324": 1, "373591": 1, "153373": 1, "245451": 1, "192429": 1, "353874": 1, "345504": 1, "688939": 1, "597722": 1, "083742": 1, "061444": 1, "616767": 1, "506409": 1, "953073": 1, "202200": 1, "650190": 1, "706900": 1, "351880": 1, "441074": [1, 10], "058343": 1, "373830": 1, "865662": 1, "982444": 1, "572473": 1, "613554": 1, "266919": 1, "428473": 1, "814919": 1, "150857": 1, "698596": 1, "713793": 1, "226637": 1, "421490": 1, "783019": 1, "971474": 1, "406593": 1, "415938": 1, "788780": 1, "760613": 1, "035095": 1, "850150": 1, "200359": 1, "954256": 1, "052769": 1, "645002": 1, "742983": 1, "560526": 1, "576899": 1, "035677": 1, "007158": 1, "513966": 1, "596874": 1, "793721": 1, "858303": 1, "280484": 1, "415805": 1, "877035": 1, "716165": 1, "352862": 1, "057390": 1, "019287": 1, "178103": 1, "939806": 1, "075742": 1, "677073": 1, "994606": 1, "706124": 1, "362180": 1, "140262": 1, "585924": 1, "398442": 1, "711367": 1, "051309": 1, "426000": 1, "122366": 1, "980398": 1, "314833": 1, "786375": 1, "110968": 1, "897104": 1, "189105": 1, "513880": 1, "879869": 1, "step": [1, 3, 4, 7, 11, 12], "all": [1, 4, 5, 6, 7, 10], "still": [1, 3, 7], "exist": 1, "subset": [1, 5, 6], "mai": [1, 5, 12], "itnerest": 1, "side": [1, 5, 11], "plot": [1, 5, 6, 7, 10, 12], "fig": [1, 5, 6, 7, 10, 12], "ax": [1, 5, 6, 7, 10, 12], "subplot": [1, 5, 6, 7, 10, 12], "ncol": [1, 5, 6, 10, 12], "figsiz": [1, 5, 6, 7, 10, 12], "cmap": [1, 5, 6, 7, 10, 12], "cm": [1, 5, 6, 7, 10, 12], "greys_r": [1, 5, 6, 7, 10, 12], "like": [1, 4, 5, 6, 7, 10, 12], "persist": [1, 6], "over": [1, 5, 7, 9, 11, 12], "along": [1, 5, 6, 7, 10, 11], "idea": [1, 3], "rather": [1, 6, 7, 10], "snapshot": [1, 10], "mean": [1, 5, 7, 10, 12], "mean_agg": 1, "aggreg": 1, "verti": [1, 10], "nau": [1, 10], "97dask": 1, "776": 1, "b": [1, 10, 12], "set_titl": [1, 5, 10, 12], "red": [1, 10, 12], "blue": [1, 5, 6, 7, 10, 12], "linestyl": [1, 7, 10], "marker": [1, 7, 10, 12], "o": [1, 6, 7, 10, 12], "color": [1, 10, 12], "year": [1, 12], "twice": 1, "chapter": [1, 8, 9], "handbook": [1, 11], "effect": [1, 5, 10], "base": [1, 3, 6, 10], "view": [1, 4, 5, 7, 10, 11], "been": [1, 5, 6, 7, 8, 10, 11], "vari": [1, 5], "season": [1, 5, 12], "groupbi": [1, 5], "seasons_gb": 1, "dt": [1, 5, 6, 7, 10], "add": [1, 12], "back": [1, 10], "transpos": [1, 10], "djf": [1, 5], "jja": [1, 5], "son": [1, 5], "4band": 1, "mam": [1, 5], "seasonpandasindexpandasindex": [1, 5], "automat": 1, "fg_vv": 1, "col": [1, 5], "fg_vh": 1, "preliminari": [1, 3, 5, 7, 8, 10], "compar": [1, 5, 7, 9, 10, 11], "asf": [1, 4, 6, 8, 10, 11, 12, 13], "under": 2, "variou": [3, 7, 11], "publicli": 3, "sentinel": [3, 4, 5, 6, 8, 10, 11, 12, 13], "1": [3, 4, 5, 6, 8, 10, 12, 13], "imageri": [3, 4, 5, 6, 7, 8, 10, 11, 12, 13], "us": [3, 8, 11, 13], "xarrai": [3, 4, 5, 7, 10, 11, 12, 13], "other": [3, 4, 6, 11], "softwar": [3, 11], "volum": 3, "processs": 3, "local": [3, 5, 6, 7, 8, 11, 13], "data": [3, 4, 6], "portion": [3, 5], "focus": [3, 11], "sure": [3, 4, 7], "appropri": [3, 4, 6, 7, 11], "carri": 3, "through": [3, 6, 7, 8, 12], "easi": [3, 11], "readi": [3, 4, 11], "begin": 3, "exploratori": [3, 11], "workflow": [3, 6, 11], "hopefulli": 3, "got": 3, "leverag": [3, 11], "typic": 3, "remot": [3, 13], "sens": [3, 6, 13], "m": [3, 6, 7, 10, 13], "progress": [3, 6], "alwai": [3, 6, 11], "learn": [3, 4, 6, 13], "If": [3, 4, 5, 6, 7], "comment": [3, 6], "question": [3, 10, 12], "suggest": 3, "don": [3, 6, 7], "hesit": 3, "rais": [3, 5], "issu": [3, 4, 6, 7], "reach": 3, "me": [3, 7], "directli": [3, 7], "thank": [3, 5], "stop": 3, "twitter": 3, "emmar_22": 3, "email": 3, "read": [4, 8, 11], "combin": [4, 6], "multipl": [4, 5, 6, 10, 11], "onc": [4, 5, 7, 8], "rtc": [4, 6, 7, 8, 11, 13], "preprocess": [4, 6, 7], "structur": [4, 6, 7], "give": [4, 5], "lot": [4, 6], "flexibl": [4, 7], "smooth": 4, "howev": [4, 6], "found": [4, 10], "wasn": 4, "did": [4, 5, 7], "exact": 4, "spatial": [4, 6, 7], "problem": [4, 6, 7], "strategi": [4, 7], "becaus": [4, 5, 6, 7, 10, 11], "off": [4, 6, 7, 10], "would": [4, 6, 7, 10, 12], "down": [4, 6], "border": [4, 6, 12], "fine": 4, "memori": [4, 6, 7], "blow": [4, 7], "up": [4, 7], "occur": 4, "requir": [4, 5, 8, 10], "thought": 4, "had": [4, 7], "bypass": 4, "clip": 4, "extent": [4, 7], "my": [4, 6], "smaller": [4, 6], "soon": 4, "realiz": 4, "encount": [4, 6, 7, 12], "select": [4, 5, 6, 7, 10], "expens": [4, 7], "denser": 4, "seri": [4, 5, 7, 9, 11], "cannot": [4, 5, 7], "sai": 4, "ultim": 4, "decid": 4, "gdal": [4, 6, 8], "vrt": [4, 6, 8], "those": [4, 7, 12], "open_rasterio": [4, 7], "perspect": 4, "seem": [4, 6], "uniform": [4, 6, 7], "while": [4, 6, 7, 10], "end": [4, 6, 7], "being": [4, 7, 10, 11], "best": [4, 5, 7], "includ": [4, 5, 7, 11, 13], "anywai": 4, "case": [4, 7, 11], "mani": [4, 5, 6, 7], "resourc": [4, 11], "overflow": [4, 10], "answer": [4, 10, 12], "talk": 4, "filenam": [4, 6, 7], "simpl": 5, "calcul": 5, "facet": 5, "reorgan": [5, 7], "reindex": 5, "evalu": [5, 10, 11], "download": [5, 6, 7, 11, 13], "pathlib": [5, 6, 7, 13], "path": [5, 7], "intak": [5, 6], "reverse_format": [5, 6], "magic": 5, "vrt_full": [5, 7, 10, 12], "396": [5, 7, 10, 12], "290": [5, 7, 10, 12], "spatial_ref": [5, 6, 7, 10, 12], "s1a": [5, 6, 7, 10, 12], "beam_mod": [5, 6, 7, 10, 12], "product_id": [5, 6, 7, 10, 12], "748f": [5, 6, 7, 10, 12], "0d1e": [5, 7, 10, 12], "bd36": [5, 7, 10, 12], "u67": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210": [5, 7, 10, 12], "orbital_dir": [5, 7, 10, 12], "asc": [5, 7, 12], "ls": [5, 6, 7, 10, 12], "datasetdimens": [5, 6, 7, 10, 12], "103y": [5, 7, 12], "396x": [5, 7, 10, 12], "290coordin": [5, 7, 10, 12], "195e": [5, 7, 10, 12], "619425": [5, 7, 10, 12], "619455": [5, 7, 10, 12], "619485": [5, 7, 10, 12], "628035": [5, 7, 10, 12], "628065": [5, 7, 10, 12], "628095": [5, 7, 10, 12], "3101655": [5, 7, 10, 12], "3101625": [5, 7, 10, 12], "3101595": [5, 7, 10, 12], "3089865": [5, 7, 10, 12], "3089835": [5, 7, 10, 12], "3089805": [5, 7, 10, 12], "int640crs_wkt": [5, 6, 7, 10, 12], "projc": [5, 6, 7, 10, 12], "quot": [5, 6, 7, 10, 12], "wg": [5, 6, 7, 10, 12], "utm": [5, 6, 7, 10, 12], "zone": [5, 6, 7, 10, 12], "45n": [5, 6, 7, 10, 12], "geogc": [5, 6, 7, 10, 12], "datum": [5, 6, 7, 10, 12], "wgs_1984": [5, 6, 7, 10, 12], "spheroid": [5, 6, 7, 10, 12], "6378137": [5, 6, 7, 10, 12], "298": [5, 6, 7, 10, 12], "257223563": [5, 6, 7, 10, 12], "7030": [5, 6, 7, 10, 12], "6326": [5, 6, 7, 10, 12], "primem": [5, 6, 7, 10, 12], "greenwich": [5, 6, 7, 10, 12], "8901": [5, 6, 7, 10, 12], "unit": [5, 6, 7, 10, 12], "degre": [5, 6, 7, 10, 12], "0174532925199433": [5, 6, 7, 10, 12], "9122": [5, 6, 7, 10, 12], "transverse_merc": [5, 6, 7, 10, 12], "latitude_of_origin": [5, 6, 7, 10, 12], "central_meridian": [5, 6, 7, 10, 12], "scale_factor": [5, 6, 7, 10, 12], "9996": [5, 6, 7, 10, 12], "false_east": [5, 6, 7, 10, 12], "500000": [5, 6, 7, 10, 12], "false_north": [5, 6, 7, 10, 12], "metr": [5, 6, 7, 10, 12], "9001": [5, 6, 7, 10, 12], "axi": [5, 6, 7, 10, 12], "east": [5, 6, 7, 10, 12], "semi_major_axi": [5, 6, 7, 10, 12], "0semi_minor_axi": [5, 6, 7, 10, 12], "6356752": [5, 6, 7, 10, 12], "314245179inverse_flatten": [5, 6, 7, 10, 12], "257223563reference_ellipsoid_nam": [5, 6, 7, 10, 12], "84longitude_of_prime_meridian": [5, 6, 7, 10, 12], "0prime_meridian_nam": [5, 6, 7, 10, 12], "greenwichgeographic_crs_nam": [5, 6, 7, 10, 12], "84horizontal_datum_nam": [5, 6, 7, 10, 12], "geodet": [5, 6, 7, 10, 12], "1984projected_crs_nam": [5, 6, 7, 10, 12], "45ngrid_mapping_nam": [5, 6, 7, 10, 12], "transverse_mercatorlatitude_of_projection_origin": [5, 6, 7, 10, 12], "0longitude_of_central_meridian": [5, 6, 7, 10, 12], "0false_east": [5, 6, 7, 10, 12], "0false_north": [5, 6, 7, 10, 12], "0scale_factor_at_central_meridian": [5, 6, 7, 10, 12], "9996spatial_ref": [5, 6, 7, 10, 12], "geotransform": [5, 6, 7, 10, 12], "619410": [5, 7, 10, 12], "3101670": [5, 7, 10, 12], "0arrai": [5, 6, 7, 10, 12], "polarisation_typ": [5, 6, 7, 10, 12], "orbit_typ": [5, 6, 7, 10, 12], "_": [5, 7, 12], "terrain_correction_pixel_spac": [5, 6, 7, 10, 12], "rtc30": [5, 7, 10, 12], "output_format": [5, 6, 7, 10, 12], "g": [5, 6, 7, 10, 12], "output_typ": [5, 6, 7, 10, 12], "p": [5, 6, 7, 10, 12], "01f4": [5, 7, 10, 12], "3e89": [5, 7, 10, 12], "61b6": [5, 7, 10, 12], "0535": [5, 7, 12], "f306": [5, 7, 10, 12], "1380": [5, 7, 10, 12], "ed8c": [5, 7, 10, 12], "2cbe": [5, 7, 10, 12], "1424": [5, 7, 10, 12], "aba0": [5, 7, 10, 12], "e61": [5, 7, 10, 12], "e5b6": [5, 7, 10, 12], "5569": [5, 7, 10, 12], "71c9": [5, 7, 10, 12], "b942": [5, 7, 10, 12], "dce1": [5, 7, 10, 12], "ca1b": [5, 7, 10, 12], "6581": [5, 7, 10, 12], "1dfd": [5, 7, 10, 12], "5413": [5, 7, 10, 12], "22bd": [5, 7, 10, 12], "bdc1": [5, 7, 10, 12], "01b2": [5, 7, 10, 12], "9849": [5, 7, 10, 12], "cffc": [5, 7, 10, 12], "57f2": [5, 7, 10, 12], "d4e6": [5, 7, 10, 12], "b7b0": [5, 7, 10, 12], "3770": [5, 7, 10, 12], "52bb": [5, 7, 10, 12], "0579": [5, 7, 10, 12], "aa68": [5, 7, 10, 12], "24b8": [5, 7, 10, 12], "d049": [5, 7, 10, 12], "5ff4": [5, 7, 10, 12], "5f4e": [5, 7, 10, 12], "199d": [5, 7, 10, 12], "0031": [5, 7, 10, 12], "d082": [5, 7, 10, 12], "e74b": [5, 7, 10, 12], "f7ed": [5, 7, 10, 12], "65e0": [5, 7, 10, 12], "f587": [5, 7, 10, 12], "528f": [5, 7, 10, 12], "51e7": [5, 7, 10, 12], "f5aa": [5, 7, 10, 12], "ac38": [5, 7, 10, 12], "772e": [5, 7, 10, 12], "f0a6": [5, 7, 10, 12], "066e": [5, 7, 10, 12], "5844": [5, 7, 10, 12], "8cd8": [5, 7, 10, 12], "6340": [5, 7, 10, 12], "d35a": [5, 7, 10, 12], "056c": [5, 7, 10, 12], "6e6f": [5, 7, 10, 12], "0cad": [5, 7, 10, 12], "6270": [5, 7, 10, 12], "8a4f": [5, 7, 10, 12], "beab": [5, 7, 10, 12], "54b1": [5, 7, 10, 12], "8f7b": [5, 7, 10, 12], "f9a9": [5, 7, 10, 12], "aa59": [5, 7, 10, 12], "57e1": [5, 7, 10, 12], "81eb": [5, 7, 10, 12], "250e": [5, 7, 10, 12], "3c39": [5, 7, 10, 12], "3a2a": [5, 7, 10, 12], "9331": [5, 7, 10, 12], "c14c": [5, 7, 10, 12], "f1de": [5, 7, 10, 12], "106f": [5, 7, 10, 12], "d48f": [5, 7, 10, 12], "407d": [5, 7, 10, 12], "fd00": [5, 7, 10, 12], "5d96": [5, 7, 10, 12], "971c": [5, 7, 10, 12], "f573": [5, 7, 10, 12], "c890": [5, 7, 10, 12], "68ea": [5, 7, 10, 12], "83d7": [5, 7, 10, 12], "e113": [5, 7, 10, 12], "d846": [5, 7, 10, 12], "f4b3": [5, 7, 10, 12], "bb26": [5, 7, 10, 12], "485c": [5, 7, 10, 12], "b409": [5, 7, 10, 12], "6683": [5, 7, 10, 12], "6153": [5, 7, 10, 12], "832b": [5, 7, 10, 12], "7418": [5, 7, 10, 12], "378d": [5, 7, 10, 12], "33f5": [5, 7, 10, 12], "1139": [5, 7, 10, 12], "b661": [5, 7, 10, 12], "9a2f": [5, 7, 10, 12], "6943": [5, 7, 10, 12], "5bad": [5, 7, 10, 12], "fa4f": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210502t12141": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210502t121414_20210502t121441_037709_047321_900f": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210505t000307_20210505t000334_037745_047463_4def": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210509t120542_20210509t120609_037811_047676_9ebd": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210514t121349_20210514t121416_037884_047898_4702": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210514t121414_20210514t121442_037884_047898_fe6f": [5, 7, 12], "s1a_iw_slc__1sdv_20210517t000308_20210517t000335_037920_0479a9_2a18": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210521t120543_20210521t120609_037986_047bbd_1ca0": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210526t121350_20210526t121417_038059_047de5_0e67": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210529t000309_20210529t000336_038095_047ef4_5449": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210602t120543_20210602t120610_038161_0480fd_893f": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210607t121351_20210607t121418_038234_048318_9b64": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210610t000310_20210610t000337_038270_04841e_601a": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210614t120544_20210614t120611_038336_04862f_337b": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210619t121352_20210619t121419_038409_04884c_1dba": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210622t000310_20210622t000337_038445_04895a_842": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210626t120545_20210626t120612_038511_048b6c_9585": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210701t121352_20210701t121419_038584_048d87_f95c": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210701t121417_20210701t121445_038584_048d87_c79": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210704t000311_20210704t000338_038620_048e99_1baa": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210708t120545_20210708t120612_038686_0490ad_dd9": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220317t120545_20220317t120612_042361_050ce5_4ccf": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220322t121353_20220322t121420_042434_050f59_a1b6": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220325t000312_20220325t000339_042470_051096_ba6f": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220329t120546_20220329t120613_042536_0512d7_425a": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220403t121418_20220403t121446_042609_05154a_51e7": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220403t121353_20220403t121420_042609_05154a_3fe7": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220406t000312_20220406t000339_042645_051682_4b40": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220410t120546_20220410t120613_042711_0518c0_3349": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220415t121353_20220415t121420_042784_051b30_eb87": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220418t000312_20220418t000339_042820_051c63_cab2": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220422t120547_20220422t120614_042886_051e96_41e": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220427t121354_20220427t121421_042959_0520ee_a42d": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220430t000313_20220430t000340_042995_05221e_46a1": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220504t120547_20220504t120614_043061_05245f_6f62": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220509t121355_20220509t121422_043134_0526c4_092": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220516t120548_20220516t120615_043236_0529dd_42d2": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220521t121420_20220521t121448_043309_052c00_493d": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220521t121356_20220521t121423_043309_052c00_fe88": [5, 7, 10, 12], "float32dask": [5, 6, 7, 10, 12], "0add_offset": [5, 7, 10, 12], "0_fillvalu": [5, 7, 10, 12], "448": [5, 7, 10, 12], "kib": [5, 7, 10, 12], "float64dask": [5, 7, 10, 12], "897": [5, 7, 10, 12], "619515": [5, 7], "619545": [5, 7], "619575": [5, 7], "619605": [5, 7], "619635": [5, 7], "619665": [5, 7], "619695": [5, 7], "627825": [5, 7], "627855": [5, 7], "627885": [5, 7], "627915": [5, 7], "627945": [5, 7], "627975": [5, 7], "628005": [5, 7], "3101565": [5, 7], "3101535": [5, 7], "3101505": [5, 7], "3101475": [5, 7], "3101445": [5, 7], "3101415": [5, 7], "3101385": [5, 7], "3090075": [5, 7], "3090045": [5, 7], "3090015": [5, 7], "3089985": [5, 7], "3089955": [5, 7], "3089925": [5, 7], "3089895": [5, 7], "acq_datepandasindexpandasindex": [5, 7], "plot_timestep": 5, "time_step_int": 5, "given": [5, 6, 7], "suptitl": [5, 6, 10, 12], "f": [5, 6, 7], "l": [5, 6, 7], "come": 5, "understand": [5, 10, 11], "miss": 5, "might": [5, 12], "repres": [5, 6, 7, 11], "number": [5, 6, 7, 10, 11, 13], "copi": [5, 6], "readm": [5, 6, 10], "accompani": 5, "affect": 5, "tag": 5, "_ls_map": [5, 6, 7], "tif": [5, 6, 7], "togeth": [5, 7], "test": [5, 7], "ha": [5, 6, 7, 8, 10, 11], "angl": [5, 11], "less": [5, 7], "slope": 5, "opposit": 5, "There": [5, 7, 10], "possibl": 5, "condit": [5, 10, 12], "Not": [5, 6, 7], "either": [5, 7], "detail": [5, 6, 11], "cmap1": 5, "get_cmap": 5, "gist_ncar": 5, "tmp": [5, 6, 7], "ipykernel_147196": 5, "865903566": 5, "matplotlibdeprecationwarn": 5, "minor": 5, "releas": [5, 13], "colormap": 5, "vmax": 5, "vmin": 5, "For": [5, 11], "lower": [5, 10], "left": 5, "quadrant": 5, "appear": 5, "throughout": [5, 13], "due": [5, 6, 10, 11], "previou": [5, 10], "confirm": [5, 7], "vrt_vv": [5, 7], "vrt_vh": [5, 7], "mean_pol": 5, "to_arrai": 5, "pol": [5, 6], "0x7fd38ef3c4c0": 5, "relat": [5, 10, 11, 12], "oper": [5, 6, 7], "vrt_gb": 5, "4y": 5, "order": [5, 6, 7, 10], "correctli": 5, "290y": [5, 7], "396season": 5, "4coordin": 5, "fg_": 5, "winter": [5, 12], "spring": 5, "composit": 5, "similar": [5, 7, 10, 11, 12], "anoth": [5, 6], "decreas": 5, "mvo": 5, "closer": 5, "ident": [5, 6, 7], "examin": 5, "go": [5, 7, 10], "keep": [5, 7], "data_date_id": 5, "granul": [5, 12], "id": [5, 6, 12], "data_take_asf": 5, "Then": 5, "data_take_id": [5, 10], "047321": [5, 7, 10], "052c00": [5, 10], "047463": [5, 10], "takearrai": [5, 10], "047676": [5, 10], "047898": [5, 10], "0479a9": [5, 10], "047bbd": [5, 10], "047de5": [5, 10], "047ef4": [5, 10], "0480fd": [5, 10], "048318": [5, 10], "04841e": [5, 10], "04862f": [5, 10], "04884c": [5, 10], "04895a": [5, 10], "048b6c": [5, 10], "048d87": [5, 10], "048e99": [5, 10], "0490ad": [5, 10], "0492d4": [5, 10], "0493db": [5, 10], "0495ec": [5, 10], "04980f": [5, 10], "04991e": [5, 10], "049b1f": [5, 10], "049d70": [5, 10], "049eac": [5, 10], "04a0ff": [5, 10], "04a383": [5, 10], "04a4b9": [5, 10], "04a6fc": [5, 10], "04a972": [5, 10], "04aab3": [5, 10], "04ad0d": [5, 10], "04af85": [5, 10], "04b0c4": [5, 10], "04b2fb": [5, 10], "04b566": [5, 10], "04b6ab": [5, 10], "04b8ff": [5, 10], "04bb88": [5, 10], "04bcb8": [5, 10], "04bf12": [5, 10], "04c195": [5, 10], "04c2d6": [5, 10], "04c52e": [5, 10], "04c7a8": [5, 10], "04c8e9": [5, 10], "04cb46": [5, 10], "04cdc8": [5, 10], "04ceff": [5, 10], "04d14f": [5, 10], "04d3cc": [5, 10], "04d50e": [5, 10], "04d761": [5, 10], "04d9e8": [5, 10], "04db21": [5, 10], "04dd71": [5, 10], "04dfdd": [5, 10], "04e110": [5, 10], "04e340": [5, 10], "04e5ab": [5, 10], "04e6d7": [5, 10], "04e931": [5, 10], "04eb9b": [5, 10], "04eccd": [5, 10], "04eee8": [5, 10], "04f156": [5, 10], "04f294": [5, 10], "04f4d6": [5, 10], "04f754": [5, 10], "04f88b": [5, 10], "04faf5": [5, 10], "04fd6f": [5, 10], "04feb2": [5, 10], "050108": [5, 10], "050376": [5, 10], "0504af": [5, 10], "0506f7": [5, 10], "050962": [5, 10], "050aa2": [5, 10], "050ce5": [5, 10], "050f59": [5, 10], "051096": [5, 10], "0512d7": [5, 10], "05154a": [5, 10], "051682": [5, 10], "0518c0": [5, 10], "051b30": [5, 10], "051c63": [5, 10], "051e96": [5, 10], "0520ee": [5, 10], "05221e": [5, 10], "05245f": [5, 10], "0526c4": [5, 10], "0529dd": [5, 10], "asf_id": 5, "exactli": [5, 10], "d": [5, 6, 7, 10], "expect": 5, "uniqu": 5, "asf_set": 5, "figur": 5, "input_l": [5, 7], "set": [5, 6, 7, 10], "count": [5, 6, 10, 12], "duplicate_l": 5, "asf_duplicate_cond": 5, "isin": [5, 10, 12], "103fals": 5, "truearrai": 5, "asf_dupl": 5, "12y": 5, "s1a_iw_slc__1sdv_20210514t12134": 5, "s1a_iw_slc__1sdv_20210713t121353_20210713t121420_038759_0492d4_eabd": [5, 10], "s1a_iw_slc__1sdv_20210713t121418_20210713t121446_038759_0492d4_47d9": [5, 10], "fg": 5, "col_wrap": 5, "valueerror": 5, "traceback": 5, "most": [5, 7], "recent": 5, "last": [5, 7], "line": [5, 6, 7, 10, 12], "dataarrayplotaccessor": 5, "__call__": 5, "kwarg": 5, "functool": 5, "dataarray_plot": 5, "__doc__": 5, "__annotations__": 5, "_da": 5, "309": 5, "darrai": 5, "hue": 5, "subplot_kw": 5, "305": 5, "plotfunc": 5, "hist": 5, "307": 5, "1508": 5, "_plot2d": 5, "newplotfunc": 5, "fail": [5, 6], "resolv": 5, "1506": 5, "decor": 5, "1507": 5, "allarg": 5, "__name__": 5, "_easy_facetgrid": 5, "kind": 5, "1510": 5, "ndim": 5, "1511": 5, "typeerror": 5, "1512": 5, "No": 5, "numer": 5, "1047": 5, "sharex": 5, "sharei": 5, "aspect": [5, 7], "1044": 5, "1045": 5, "1048": 5, "1049": 5, "1050": 5, "1051": 5, "1052": 5, "1053": 5, "1054": 5, "1055": 5, "1056": 5, "1057": 5, "1058": 5, "1060": 5, "1061": 5, "map_dataarray_lin": 5, "174": 5, "__init__": 5, "172": 5, "rep_row": 5, "to_index": 5, "is_uniqu": 5, "173": 5, "rep_col": 5, "175": 5, "176": 5, "repeat": [5, 6], "nonuniqu": 5, "177": 5, "179": 5, "single_group": 5, "180": 5, "bool": 5, "hashabl": 5, "oop": [5, 10], "doe": [5, 6, 7], "know": 5, "small": 5, "ignor": 5, "rename_dim": [5, 7], "realli": 5, "sinc": 5, "among": [5, 7], "drop_l": 5, "comprehens": 5, "drop_product_id_l": 5, "nameerror": 5, "duplicate_cond": 5, "vrt_new": [5, 10], "96y": 5, "s1a_iw_slc__1sdv_20210716t000312_20210716t000339_038795_0493db_53cd": [5, 10], "s1a_iw_slc__1sdv_20220305t120545_20220305t120612_042186_0506f7_1601": [5, 10], "s1a_iw_slc__1sdv_20220310t121353_20220310t121420_042259_050962_068b": [5, 10], "s1a_iw_slc__1sdv_20220313t000311_20220313t000338_042295_050aa2_2909": [5, 10], "updat": 5, "brief": [5, 7], "vast": [5, 6], "amount": [5, 6, 7], "auxiliari": 5, "On": [6, 8, 13], "demand": [6, 7, 8, 13], "directori": [6, 7, 13], "un": [6, 7], "zip": [6, 7], "limit": 6, "certain": [6, 11, 12], "characterist": [6, 7], "goal": [6, 11], "handl": 6, "util": 6, "machin": [6, 7, 13], "ran": 6, "thread": 6, "caus": [6, 7, 10], "dead": [6, 7], "kernel": 6, "fix": [6, 10], "3d200513": 6, "6114": 6, "11ed": 6, "ac16": 6, "d88083ee7b7d": 6, "localclust": 6, "183": 6, "info": 6, "441be7f1": 6, "worker": [6, 7], "total": 6, "schedul": 6, "831d8c4b": 6, "55aa": 6, "4ec0": 6, "bfbf": 6, "5d4b2bbfafab": 6, "comm": 6, "inproc": 6, "27670": 6, "start": 6, "nanni": 6, "space": [6, 7, 11, 12], "lua9jwnw": 6, "string": [6, 7], "current": [6, 7, 8, 10, 12], "own": [6, 7], "sub": [6, 7], "asf_rtc": [6, 7], "layov": [6, 7], "shadow": [6, 7, 10], "mask": [6, 7, 10, 12], "extract_tif_fnam": [6, 7], "dir_path_al": [6, 7], "desktop": [6, 7], "asf_rtc_data": [6, 7], "scenes_l": [6, 7], "listdir": [6, 7], "scene_path": [6, 7], "scene_files_l": [6, 7], "scene_files_vv": [6, 7], "fname": [6, 7], "endswith": [6, 7], "_vh": [6, 7], "scene_files_vh": [6, 7], "_vv": [6, 7], "attach": [6, 7, 10], "three": [6, 7, 11], "fpaths_vv": [6, 7], "fpaths_vh": [6, 7], "fpaths_l": [6, 7], "good_fil": [6, 7], "path_vh": [6, 7], "path_vv": [6, 7], "path_l": [6, 7], "append": [6, 7], "data_dir": 6, "rglob": 6, "ls_map": 6, "them": [6, 7, 12], "execut": [6, 7], "roughli": 6, "preprocess_vv": 6, "preprocess_vh": 6, "preprocess_l": 6, "similarli": [6, 8], "fpaths_vv_sub": 6, "posixpath": 6, "s1a_iw_20210821t000314_dvp_rtc30_g_gpuned_748f_": 6, "s1a_iw_20210821t000314_dvp_rtc30_g_gpuned_748f_vv": [6, 7], "s1a_iw_20220116t120547_dvp_rtc30_g_gpuned_0d1e_": 6, "s1a_iw_20220116t120547_dvp_rtc30_g_gpuned_0d1e_vv": 6, "s1a_iw_20210708t120545_dvp_rtc30_g_gpuned_3e89_": 6, "s1a_iw_20210708t120545_dvp_rtc30_g_gpuned_3e89_vv": 6, "s1a_iw_20220422t120547_dvp_rtc30_g_gpuned_61b6_": 6, "s1a_iw_20220422t120547_dvp_rtc30_g_gpuned_61b6_vv": 6, "ds1": 6, "open_dataset": 6, "da_orig": [6, 7], "dualpol": 6, "think": [6, 7], "concaten": 6, "band_data": 6, "squeez": [6, 7], "encod": [6, 7], "vv_fn": [6, 7], "basenam": 6, "relev": 6, "acq_date_raw": 6, "strptime": 6, "h": [6, 7], "acq_tim": 6, "pol_typ": [6, 7], "dual": 6, "primary_pol": [6, 7], "precis": [6, 7], "restitut": [6, 7], "predict": [6, 7], "rtc_alg": [6, 7], "output": [6, 7], "sigma": [6, 7, 10], "decibel": [6, 7], "amplitud": [6, 7, 10], "unmask": [6, 7], "w": [6, 7], "entir": [6, 7, 10], "tbd": [6, 7], "reckon": [6, 7], "attrs_dict": [6, 7], "acquisition_d": 6, "acquisition_tim": [6, 7, 10], "primary_polaris": [6, 7], "eg": 6, "utm_zon": 6, "crs_wkt": 6, "epsg_cod": 6, "589": [6, 12], "594": [6, 12], "assign_coord": [6, 7, 10], "expand_dim": 6, "drop_dupl": 6, "unless": 6, "fname_l": 6, "layover_shadow_mask": 6, "vec": 6, "s1_book": 6, "raw": [6, 7, 12], "main": [6, 7, 12], "hma_lakes_aoi": 6, "da_clip": 6, "auto": [6, 7], "ideal": 6, "attempt": 6, "equal": 6, "configur": 6, "config": 6, "128mib": 6, "asf_vh": 6, "engin": 6, "rasterio": 6, "data_var": [6, 7], "minim": 6, "concat_dim": 6, "nest": 6, "17452": [6, 7], "13379": [6, 7], "833e": [6, 7], "068e": [6, 7], "907e": [6, 7], "309e": [6, 7], "845": [6, 12], "4935": 6, "t000314": 6, "32645xarrai": 6, "17452y": [6, 7], "13379acq_dat": [6, 7], "103coordin": [6, 7], "383265": [6, 7], "383295": [6, 7], "383325": [6, 7], "906735": [6, 7], "906765": [6, 7], "906795": [6, 7], "float642": 6, "2907375": [6, 7], "2907405": [6, 7], "2907435": [6, 7], "3308655": [6, 7], "3308685": [6, 7], "3308715": [6, 7], "519570": 6, "3200520": 6, "3921": 6, "1338": 6, "317240": 6, "s1abeam_mod": 6, "iwacquisition_d": 6, "14acquisition_tim": 6, "t000314polarisation_typ": 6, "vprimary_polaris": 6, "porbit_typ": 6, "_terrain_correction_pixel_spac": 6, "rtc30output_format": 6, "goutput_typ": 6, "pmask": 6, "ufilt": 6, "narea": 6, "eproduct_id": 6, "748futm_zon": 6, "45nepsg_cod": 6, "click": 6, "icon": 6, "tab": 6, "quit": [6, 10], "isn": [6, 10], "excess": 6, "usag": 6, "funki": 6, "layout": 6, "both": [6, 7, 10, 11], "890": 6, "1186": 6, "asf_vv": 6, "asf_l": 6, "least": 6, "solv": 6, "asf_d": 6, "sortbi": [6, 7], "asf_ds_sort": 6, "1187": 6, "pretti": 6, "unwieldi": 6, "nearli": 6, "200": 6, "gb": [6, 7], "focu": [6, 11], "central": [6, 12], "himalaya": [6, 11, 12], "chines": [6, 12], "pc_aoi": [6, 7], "sentinel1_rtc": [6, 7, 12], "hma_rtc_aoi": [6, 7], "facecolor": [6, 7, 12], "edgecolor": [6, 7, 12], "axessubplot": 6, "asf_clip": 6, "nbyte": 6, "1e6": 6, "948568": 6, "kill": 6, "asf_clip_load": 6, "publish": [6, 7, 10], "nought": [6, 10], "easili": 6, "especi": 6, "custom": [6, 7], "preserv": 6, "natur": [6, 7], "computation": [6, 7, 11], "abl": [6, 7], "xml": [6, 7], "essenti": [6, 7], "mismatch": [6, 7], "were": [7, 10], "situat": 7, "appendix": 7, "save": [7, 10], "huge": 7, "built": 7, "filepath": 7, "static": 7, "suit": [7, 13], "lazili": 7, "short": 7, "lightweight": 7, "separ": 7, "lose": 7, "lost": 7, "must": [7, 10], "explan": [7, 11], "awar": 7, "wrap": [7, 10, 12], "markdown": [7, 13], "s1_tool": [7, 10, 12, 13], "glob": 7, "load_ext": [7, 13], "watermark": [7, 13], "iv": 7, "2024": 7, "dat": 7, "microsoft": [7, 10, 11, 13], "planetari": [7, 10, 11, 13], "environ": 7, "replac": 7, "rm": 7, "md": 7, "txt": 7, "everi": 7, "four": 7, "s1a_iw_20210821t000314_dvp_rtc30_g_gpuned_748f_vh": 7, "s1a_iw_20210821t000314_dvp_rtc30_g_gpuned_748f_ls_map": 7, "s1a_iw_20210821t000314_dvp_rtc30_g_gpuned_748f": 7, "fpaths_rm": 7, "path_readm": 7, "gdalbuildvrt": 7, "command": [7, 10], "find": [7, 8, 10, 11], "place": 7, "deal": 7, "flag": 7, "locat": 7, "written": 7, "written_data": 7, "s1_vv_fpath": 7, "fp": 7, "item": 7, "new": 7, "s1_vh_fpath": 7, "s1_ls_fpath": 7, "input_file_list": 7, "my_list": 7, "vrt_fname": 7, "br": 7, "s1_stackvv": 7, "s1_stackvh": 7, "s1_stackl": 7, "done": [7, 12], "vrt_l": 7, "b10d33d8a4b01aa9049ac0a5fdaa0889": 7, "5760": 7, "_fillvalu": 7, "add_offset": 7, "dataarrayband": 7, "13379x": 7, "17452dask": 7, "1236": 7, "int641": 7, "103arrai": 7, "383250": 7, "3308730": 7, "383355": 7, "383385": 7, "383415": 7, "383445": 7, "383475": 7, "383505": 7, "383535": 7, "906525": 7, "906555": 7, "906585": 7, "906615": 7, "906645": 7, "906675": 7, "906705": 7, "3308625": 7, "3308595": 7, "3308565": 7, "3308535": 7, "3308505": 7, "3308475": 7, "3308445": 7, "2907645": 7, "2907615": 7, "2907585": 7, "2907555": 7, "2907525": 7, "2907495": 7, "2907465": 7, "0scale_factor": 7, "extract_metadata_attr": 7, "inputfnam": 7, "acq_date_ful": 7, "acq_datetim": 7, "acquisition_datetim": 7, "acq_dates_vh": 7, "strftime": 7, "yt": 7, "acq_dates_vv": 7, "acq_dates_l": 7, "2021t000314": 7, "2022t120547": 7, "2021t120545": 7, "2022t121354": 7, "As": [7, 11, 12], "vrt_merg": 7, "ipykernel_149397": 7, "1332661188": 7, "anymor": 7, "swap_dim": 7, "set_index": 7, "after": 7, "uint8": 7, "11520": 7, "uint8dask": 7, "412": 7, "compos": 7, "break": 7, "236": 7, "mb": 7, "ineffici": 7, "intern": 7, "too": 7, "317": 7, "240": 7, "complic": 7, "led": 7, "difficulti": 7, "good": 7, "storag": 7, "without": 7, "unnecessari": 7, "lead": 7, "slower": 7, "vrt_clip": 7, "396acq_dat": 7, "05axi": [7, 10, 12], "xlong_nam": [7, 10, 12], "projectionstandard_nam": [7, 10, 12], "projection_x_coordinateunit": [7, 10, 12], "metrearrai": [7, 10, 12], "06axi": [7, 10, 12], "ylong_nam": [7, 10, 12], "projection_y_coordinateunit": [7, 10, 12], "timestamp": 7, "meta_attrs_ls_vv": 7, "stacked_meta_tupl": 7, "dict": 7, "tupl": [7, 10], "input": [7, 10, 12], "categori": 7, "meta_dict": 7, "ticker": 7, "keys_l": 7, "els": 7, "key_dict": 7, "full_tupl": 7, "apply_meta_coord": 7, "input_xr": [7, 12], "input_tupl": 7, "out_xr": 7, "meta_tupl": 7, "european": 7, "agenc": 7, "earlier": [7, 9, 10], "extract_granule_id": 7, "read_text": 7, "preced": 7, "gran_str": 7, "folder": 7, "split": 7, "isol": 7, "gran_id": 7, "make_granule_coord": 7, "readme_fpaths_l": 7, "s1a_iw_slc__1sdv_20210502t121414_20210502t121441_037709_047321_900": 7, "21arrai": [7, 10], "convent": 7, "mission": 7, "segment": 7, "translat": 7, "s1a_iw_slc__1sdv_20210502t121414_": 7, "396coordin": 7, "14arrai": 7, "10312": 7, "nan": [7, 10, 12], "zero": [7, 10, 12], "stream": 7, "shown": 7, "actual": 7, "overwrit": 7, "offici": 7, "befor": [7, 10], "move": 7, "reduc": 7, "markers": [7, 10], "snap": 7, "shot": 7, "datacub": 7, "oneself": 7, "hyp3": 8, "show": [8, 11], "second": [8, 11, 13], "made": 8, "stac": [8, 11], "jupyt": [8, 11], "hub": 8, "free": 8, "rest": [9, 13], "ensur": 10, "interp_lik": 10, "inlin": 10, "page": [10, 13], "One": 10, "complex": [10, 11], "slc": 10, "phase": 10, "multi": [10, 11], "elev": 10, "higher": 10, "holoview": 10, "hv": 10, "opt": 10, "asf_pc_sidebysid": 10, "asf_input": 10, "pc_input": 10, "timestep": 10, "label": [10, 12], "single_time_mean_compar": 10, "vv_": 10, "storemag": 10, "retriev": 10, "again": 10, "acq_hour": 10, "95y": 10, "scenearrai": 10, "s1a_iw_slc__1sdv_20210720t120546_20210720t120613_038861_0495ec_c9d4": 10, "int640": 10, "4d29467097b7d384d1232c9847300ccd": 10, "100band": 10, "400": 10, "s1a_iw_grdh_1sdv_20210602t12054": 10, "int64114": 10, "int6438161": 10, "coordianet": 10, "data_take_pc": 10, "form": [10, 12], "coord_nam": 10, "coord_data": 10, "054b39": 10, "052f0a": 10, "053126": 10, "05323c": 10, "053436": 10, "05365f": 10, "053770": 10, "053978": 10, "053ba2": 10, "053ea7": 10, "0540d0": 10, "0541e4": 10, "0543e4": 10, "054615": 10, "05471e": 10, "05491d": 10, "TO": 10, "intersect": 10, "common_data_tak": 10, "pc_data_take_l": 10, "asf_data_take_l": 10, "subset_condition_asf": 10, "subset_condition_pc": 10, "acq_at": 10, "satisfi": 10, "stackoverflow": 10, "70777676": 10, "asf_subset": 10, "pc_subset": 10, "getitem": 10, "83band": 10, "332": 10, "43309arrai": 10, "83y": 10, "s1a_iw_slc__1sdv_20210602t12054": 10, "s1a_iw_slc__1sdv_20210725t121354_20210725t121421_038934_04980f_1651": 10, "s1a_iw_slc__1sdv_20210728t000312_20210728t000339_038970_04991e_c669": 10, "s1a_iw_slc__1sdv_20210801t120547_20210801t120614_039036_049b1f_9997": 10, "s1a_iw_slc__1sdv_20210806t121354_20210806t121421_039109_049d70_b0a0": 10, "s1a_iw_slc__1sdv_20210809t000313_20210809t000340_039145_049eac_aa8": 10, "s1a_iw_slc__1sdv_20210813t120548_20210813t120614_039211_04a0ff_405f": 10, "s1a_iw_slc__1sdv_20210818t121355_20210818t121422_039284_04a383_54d5": 10, "s1a_iw_slc__1sdv_20210821t000314_20210821t000341_039320_04a4b9_0878": 10, "asf_bc_sidebysid": 10, "line2d": [10, 12], "whether": 10, "offset": 10, "downsampl": 10, "dimensiosn": 10, "pc_downsampl": 10, "290dask": 10, "145": 10, "166": [10, 12], "pc_mask": 10, "notnul": 10, "4796": 10, "performancewarn": 10, "increas": 10, "factor": 10, "result": 10, "blockwis": 10, "290time": 10, "2coordin": 10, "int640arrai": 10, "13778": 10, "broadcast": 10, "okai": 10, "frozen": 10, "m8": 10, "290band": 10, "s1a_iw_slc__1sdv_20210602t": 10, "21t1": 10, "83coordin": 10, "664": 10, "skipna": 10, "90y": 10, "asf_desc": 10, "asf_asc": 10, "pc_desc": 10, "pc_asc": 10, "legend": 10, "loc": [10, 12], "set_xlabel": 10, "set_ylabel": 10, "synthet": 11, "apertur": 11, "design": 11, "alreadi": [11, 13], "undergon": 11, "topographi": 11, "slant": 11, "azimuth": 11, "track": 11, "across": 11, "swath": 11, "geocod": 11, "aris": 11, "scatter": [11, 12], "respons": 11, "account": 11, "alaska": [11, 13], "algorithm": 11, "compon": 11, "whichev": 11, "benefit": 11, "tradeoff": 11, "domain": 11, "navig": 11, "orient": 11, "suitabl": 11, "resampl": 11, "analyz": 11, "third": 11, "repositori": 11, "proglaci": [11, 12], "lake": 11, "scientif": 12, "mind": 12, "glacier": 12, "india": 12, "glaciologist": 12, "freez": 12, "conclus": 12, "itself": 12, "walk": 12, "dynam": 12, "identifi": 12, "get_bbox_singl": 12, "buffer": 12, "itsliv": 12, "quick": 12, "min": 12, "max": 12, "pts_l": 12, "polygon_geom": 12, "polygon_prj": 12, "to_cr": 12, "total_bound": 12, "500": 12, "bounds_xmin": 12, "bounds_xmax": 12, "bounds_ymin": 12, "bounds_ymax": 12, "bounds_l": 12, "bounds_geom": 12, "bound_gdf": 12, "bounds_prj": 12, "manual": 12, "drawn": 12, "outlin": 12, "proglacial_lake_outlin": 12, "lakes_prj": 12, "623555": 12, "903": 12, "3099600": 12, "816": 12, "623594": 12, "809": 12, "622405": 12, "254": 12, "3097521": 12, "050": 12, "622268": 12, "598": 12, "randolph": 12, "da_bbox": 12, "rgi": 12, "master": 12, "rgi15_southasiaeast": 12, "rgi_prj": 12, "rgi_sub": 12, "sjoin": 12, "inner": 12, "trust": 12, "load": [12, 13], "rgiid": 12, "glimsid": 12, "bgndate": 12, "enddat": 12, "cenlon": 12, "cenlat": 12, "o1region": 12, "o2region": 12, "zmin": 12, "lmax": 12, "termtyp": 12, "surg": 12, "linkag": 12, "index_right": 12, "2912": 12, "rgi60": 12, "02913": 12, "g088261e27938n": 12, "20001108": 12, "9999999": 12, "260530": 12, "937820": 12, "222": 12, "5278": 12, "667": 12, "624154": 12, "597": 12, "3091139": 12, "237": 12, "2913": 12, "02914": 12, "g088296e27928n": 12, "296067": 12, "928288": 12, "248": 12, "5372": 12, "524": 12, "627398": 12, "3089890": 12, "401": 12, "627403": 12, "687": 12, "2915": 12, "02916": 12, "g088280e27949n": 12, "279920": 12, "949292": 12, "5325": 12, "626107": 12, "884": 12, "3092444": 12, "923": 12, "626110": 12, "2916": 12, "02917": 12, "g088289e27956n": 12, "288797": 12, "955961": 12, "461": 12, "5351": 12, "843": 12, "626663": 12, "3092564": 12, "217": 12, "626654": 12, "813": 12, "2917": 12, "02918": 12, "g088285e27952n": 12, "284713": 12, "951895": 12, "169": 12, "5354": 12, "682": 12, "626491": 12, "921": 12, "3092669": 12, "295": 12, "626516": 12, "842": 12, "2918": 12, "02919": 12, "g088277e27950n": 12, "276515": 12, "950028": 12, "5403": 12, "372": 12, "625706": 12, "190": 12, "3092218": 12, "712": 12, "625675": 12, "749": 12, "2919": 12, "02920": 12, "g088283e27949n": 12, "282704": 12, "948794": 12, "052": 12, "5436": 12, "456": 12, "626202": 12, "575": 12, "3092388": 12, "557": 12, "626217": 12, "905": 12, "10460": 12, "10461": 12, "g088226e27972n": 12, "20100128": 12, "226000": 12, "972000": 12, "949": 12, "5410": 12, "2435": 12, "cn5o197b0032": 12, "620316": 12, "436": 12, "3095795": 12, "468": 12, "620337": 12, "10462": 12, "g088239e27978n": 12, "239000": 12, "978000": 12, "495": 12, "5654": 12, "1807": 12, "cn5o197b0031": 12, "621679": 12, "3094643": 12, "491": 12, "621669": 12, "750": 12, "10463": 12, "g088251e27968n": 12, "251000": 12, "968000": 12, "924": 12, "5335": 12, "6668": 12, "cn5o197b0030": 12, "624579": 12, "834": 12, "3093180": 12, "624573": 12, "058": 12, "10464": 12, "g088271e27976n": 12, "271000": 12, "976000": 12, "319": 12, "5328": 12, "5609": 12, "cn5o197b0029": 12, "chutanjima": 12, "626179": 12, "758": 12, "3095289": 12, "794": 12, "626190": 12, "220": 12, "10465": 12, "g088276e28004n": 12, "276000": 12, "004000": 12, "425": 12, "5758": 12, "1266": 12, "cn5o197b0025": 12, "625657": 12, "883": 12, "3097386": 12, "998": 12, "625608": 12, "493": 12, "10466": 12, "g088277e28011n": 12, "277000": 12, "011000": 12, "209": 12, "5808": 12, "844": 12, "cn5o197b0024": 12, "625439": 12, "972": 12, "3098924": 12, "917": 12, "625433": 12, "875": 12, "10467": 12, "g088290e27983n": 12, "290000": 12, "983000": 12, "744": 12, "5290": 12, "5476": 12, "cn5o197b0023": 12, "mogunong": 12, "626186": 12, "255": 12, "10468": 12, "g088299e27986n": 12, "299000": 12, "986000": 12, "171": 12, "5623": 12, "549": 12, "cn5o197b0020": 12, "yare": 12, "627542": 12, "496": 12, "3096272": 12, "717": 12, "627570": 12, "017": 12, "10469": 12, "g088302e28008n": 12, "302000": 12, "008000": 12, "283": 12, "5477": 12, "cn5o197b0021": 12, "627882": 12, "258": 12, "3098849": 12, "454": 12, "729": 12, "10470": 12, "g088308e27981n": 12, "308000": 12, "981000": 12, "625": 12, "5258": 12, "3156": 12, "629527": 12, "753": 12, "3096004": 12, "759": 12, "251": 12, "968": 12, "271": 12, "976": 12, "apr": 12, "fontsiz": 12, "lake1": 12, "lake2": 12, "lake1_asf": 12, "lake2_asf": 12, "234e": 12, "242e": 12, "1e": 12, "098e": 12, "103x": 12, "26y": 12, "51coordin": 12, "623415": 12, "623445": 12, "623475": 12, "623505": 12, "623535": 12, "623565": 12, "623595": 12, "623625": 12, "623655": 12, "623685": 12, "623715": 12, "623745": 12, "623775": 12, "623805": 12, "623835": 12, "623865": 12, "623895": 12, "623925": 12, "623955": 12, "623985": 12, "624015": 12, "624045": 12, "624075": 12, "624105": 12, "624135": 12, "624165": 12, "3099675": 12, "3099645": 12, "3099615": 12, "3099585": 12, "3099555": 12, "3099525": 12, "3099495": 12, "3099465": 12, "3099435": 12, "3099405": 12, "3099375": 12, "3099345": 12, "3099315": 12, "3099285": 12, "3099255": 12, "3099225": 12, "3099195": 12, "3099165": 12, "3099135": 12, "3099105": 12, "3099075": 12, "3099045": 12, "3099015": 12, "3098985": 12, "3098955": 12, "3098925": 12, "3098895": 12, "3098865": 12, "3098835": 12, "3098805": 12, "3098775": 12, "3098745": 12, "3098715": 12, "3098685": 12, "3098655": 12, "3098625": 12, "3098595": 12, "3098565": 12, "3098535": 12, "3098505": 12, "3098475": 12, "3098445": 12, "3098415": 12, "3098385": 12, "3098355": 12, "3098325": 12, "3098295": 12, "3098265": 12, "3098235": 12, "3098205": 12, "3098175": 12, "623400": 12, "3099690": 12, "533": 12, "linewidth": 12, "alpha": 12, "legend_el": 12, "lw": 12, "runtimewarn": 12, "divid": 12, "func": 12, "_execute_task": 12, "cach": 12, "arg": 12, "tempfil": 13, "adlf": 13, "yml": 13, "repo": 13, "reload": 13, "reload_ext": 13, "cpython": 13, "compil": 13, "clang": 13, "darwin": 13, "x86_64": 13, "processor": 13, "i386": 13, "cpu": 13, "architectur": 13, "64bit": 13, "anyon": 13, "earthdata": 13, "login": 13}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"acknowledg": 0, "microsoft": [1, 8], "planetari": [1, 8], "comput": [1, 8, 13], "sentinel": [1, 7], "1": [1, 7, 11], "rtc": [1, 5, 10, 12], "imageri": 1, "learn": [1, 5, 7, 10, 11], "goal": [1, 5, 7, 10], "other": [1, 5, 7, 10, 12], "us": [1, 4, 5, 6, 7, 10, 12], "resourc": [1, 5, 7, 10, 12], "stac": 1, "item": 1, "read": [1, 5, 6, 7, 10, 12], "data": [1, 5, 7, 8, 10, 11, 12, 13], "xarrai": [1, 6], "retriev": 1, "sourc": [1, 10], "granul": [1, 7, 10], "id": [1, 7, 10], "wrap": [1, 5, 6], "up": [1, 5, 6, 10], "refer": 2, "summari": 3, "appendix": 4, "thing": 4, "i": 4, "tri": 4, "didn": 4, "t": 4, "work": 4, "out": 4, "might": 4, "still": 4, "xr": [4, 6, 7], "open_mfdataset": [4, 6, 7], "asf": [5, 7], "process": [5, 8], "inspect": 5, "access": [5, 7, 8, 11], "softwar": [5, 6, 7, 10, 12, 13], "setup": [5, 6, 7, 10, 12], "prepar": [5, 10, 12], "util": [5, 7, 10, 12], "function": [5, 7, 10, 12], "layov": 5, "shadow": 5, "mask": 5, "quick": [5, 7], "visual": [5, 7, 10], "look": [5, 7], "backscatt": [5, 10], "variabl": 5, "handl": [5, 7, 10], "duplic": 5, "time": [5, 10, 12], "step": [5, 10], "approach": [6, 7], "organ": [6, 7, 8, 11], "file": 6, "path": 6, "an": 6, "exampl": [6, 12], "complic": 6, "chunk": [6, 7], "clip": [6, 7, 12], "stack": 6, "aoi": 6, "rioxarrai": 6, "gdal": 7, "vrt": 7, "On": 7, "pro": 7, "con": 7, "virtual": 7, "raster": 7, "format": 7, "vector": [7, 12], "creat": 7, "object": [7, 11], "extract": [7, 10], "metadata": 7, "take": [7, 10], "merg": 7, "add": 7, "anoth": 7, "non": 7, "dimension": 7, "coordin": 7, "slc": 7, "from": [7, 8, 10], "readm": 7, "construct": 7, "orbit": 7, "direct": 7, "coord": 7, "nodata": 7, "valu": 7, "next": 7, "clean": 8, "download": 8, "alaska": 8, "satellit": 8, "facil": 8, "dataset": [9, 10, 11], "comparison": [9, 10, 11], "preliminari": [9, 11], "analysi": [9, 11, 12], "overview": [10, 11], "dem": 10, "common": 10, "subset": 10, "onli": 10, "individu": 10, "averag": 10, "over": 10, "spatial": 10, "resolut": 10, "differ": 10, "break": 10, "asc": 10, "desc": 10, "pass": 10, "introduct": 11, "tutori": 11, "outlin": 11, "chapter": 11, "2": 11, "appli": 12, "seri": 12, "lake": 12, "extent": 12, "environ": 13}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9, "sphinx": 56}}) \ No newline at end of file +Search.setIndex({"docnames": ["Acknowledgments", "PC_RTC", "References", "Summary", "appendix", "asf_inspect", "asf_local_mf", "asf_local_vrt", "ch1_root", "ch2_root", "dataset_comparison", "intro", "rtc_timeseries", "software"], "filenames": ["Acknowledgments.md", "PC_RTC.ipynb", "References.md", "Summary.md", "appendix.md", "asf_inspect.ipynb", "asf_local_mf.ipynb", "asf_local_vrt.ipynb", "ch1_root.md", "ch2_root.md", "dataset_comparison.ipynb", "intro.md", "rtc_timeseries.ipynb", "software.ipynb"], "titles": ["Acknowledgments", "Microsoft Planetary Computer Sentinel-1 RTC Imagery", "References", "Summary", "Appendix", "ASF-processed RTC data inspection", "Xarray open_mfdataset() approach", "GDAL VRT approach", "Data cleaning and organization", "Dataset comparison and preliminary analysis", "RTC dataset comparison", "Introduction", "Applied example: RTC time series analysis", "Software + Data"], "terms": {"thi": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13], "tutori": [0, 1, 3, 5, 6, 7, 8, 9, 10, 12, 13], "wa": [0, 3, 4, 5, 6, 7, 8], "develop": [0, 1], "part": 0, "ucar": 0, "summer": [0, 5], "internship": 0, "parallel": [0, 1, 5, 6, 7, 10, 12], "comput": [0, 4, 5, 6, 7, 10, 11, 12], "scienc": [0, 1, 5, 7, 10], "siparc": [0, 6, 7], "support": 0, "nasa": [0, 1, 13], "s": [0, 1, 4, 5, 6, 7, 8, 10, 12], "open": [0, 1, 3, 6, 7, 11], "sourc": [0, 3, 5, 6, 7, 8, 11], "tool": [0, 3, 4, 7, 8, 10, 11], "framework": [0, 1], "librari": 0, "program": [0, 1], "award": 0, "80nssc22k0345": 0, "The": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13], "author": [0, 5, 6, 7, 10, 12], "grate": 0, "deepak": 0, "cherian": 0, "scott": 0, "henderson": 0, "jessica": 0, "scheick": 0, "rick": 0, "forster": 0, "insight": [0, 12], "advic": 0, "feedback": [0, 3], "dure": [0, 1, 5, 10, 12], "project": [0, 1, 3, 5, 6, 7, 10, 11, 12], "contribut": 0, "well": [0, 1, 3, 4, 6, 7, 9, 10, 11, 13], "virginia": 0, "do": [0, 1, 5, 6, 7, 10, 11, 12], "pleas": [0, 3], "direct": [0, 1, 10, 11], "correspond": 0, "emma": [0, 3], "marshal": [0, 3, 6, 7, 12], "utah": [0, 3], "edu": [0, 3], "e": [0, 1, 3, 5, 6, 7, 10, 12], "book": [1, 11, 13], "demonstr": [1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], "how": [1, 3, 4, 5, 6, 7, 10, 12], "access": [1, 3, 4, 6, 13], "radiometr": [1, 3, 10, 11], "terrain": [1, 3, 6, 7, 10, 11], "correct": [1, 3, 4, 6, 7, 10, 11], "from": [1, 3, 4, 5, 6, 11, 12, 13], "stackstac": [1, 8, 10, 11, 13], "stand": 1, "spatio": 1, "tempor": [1, 7], "asset": 1, "catalog": [1, 3, 8], "common": [1, 4, 6, 11], "describ": 1, "geospati": [1, 13], "inform": [1, 5, 6, 7, 10, 13], "wai": [1, 3, 7, 11], "provid": [1, 6, 12], "user": [1, 4, 5, 7, 10, 12], "work": [1, 3, 5, 6, 7, 8, 10, 11, 12, 13], "commun": [1, 6, 7], "effici": [1, 4, 5, 6], "you": [1, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13], "can": [1, 5, 6, 7, 8, 10, 11, 12, 13], "more": [1, 4, 5, 6, 7, 8, 10, 11, 12, 13], "about": [1, 4, 6, 7, 8, 10, 12, 13], "here": [1, 4, 5, 6, 7, 8, 10, 13], "checkout": 1, "python": [1, 3, 6, 7, 10, 11, 13], "techniqu": [1, 5, 7, 10, 11], "introduct": 1, "pystac": [1, 8, 13], "queri": 1, "cloud": [1, 3, 8, 11, 13], "host": [1, 3, 8, 11, 13], "dataset": [1, 3, 4, 5, 6, 7, 8, 12, 13], "observ": [1, 10, 12], "metadata": [1, 3, 4, 6, 11, 13], "object": [1, 4, 5, 6, 10, 12], "manipul": [1, 11], "organ": [1, 3, 4, 5, 10, 12], "sar": [1, 5, 6, 7, 10, 11, 12, 13], "perform": [1, 4, 6, 7, 8, 10, 11], "group": [1, 5, 11], "reduct": [1, 7, 11], "xarrrai": 1, "visual": [1, 3, 6], "facetgrid": [1, 5], "high": [1, 5, 7, 10, 12], "level": [1, 5, 7, 10, 12], "larg": [1, 3, 4, 6, 7], "store": [1, 5, 6, 7, 10, 12], "cog": [1, 13], "optim": [1, 3, 7, 8, 13], "geotiff": [1, 4, 5, 6, 7, 8, 13], "extract": [1, 5, 6], "These": [1, 5, 7, 10, 11, 12, 13], "ar": [1, 4, 5, 6, 7, 10, 11, 12, 13], "contain": [1, 3, 4, 5, 6, 7, 10, 11, 12, 13], "addit": [1, 4, 5, 7, 10, 11, 12], "exampl": [1, 3, 4, 5, 7, 9, 10, 11], "discuss": [1, 5, 7, 10, 12], "content": [1, 5, 7, 10, 12], "notebook": [1, 4, 5, 6, 7, 8, 10, 11, 12], "guid": [1, 5, 7, 10, 11, 12], "i": [1, 3, 5, 6, 7, 10, 12], "veri": [1, 3, 4, 5, 6, 7, 10, 11, 12], "help": [1, 5, 6, 7, 10, 12], "pattern": [1, 5, 7, 10, 12], "concept": [1, 5, 7, 10, 11, 12], "associ": [1, 5, 6, 7, 10, 12, 13], "code": [1, 5, 6, 7, 10, 12], "dask": [1, 5, 6, 7, 10, 12, 13], "arrai": [1, 5, 6, 7, 10, 12], "import": [1, 5, 6, 7, 10, 11, 12, 13], "xr": [1, 5, 10, 12, 13], "geopanda": [1, 5, 6, 7, 10, 12, 13], "gpd": [1, 5, 6, 7, 10, 12, 13], "matplotlib": [1, 5, 6, 7, 10, 12, 13], "pyplot": [1, 5, 6, 7, 10, 12, 13], "plt": [1, 5, 6, 7, 10, 12, 13], "numpi": [1, 5, 6, 7, 10, 12, 13], "np": [1, 5, 6, 7, 10, 12, 13], "panda": [1, 5, 6, 7, 10, 13], "pd": [1, 5, 6, 7, 10, 13], "request": [1, 13], "rich": [1, 13], "tabl": [1, 13], "planetary_comput": [1, 13], "pystac_cli": [1, 11, 13], "client": [1, 6, 13], "cartopi": 1, "shape": [1, 5, 6, 7, 10, 12, 13], "geometri": [1, 4, 5, 6, 7, 11, 12, 13], "polygon": [1, 6, 7, 12, 13], "rioxarrai": [1, 4, 5, 7, 10, 11, 13], "rio": [1, 5, 6, 7, 10, 12, 13], "ipython": [1, 13], "displai": [1, 13], "imag": [1, 5, 6, 7, 10, 11, 12, 13], "we": [1, 5, 6, 7, 9, 10, 11, 12, 13], "packag": [1, 3, 5, 6, 7, 10, 11, 12, 13], "interact": 1, "In": [1, 4, 5, 7, 10, 11, 12], "cell": [1, 5, 7], "below": [1, 6, 7, 13], "creat": [1, 4, 5, 6, 10, 12], "an": [1, 3, 4, 5, 7, 10, 11, 13], "call": [1, 5, 6, 7, 10], "method": [1, 5, 6, 7, 10], "class": 1, "establish": 1, "connect": [1, 6, 12], "url": 1, "explor": [1, 7, 10, 11, 12], "http": [1, 6, 7, 10, 12], "planetarycomput": 1, "com": [1, 6, 7, 10, 12], "api": 1, "v1": 1, "type": [1, 3, 5, 6, 7, 10, 12], "pc": [1, 5, 7, 10], "stac_vers": 1, "0": [1, 5, 6, 7, 10, 12, 13], "descript": [1, 5, 7, 10, 11], "searchabl": 1, "spatiotempor": 1, "earth": 1, "link": [1, 4, 6], "130": 1, "rel": [1, 5, 11], "self": [1, 5], "href": 1, "applic": 1, "json": 1, "root": 1, "2": [1, 5, 6, 7, 10, 12], "collect": [1, 5, 11], "3": [1, 5, 6, 7, 10, 12, 13], "conform": 1, "titl": [1, 10], "wfs3": 1, "implement": [1, 13], "server": [1, 6, 7, 8], "4": [1, 5, 6, 7, 10], "search": 1, "geo": 1, "get": [1, 6, 7, 8], "5": [1, 5, 6, 7, 10, 12, 13], "post": 1, "6": [1, 5, 6, 7, 10, 12, 13], "child": 1, "daymet": 1, "annual": 1, "pr": 1, "puerto": 1, "rico": 1, "7": [1, 5, 6, 7, 10, 12], "daili": 1, "hi": 1, "hawaii": 1, "8": [1, 5, 7, 10, 12, 13], "3dep": 1, "seamless": 1, "usg": 1, "dem": [1, 6, 7], "9": [1, 5, 6, 7, 12], "lidar": 1, "dsm": 1, "digit": [1, 7, 10], "surfac": [1, 11, 12], "model": [1, 10], "10": [1, 5, 6, 7, 10, 12, 13], "fia": 1, "forest": 1, "inventori": [1, 12], "analysi": [1, 3, 4, 6], "11": [1, 5, 6, 7, 10, 12], "12": [1, 5, 6, 7, 10, 12], "gridmet": 1, "13": [1, 5, 6, 7, 10, 12, 13], "na": 1, "north": [1, 5, 6, 7, 10, 12], "america": 1, "14": [1, 5, 6, 7, 10, 12], "monthli": 1, "15": [1, 5, 6, 7, 10, 12], "16": [1, 5, 6, 7, 10, 12], "17": [1, 5, 6, 7, 10, 12], "18": [1, 5, 6, 7, 10, 12], "gnatsgo": 1, "soil": 1, "databas": 1, "19": [1, 5, 6, 7, 10, 12], "hgb": 1, "harmon": 1, "global": [1, 5], "biomass": 1, "2010": 1, "20": [1, 5, 6, 7, 10, 12], "cop": 1, "glo": 1, "30": [1, 5, 6, 7, 10, 12], "copernicu": [1, 10], "21": [1, 5, 6, 7, 10, 13], "90": [1, 5, 7, 10, 12], "22": [1, 5, 6, 7, 10], "goe": 1, "cmi": 1, "r": [1, 5, 6, 7, 10, 12], "moistur": 1, "23": [1, 5, 7, 10], "terraclim": 1, "24": [1, 5, 6, 7, 10, 12], "nex": 1, "gddp": 1, "cmip6": 1, "exchang": 1, "downscal": 1, "25": [1, 5, 6, 7, 10], "gpm": 1, "imerg": 1, "hhr": 1, "26": [1, 5, 6, 7, 10, 12], "raster": [1, 4, 5, 6, 10], "27": [1, 5, 6, 7, 10, 12], "hag": 1, "height": 1, "abov": [1, 4, 5, 6, 7, 12], "ground": [1, 10], "28": [1, 5, 7, 10, 12], "intens": [1, 6, 11], "29": [1, 5, 6, 7, 10, 12], "pointsourceid": 1, "point": [1, 6, 7], "mtb": 1, "monitor": [1, 6], "trend": 1, "burn": 1, "sever": [1, 6, 7], "31": [1, 5, 6, 7, 10], "noaa": 1, "c": [1, 5, 6, 7, 10], "cap": 1, "region": [1, 5, 6], "land": 1, "cover": [1, 4, 6, 11, 12], "chang": [1, 10, 12], "32": [1, 6, 7, 10], "copc": 1, "33": [1, 6, 7, 10, 12], "modi": 1, "64a1": 1, "061": 1, "area": [1, 4, 5, 6, 7, 10, 11, 12], "34": [1, 5, 6, 7, 10], "alo": 1, "fnf": 1, "mosaic": [1, 7], "non": [1, 5, 6, 10], "35": [1, 6, 7], "return": [1, 4, 5, 6, 7, 10, 12], "36": [1, 6, 7, 10, 12], "mobi": 1, "map": [1, 5, 6, 7, 12], "biodivers": 1, "37": [1, 6, 7, 10], "landsat": 1, "c2": 1, "l2": 1, "38": [1, 5, 6, 7, 10], "era5": 1, "39": [1, 5, 6, 7, 10], "chlori": 1, "40": [1, 6, 7, 10], "kaza": 1, "hydroforecast": 1, "kwando": 1, "upper": 1, "zambezi": 1, "river": 1, "41": [1, 7, 10], "planet": 1, "nicfi": 1, "analyt": [1, 11], "basemap": 1, "42": [1, 5, 6, 7, 10, 12], "17a2h": 1, "gross": 1, "primari": 1, "product": [1, 5, 6, 7, 10, 11], "dai": 1, "43": [1, 5, 6, 7, 10, 12], "11a2": 1, "temperatur": 1, "emiss": 1, "44": [1, 5, 6, 7, 10, 12], "45": [1, 5, 6, 7, 10, 12], "dtm": 1, "nativ": 1, "46": [1, 5, 6, 7, 10, 12], "classif": 1, "47": [1, 5, 6, 7, 10, 12], "48": [1, 5, 6, 7, 10, 12], "gap": 1, "49": [1, 5, 6, 7, 10, 12], "17a2hgf": 1, "fill": 1, "50": [1, 5, 6, 7, 10, 12], "51": [1, 5, 6, 7, 10, 12], "gbif": 1, "facil": [1, 11, 13], "52": [1, 5, 6, 7, 10, 12], "17a3hgf": 1, "net": 1, "yearli": 1, "53": [1, 5, 6, 7, 10, 12], "09a1": 1, "reflect": 1, "500m": 1, "54": [1, 5, 6, 7, 10, 12], "world": [1, 5, 6, 7, 10, 12], "3d": 1, "30m": 1, "55": [1, 5, 6, 7, 10, 12], "palsar": 1, "56": [1, 5, 6, 7, 10, 12], "deltar": 1, "water": [1, 6, 7], "avail": [1, 3, 8, 13], "57": [1, 5, 6, 7, 10, 12], "16a3gf": 1, "evapotranspir": 1, "58": [1, 7, 10], "21a2": 1, "band": [1, 6, 7, 10], "59": [1, 5, 6, 7, 10, 12], "censu": 1, "60": [1, 7, 10], "jrc": 1, "gsw": 1, "61": [1, 7], "flood": 1, "62": [1, 5, 7, 10], "43a4": 1, "nadir": 1, "brdf": 1, "adjust": 1, "nbar": 1, "63": [1, 7], "09q1": 1, "250m": 1, "64": [1, 7], "14a1": 1, "thermal": 1, "anomali": 1, "fire": 1, "65": [1, 7], "hrea": 1, "resolut": 1, "electr": 1, "66": [1, 7], "13q1": 1, "veget": 1, "indic": [1, 5], "67": [1, 7], "14a2": 1, "68": [1, 7], "l2a": 1, "2a": 1, "69": [1, 6, 7], "15a2h": 1, "leaf": 1, "index": [1, 5, 7, 12], "fpar": 1, "70": [1, 7], "11a1": 1, "71": [1, 7], "15a3h": 1, "72": [1, 7, 10], "13a1": 1, "73": [1, 6, 7], "74": [1, 7], "nrcan": 1, "landcov": 1, "canada": 1, "75": [1, 5, 7], "10a2": 1, "snow": 1, "76": [1, 7], "ecmwf": 1, "forecast": 1, "real": 1, "time": [1, 4, 6, 7, 9, 11], "77": [1, 7], "mrm": 1, "qpe": 1, "24h": [1, 10], "pass2": 1, "hour": [1, 7], "pass": [1, 5, 6, 7], "78": [1, 7, 10], "grd": [1, 10], "rang": [1, 5, 6, 7, 10, 11], "detect": [1, 10], "79": [1, 7, 10], "nasadem": 1, "hgt": 1, "v001": 1, "80": [1, 7], "io": 1, "lulc": 1, "esri": 1, "meter": [1, 10], "81": [1, 6, 7], "l1": 1, "82": [1, 7], "drcog": 1, "denver": 1, "council": 1, "govern": 1, "83": [1, 7, 10], "chesapeak": 1, "lc": 1, "84": [1, 5, 6, 7, 10, 12], "85": [1, 7, 10], "lu": 1, "86": [1, 7], "1h": 1, "pass1": 1, "87": [1, 5, 6, 7, 10, 12], "88": [1, 7, 12], "nclimgrid": 1, "u": [1, 5, 6, 7, 10, 12], "climat": 1, "grid": [1, 6, 7, 10, 11], "89": [1, 6, 7], "glm": 1, "lightn": 1, "usda": 1, "cdl": 1, "cropland": 1, "layer": [1, 5, 6, 7, 10, 12], "91": [1, 7], "eclips": 1, "urban": 1, "innov": 1, "sensor": [1, 5, 6, 7, 10, 11, 12], "92": [1, 7], "esa": [1, 10], "cci": 1, "initi": [1, 4, 6, 12], "93": [1, 7], "netcdf": 1, "94": [1, 7], "fw": 1, "nwi": 1, "nation": 1, "wetland": 1, "95": [1, 7, 10], "lcmap": 1, "conu": 1, "v13": 1, "96": [1, 5, 6, 7], "v10": 1, "97": [1, 7], "normal": 1, "tabular": 1, "98": [1, 7, 10, 12], "99": [1, 7], "100": [1, 6, 7, 10], "aster": 1, "l1t": 1, "101": [1, 7], "cil": 1, "gdpcir": 1, "cc": 1, "sa": 1, "impact": [1, 5], "research": 1, "BY": 1, "102": [1, 7], "10m": 1, "103": [1, 5, 6, 7, 12], "intact": [1, 7], "104": 1, "naip": 1, "agricultur": 1, "105": 1, "cdr": 1, "sea": 1, "whoi": 1, "106": 1, "ocean": 1, "heat": 1, "107": 1, "cc0": 1, "108": [1, 6, 7], "109": 1, "110": 1, "optimum": 1, "interpol": 1, "111": 1, "10a1": 1, "112": [1, 7, 12], "5p": 1, "113": [1, 6, 7], "olci": 1, "wfr": 1, "full": [1, 6, 7], "114": [1, 10, 12], "115": 1, "synergi": 1, "aod": 1, "aerosol": 1, "116": 1, "ndvi": 1, "spot": 1, "117": 1, "lfr": 1, "118": [1, 12], "sral": 1, "lan": 1, "radar": [1, 5, 10, 11], "altimetri": 1, "119": [1, 12], "slstr": 1, "lst": 1, "120": 1, "wst": 1, "121": 1, "wat": 1, "122": 1, "ms": 1, "build": [1, 7], "footprint": [1, 4, 6, 7, 12], "123": 1, "frp": 1, "radi": 1, "power": [1, 5, 6, 7], "124": [1, 12], "syn": 1, "125": 1, "vgp": 1, "top": [1, 6], "atmospher": 1, "126": [1, 7], "vg1": 1, "127": [1, 7], "worldcov": 1, "128": 1, "servic": [1, 8], "desc": [1, 5, 7, 12], "openapi": 1, "vnd": 1, "oai": 1, "version": [1, 5, 13], "129": 1, "doc": 1, "text": [1, 7, 10, 12], "html": 1, "document": [1, 4], "conformsto": 1, "www": 1, "opengi": 1, "spec": [1, 10], "cql2": 1, "conf": 1, "basic": 1, "ogcapi": 1, "featur": [1, 11], "core": [1, 10, 12, 13], "geojson": [1, 6, 7, 12], "oas30": 1, "filter": [1, 5, 6, 7, 10, 12], "stacspec": 1, "org": 1, "rc": 1, "field": 1, "sort": [1, 6], "now": [1, 5, 6, 7, 10, 12], "defin": [1, 4, 5, 6, 7], "some": [1, 4, 6, 7, 10, 12], "paramet": [1, 4, 5, 6, 7, 10, 12], "specif": [1, 5, 11, 12, 13], "geograph": 1, "interest": [1, 4, 5, 6, 7, 12], "function": [1, 3, 4, 6, 11], "points2coord": [1, 6, 7, 10], "just": [1, 6, 7, 10], "format": [1, 4, 6, 11], "coordin": [1, 5, 6, 10, 11, 12], "ll": [1, 5, 6, 7], "bound": [1, 7, 10, 12], "box": [1, 7], "list": [1, 5, 6, 7, 10], "def": [1, 5, 6, 7, 10, 12], "pt_l": [1, 6, 7], "should": [1, 6, 7], "xmin": [1, 6, 7, 12], "ymin": [1, 6, 7, 12], "xmax": [1, 6, 7, 12], "ymax": [1, 6, 7, 12], "coords_l": [1, 6, 7], "specifi": [1, 4, 6, 7, 10], "re": [1, 7], "time_rang": 1, "2021": [1, 5, 6, 7, 10, 12], "01": [1, 5, 6, 7, 10, 12], "2022": [1, 5, 6, 7, 10, 12], "08": [1, 5, 6, 7, 10, 12], "bbox": 1, "214935": 1, "92767": 1, "302": 1, "034": 1, "bbox_coord": 1, "entri": 1, "match": [1, 6, 7, 10], "our": [1, 6, 7], "criteria": 1, "aoi": [1, 7], "datetim": [1, 5, 6, 7, 10, 13], "get_all_item": 1, "len": [1, 5, 6, 7, 10], "home": [1, 6, 7, 10, 12], "emmamarshal": [1, 6, 7, 10, 12], "miniconda3": [1, 5, 10, 12], "env": [1, 5, 10, 12], "s1rtc": [1, 5], "lib": [1, 5, 10, 12], "python3": [1, 5, 10, 12], "site": [1, 5, 10, 12], "item_search": 1, "py": [1, 5, 7, 10, 12], "850": 1, "futurewarn": 1, "deprec": [1, 5], "item_collect": 1, "instead": [1, 5, 7, 8, 10], "warn": 1, "143": 1, "ve": [1, 7, 12], "few": [1, 5, 7], "instanc": 1, "check": [1, 6, 7, 11], "out": [1, 3, 5, 7, 8, 10, 11], "better": [1, 3, 4], "familiar": [1, 5, 7], "yourself": 1, "print": [1, 6, 7], "itemsearch": 1, "itemcollect": 1, "see": [1, 4, 5, 6, 7, 10, 13], "via": [1, 7], "embed": 1, "interfac": 1, "featurecollect": 1, "s1a_iw_grdh_1sdv_20220801t121402_20220801t121427_044359_054b39_rtc": [1, 10], "properti": 1, "01t12": [1, 5, 6, 7, 10, 12], "610123z": 1, "platform": [1, 10, 13], "1a": [1, 10], "s1": [1, 6, 7, 10], "28151": 1, "21598": 1, "proj": [1, 10], "421830": 1, "2916240": 1, "703340": 1, "3132220": 1, "epsg": [1, 5, 6, 7, 10, 12], "32645": [1, 5, 6, 7, 10, 12], "end_datetim": [1, 10], "109058": [1, 10], "00": [1, 5, 6, 7, 10], "constel": [1, 10], "transform": [1, 10, 11], "datatake_id": [1, 10], "346937": [1, 10], "start_datetim": [1, 10], "02": [1, 5, 6, 7, 10, 12], "111187": [1, 10], "orbit_sourc": [1, 10], "resorb": [1, 10], "slice_numb": [1, 10], "total_slic": [1, 10], "looks_rang": [1, 10], "sat": [1, 10], "orbit_st": [1, 10], "ascend": [1, 5, 10], "product_typ": [1, 10], "looks_azimuth": [1, 10], "polar": [1, 5, 6, 7, 10], "vv": [1, 5, 6, 7, 10, 12], "vh": [1, 5, 6, 7, 10, 12], "frequency_band": [1, 10], "absolute_orbit": [1, 10], "44359": [1, 10], "relative_orbit": [1, 10], "processing_level": [1, 10], "instrument_mod": [1, 10], "iw": [1, 5, 6, 7, 10, 12], "center_frequ": [1, 10], "405": [1, 10], "resolution_rang": [1, 10], "product_timeli": [1, 10], "fast": [1, 10], "resolution_azimuth": [1, 10], "pixel_spacing_rang": [1, 10], "observation_direct": [1, 10], "right": [1, 6, 10], "pixel_spacing_azimuth": [1, 10], "looks_equivalent_numb": [1, 10], "instrument_configuration_id": [1, 10], "platform_international_design": [1, 10], "2014": [1, 10], "016a": [1, 10], "2061172": 1, "844139": 1, "2101121": 1, "7832745": 1, "2347885": 1, "7815176": 1, "2165994": 1, "7561398": 1, "2711759": 1, "6975806": 1, "277775": 1, "4645268": 1, "3275919": 1, "3771174": 1, "3188758": 1, "2312756": 1, "3555363": 1, "1611209": 1, "4991766": 1, "3666859": 1, "9846704": 1, "7769876": 1, "9224408": 1, "3277712": 1, "7383568": 1, "2896054": 1, "2107705": 1, "881718": 1, "parent": 1, "licens": 1, "int": 1, "247904": 1, "690755": 1, "sentinel_data_legal_notic": 1, "derived_from": 1, "s1a_iw_grdh_1sdv_20220801t121402_20220801t121427_044359_054b39": [1, 10], "preview": 1, "sentinel1euwestrtc": 1, "blob": 1, "window": 1, "sentinel1": 1, "dv": [1, 5, 7, 10, 12], "s1a_iw_grdh_1sdv_20220801t121402_20220801t121427_044359_054b39_e902": 1, "measur": 1, "tiff": [1, 6], "profil": 1, "vertic": [1, 10], "transmit": [1, 10], "horizont": [1, 10], "receiv": [1, 10], "gamma": [1, 6, 7, 10], "naught": [1, 10], "valu": [1, 5, 6, 10], "signal": [1, 10], "appli": [1, 6, 7, 10], "file": [1, 4, 5, 7, 10, 12, 13], "size": [1, 5, 6, 7, 10], "1864400774": 1, "checksum": 1, "60989fa489c1ebf4ea27de1d3c560450": 1, "nodata": [1, 10], "32768": [1, 10], "data_typ": [1, 10], "float32": [1, 5, 6, 7, 10, 12], "spatial_resolut": [1, 10], "role": 1, "1874779451": 1, "8f4244723d81c5cacb5045f13aba68c7": 1, "tilejson": 1, "tile_format": 1, "png": 1, "express": 1, "03": [1, 5, 6, 7, 10, 12], "2b": 1, "log": 1, "2810e": 1, "280": 1, "05": [1, 5, 6, 7, 10, 12], "2f": 1, "3b0": 1, "exp": 1, "28log": 1, "3b1": 1, "045": 1, "asset_as_band": 1, "true": [1, 5, 6, 7, 10], "rescal": 1, "2c": 1, "8000": 1, "2c1": 1, "000": [1, 6, 7], "default": 1, "render": 1, "tile": [1, 7], "rendered_preview": 1, "overview": 1, "20611723": 1, "36668589": 1, "98467037": 1, "28960544": 1, "stac_extens": 1, "extens": [1, 7, 13], "github": [1, 3, 4, 6, 7, 12, 13], "schema": 1, "eo": 1, "v2": 1, "s1a_iw_grdh_1sdv_20220727t120554_20220727t120619_044286_05491d_rtc": [1, 10], "07": [1, 5, 6, 7, 10, 12], "27t12": [1, 5, 6, 7, 10, 12], "06": [1, 5, 6, 7, 10, 12], "953202z": 1, "28423": 1, "21970": 1, "618250": 1, "2960450": 1, "902480": 1, "3180150": 1, "452211": [1, 10], "346397": [1, 10], "454193": [1, 10], "44286": [1, 10], "9801183": 1, "0121865": 1, "9939426": 1, "1729184": 1, "7252634": 1, "6819044": 1, "2182955": 1, "2798472": 1, "3561865": 1, "7231858": 1, "3304652": 1, "5843394": 1, "3772026": 1, "5223238": 1, "3589031": 1, "4089501": 1, "4010815": 1, "3368619": 1, "3797299": 1, "3022315": 1, "4165088": 1, "206452": 1, "4049479": 1, "0894004": 1, "4758345": 1, "7595977": 1, "s1a_iw_grdh_1sdv_20220727t120554_20220727t120619_044286_05491d": [1, 10], "s1a_iw_grdh_1sdv_20220727t120554_20220727t120619_044286_05491d_8a6c": 1, "1848866687": 1, "872821e94ebf45c9cc9998398809b732": 1, "1857450946": 1, "addc7ec51af749c52f4edeb7e8e89044": 1, "75959774": 1, "s1a_iw_grdh_1sdv_20220723t000320_20220723t000345_044220_05471e_rtc": [1, 10], "23t00": [1, 7, 10], "650978z": 1, "27531": 1, "21084": 1, "524490": 1, "2980820": 1, "799800": 1, "3191660": 1, "150333": [1, 10], "345886": [1, 10], "151622": [1, 10], "descend": [1, 5, 10], "44220": [1, 10], "8044214": 1, "0231057": 1, "8292935": 1, "2747258": 1, "9033439": 1, "4312625": 1, "9219145": 1, "6326771": 1, "9527268": 1, "678662": 1, "9294684": 1, "8243024": 1, "9444494": 1, "9504536": 1, "9877134": 1, "0016586": 1, "9712875": 1, "0843713": 1, "9978829": 1, "148287": 1, "9733431": 1, "1919392": 1, "026332": 1, "2909889": 1, "0497456": 1, "4415936": 1, "5583275": 1, "8401155": 1, "4258944": 1, "1939869": 1, "3053834": 1, "3292904": 1, "7849689": 1, "9225324": 1, "777233": 1, "9949089": 1, "s1a_iw_grdh_1sdv_20220723t000320_20220723t000345_044220_05471": [1, 10], "s1a_iw_grdh_1sdv_20220723t000320_20220723t000345_044220_05471e_f9a0": 1, "1837791533": 1, "339b9e17610393f59798e84743bcf519": 1, "1847106635": 1, "efd83657cbc9bf43a729679c789bc5cf": 1, "30538337": 1, "92253241": 1, "04974562": 1, "84011547": 1, "s1a_iw_grdh_1sdv_20220720t121401_20220720t121426_044184_054615_rtc": [1, 10], "20t12": [1, 5, 6, 7, 10, 12], "801000z": 1, "28149": 1, "421810": 1, "2916230": 1, "703300": 1, "3132210": 1, "299940": [1, 10], "345621": [1, 10], "302060": [1, 10], "44184": [1, 10], "2059148": 1, "8440476": 1, "2100172": 1, "7823712": 1, "2345875": 1, "7812457": 1, "2161935": 1, "7561375": 1, "27067": 1, "6973974": 1, "2773714": 1, "4643442": 1, "3267796": 1, "3776551": 1, "3184707": 1, "2314542": 1, "355234": 1, "1610293": 1, "4988763": 1, "3665946": 1, "9842682": 1, "7769932": 1, "9221361": 1, "3276852": 1, "7378471": 1, "2896119": 1, "2105673": 1, "8817168": 1, "s1a_iw_grdh_1sdv_20220720t121401_20220720t121426_044184_054615": [1, 10], "s1a_iw_grdh_1sdv_20220720t121401_20220720t121426_044184_054615_05d6": 1, "1865254106": 1, "19af748f6048807df6820f3ee8ef8a22": 1, "1874494482": 1, "06cdb2d937ace0ed521ba2cd2d284d0c": 1, "20591478": 1, "36659455": 1, "98426824": 1, "28961193": 1, "s1a_iw_grdh_1sdv_20220715t120553_20220715t120618_044111_0543e4_rtc": [1, 10], "15t12": [1, 5, 6, 7, 10, 12], "242032z": 1, "28422": 1, "21971": 1, "618260": 1, "2960440": 1, "741751": [1, 10], "345060": [1, 10], "742314": [1, 10], "44111": [1, 10], "980219": 1, "0121844": 1, "9939394": 1, "1728283": 1, "2183985": 1, "2799366": 1, "3563893": 1, "7231838": 1, "3305665": 1, "5843384": 1, "3773038": 1, "5223228": 1, "3590053": 1, "4090394": 1, "4011825": 1, "3368609": 1, "4166086": 1, "2063607": 1, "4050488": 1, "0893993": 1, "4759362": 1, "7596869": 1, "s1a_iw_grdh_1sdv_20220715t120553_20220715t120618_044111_0543e4": [1, 10], "s1a_iw_grdh_1sdv_20220715t120553_20220715t120618_044111_0543e4_34c8": 1, "1850816181": 1, "e9b56d109d15523d5f5af48949e17f6b": 1, "1858474453": 1, "d2475f94b485f5be76c848717eadfb75": 1, "21839847": 1, "75968695": 1, "99393939": 1, "s1a_iw_grdh_1sdv_20220711t000319_20220711t000344_044045_0541e4_rtc": [1, 10], "11t00": [1, 7, 10], "868452z": 1, "27533": 1, "21085": 1, "524420": 1, "799750": 1, "3191670": 1, "367804": [1, 10], "344548": [1, 10], "369100": [1, 10], "44045": [1, 10], "8034123": 1, "0230356": 1, "8288875": 1, "2746438": 1, "9064322": 1, "4487897": 1, "9210878": 1, "6320631": 1, "9520106": 1, "6784066": 1, "9281308": 1, "8236091": 1, "9438403": 1, "9504666": 1, "9870322": 1, "0027558": 1, "9708784": 1, "08429": 1, "9971735": 1, "1483927": 1, "9727227": 1, "1915919": 1, "0256243": 1, "291185": 1, "0493377": 1, "4416027": 1, "5575075": 1, "8401189": 1, "4253861": 1, "1942593": 1, "3047769": 1, "3292917": 1, "7844658": 1, "9225423": 1, "7764343": 1, "9951953": 1, "s1a_iw_grdh_1sdv_20220711t000319_20220711t000344_044045_0541e4": [1, 10], "s1a_iw_grdh_1sdv_20220711t000319_20220711t000344_044045_0541e4_1de4": 1, "1839101772": 1, "1a976d45a74893b33182617fa98b6e88": 1, "1845891804": 1, "5d55834b5c799dc6feb4b023ca472b3d": 1, "30477686": 1, "92254234": 1, "84011886": 1, "s1a_iw_grdh_1sdv_20220708t121400_20220708t121425_044009_0540d0_rtc": [1, 10], "08t12": [1, 5, 6, 7, 10, 12], "035532z": 1, "28148": 1, "421800": 1, "703280": 1, "534456": [1, 10], "344272": [1, 10], "536608": [1, 10], "44009": [1, 10], "2058132": 1, "844047": 1, "2099157": 1, "7823706": 1, "2344841": 1, "7815159": 1, "2160914": 1, "7562271": 1, "2705686": 1, "6973968": 1, "2772702": 1, "4643437": 1, "3266785": 1, "3776546": 1, "3184724": 1, "2311834": 1, "355132": 1, "1612093": 1, "4987761": 1, "3665942": 1, "922133": 1, "3275047": 1, "s1a_iw_grdh_1sdv_20220708t121400_20220708t121425_044009_0540d0": [1, 10], "s1a_iw_grdh_1sdv_20220708t121400_20220708t121425_044009_0540d0_8484": 1, "1866948737": 1, "d2bdfaa2d429dbd99fa6894ba369ffe7": 1, "1876009804": 1, "0f956036e5a9ef1d0bdb4374cd1e1ad0": 1, "20581323": 1, "s1a_iw_grdh_1sdv_20220703t120553_20220703t120618_043936_053ea7_rtc": [1, 10], "03t12": [1, 5, 6, 7, 10, 12], "553402z": 1, "28425": 1, "618180": 1, "902430": 1, "3180140": 1, "052440": [1, 10], "343719": [1, 10], "054364": [1, 10], "43936": [1, 10], "9817385": 1, "012513": 1, "9934359": 1, "1728426": 1, "7245453": 1, "681834": 1, "2174789": 1, "2797643": 1, "354868": 1, "7231987": 1, "329755": 1, "5842559": 1, "376287": 1, "5219718": 1, "3578929": 1, "4090502": 1, "4002673": 1, "3364187": 1, "3791282": 1, "3025985": 1, "4160075": 1, "2067278": 1, "4041401": 1, "0893182": 1, "4751307": 1, "7596051": 1, "s1a_iw_grdh_1sdv_20220703t120553_20220703t120618_043936_053ea7": [1, 10], "s1a_iw_grdh_1sdv_20220703t120553_20220703t120618_043936_053ea7_a796": 1, "1849774072": 1, "e80aed7be4b1c2079ec518554f1d569d": 1, "1857942688": 1, "192cb1a0bbe3477346bb2f4e9540a696": 1, "21747889": 1, "75960507": 1, "99343589": 1, "68183403": 1, "s1a_iw_grdh_1sdv_20220629t000318_20220629t000343_043870_053cb6_rtc": 1, "29t00": [1, 5, 6, 7, 10, 12], "187957z": 1, "27534": 1, "524390": 1, "799730": 1, "686526": 1, "343222": 1, "689387": [1, 10], "43870": 1, "8032467": 1, "0244824": 1, "828351": 1, "2733916": 1, "9060256": 1, "4487079": 1, "9208854": 1, "6320673": 1, "9517092": 1, "6785033": 1, "9279037": 1, "8227118": 1, "9436348": 1, "9503808": 1, "986735": 1, "0030329": 1, "9707767": 1, "0842922": 1, "9968709": 1, "1484896": 1, "9725217": 1, "1916864": 1, "0253213": 1, "2912819": 1, "0492331": 1, "4415148": 1, "5574045": 1, "840029": 1, "4251809": 1, "1938989": 1, "3046763": 1, "3294725": 1, "7770573": 1, "0000551": 1, "s1a_iw_grdh_1sdv_20220629t000318_20220629t000343_043870_053cb6": 1, "s1a_iw_grdh_1sdv_20220629t000318_20220629t000343_043870_053cb6_0cc8": 1, "1839072769": 1, "c57db192d794784a1021cb1d78861c73": 1, "1847774838": 1, "8e007e1c3e68c923bec68a06995785b2": 1, "30467627": 1, "04923313": 1, "84002903": 1, "s1a_iw_grdh_1sdv_20220626t121359_20220626t121424_043834_053ba2_rtc": [1, 10], "26t12": [1, 5, 6, 7, 10, 12], "455112z": 1, "21599": 1, "2916210": 1, "3132200": 1, "954817": [1, 10], "342946": [1, 10], "955407": [1, 10], "43834": [1, 10], "2099137": 1, "7826414": 1, "2162963": 1, "7559575": 1, "3184713": 1, "2313639": 1, "3551315": 1, "1612996": 1, "4987764": 1, "3665039": 1, "9843656": 1, "7768113": 1, "9222341": 1, "3275033": 1, "7378457": 1, "2895217": 1, "210872": 1, "8817186": 1, "s1a_iw_grdh_1sdv_20220626t121359_20220626t121424_043834_053ba2": [1, 10], "s1a_iw_grdh_1sdv_20220626t121359_20220626t121424_043834_053ba2_5e9d": 1, "1865666154": 1, "fff48cb7acfe22ccb7c9bdeebb74cca0": 1, "1873857630": 1, "50d6939790b7d5276c88cb729eb30f62": 1, "36650391": 1, "98436564": 1, "s1a_iw_grdh_1sdv_20220621t120552_20220621t120617_043761_053978_rtc": [1, 10], "21t12": [1, 5, 6, 7, 10, 12], "04": [1, 5, 6, 7, 10, 12], "879869z": 1, "618170": 1, "902420": 1, "379612": [1, 10], "342392": [1, 10], "380127": [1, 10], "43761": [1, 10], "9820429": 1, "0125968": 1, "9933352": 1, "1728455": 1, "7245516": 1, "6820142": 1, "2174799": 1, "2798545": 1, "3297539": 1, "5841657": 1, "3762859": 1, "5218815": 1, "3578918": 1, "40896": 1, "s1a_iw_grdh_1sdv_20220621t120552_20220621t120617_043761_053978": [1, 10], "s1a_iw_grdh_1sdv_20220621t120552_20220621t120617_043761_053978_2f7a": 1, "1849885174": 1, "f4763e391743697dc59101187273a5d7": 1, "1857566220": 1, "f7d66e40e99ba15206e705df6d6922a": 1, "21747992": 1, "99333519": 1, "68201417": 1, "s1a_iw_grdh_1sdv_20220617t000317_20220617t000342_043695_053770_rtc": [1, 10], "17t00": [1, 5, 6, 7, 10, 12], "273763z": 1, "27524": 1, "21082": 1, "524590": 1, "2980850": 1, "799830": 1, "773155": [1, 10], "341872": [1, 10], "774371": [1, 10], "43695": [1, 10], "8054126": 1, "0224544": 1, "8297935": 1, "2745352": 1, "9035668": 1, "4281906": 1, "9235936": 1, "6386858": 1, "953221": 1, "6782004": 1, "9319127": 1, "8510422": 1, "9455014": 1, "9517842": 1, "9884069": 1, "001012": 1, "9859715": 1, "1884168": 1, "0502607": 1, "4417624": 1, "5591481": 1, "8402023": 1, "4264053": 1, "1943464": 1, "3060925": 1, "3298305": 1, "7850761": 1, "922801": 1, "7784321": 1, "9945244": 1, "s1a_iw_grdh_1sdv_20220617t000317_20220617t000342_043695_053770": [1, 10], "s1a_iw_grdh_1sdv_20220617t000317_20220617t000342_043695_053770_da89": 1, "1841082070": 1, "c14508997d33fbfac8cd6395a9095acb": 1, "1848322094": 1, "b6c6313bf5e12268b705d01e8515b9a7": 1, "30609246": 1, "92280096": 1, "84020233": 1, "s1a_iw_grdh_1sdv_20220614t121359_20220614t121424_043659_05365f_rtc": [1, 10], "14t12": [1, 5, 6, 7, 10, 12], "513880z": 1, "28155": 1, "421870": 1, "703420": 1, "012807": [1, 10], "341599": [1, 10], "014953": [1, 10], "43659": [1, 10], "2065215": 1, "8444121": 1, "2108167": 1, "7840909": 1, "2352954": 1, "7816107": 1, "2175146": 1, "7558741": 1, "2721888": 1, "6977664": 1, "2791918": 1, "4645342": 1, "3291104": 1, "3768539": 1, "3194757": 1, "2322716": 1, "3731357": 1, "082024": 1, "4999784": 1, "3666887": 1, "9854746": 1, "7769763": 1, "9230516": 1, "3280336": 1, "7392742": 1, "2895938": 1, "2116847": 1, "8817232": 1, "s1a_iw_grdh_1sdv_20220614t121359_20220614t121424_043659_05365f": [1, 10], "s1a_iw_grdh_1sdv_20220614t121359_20220614t121424_043659_05365f_0a74": 1, "1865314824": 1, "fe8622562d9b1dc59b3f7e53b1078981": 1, "1873669327": 1, "4027204a99723c279f228ef43da341e3": 1, "20652146": 1, "98547463": 1, "28959376": 1, "s1a_iw_grdh_1sdv_20220609t120551_20220609t120616_043586_053436_rtc": [1, 10], "09t12": [1, 5, 6, 7, 10, 12], "189105z": 1, "28427": 1, "618110": 1, "902380": 1, "09": [1, 5, 6, 7, 10, 12], "688822": [1, 10], "341046": [1, 10], "43586": [1, 10], "9814389": 1, "0126096": 1, "992731": 1, "1728627": 1, "7239388": 1, "6820311": 1, "2168682": 1, "27986": 1, "3539541": 1, "7231174": 1, "3291473": 1, "5842618": 1, "3756785": 1, "5218875": 1, "357285": 1, "4089659": 1, "3996598": 1, "3363345": 1, "3787274": 1, "3028733": 1, "4157046": 1, "2067309": 1, "4035362": 1, "0894145": 1, "474628": 1, "7596103": 1, "s1a_iw_grdh_1sdv_20220609t120551_20220609t120616_043586_053436": [1, 10], "s1a_iw_grdh_1sdv_20220609t120551_20220609t120616_043586_053436_3a38": 1, "1849172623": 1, "f3cf342914cb73f3e9e6895d28744b4": 1, "1856750734": 1, "5fb29759358b5622df056dfcdbcfb31b": 1, "21686823": 1, "99273099": 1, "68203106": 1, "s1a_iw_grdh_1sdv_20220605t000317_20220605t000342_043520_05323c_rtc": [1, 10], "05t00": [1, 5, 6, 7, 10, 12], "836741z": 1, "27532": 1, "524430": 1, "2980830": 1, "3191680": 1, "336084": [1, 10], "340540": [1, 10], "337399": [1, 10], "43520": [1, 10], "8035152": 1, "0231237": 1, "8288853": 1, "2745536": 1, "9064227": 1, "448429": 1, "9211939": 1, "6322412": 1, "9521143": 1, "6784946": 1, "9281283": 1, "8235189": 1, "9438378": 1, "9503765": 1, "9871338": 1, "0027536": 1, "9709825": 1, "0843779": 1, "9972752": 1, "1483905": 1, "9728269": 1, "1916798": 1, "0257261": 1, "2911827": 1, "0494423": 1, "4416906": 1, "5578155": 1, "8402078": 1, "4253854": 1, "1940788": 1, "3048774": 1, "3291109": 1, "7844681": 1, "9226325": 1, "7765394": 1, "9953737": 1, "s1a_iw_grdh_1sdv_20220605t000317_20220605t000342_043520_05323c": [1, 10], "s1a_iw_grdh_1sdv_20220605t000317_20220605t000342_043520_05323c_8d59": 1, "1840514683": 1, "921628446b5df1c85eb2fed15471588d": 1, "1847526531": 1, "ca11c29d5d33f030432db68a0ca2cb01": 1, "30487745": 1, "92263252": 1, "04944227": 1, "84020785": 1, "s1a_iw_grdh_1sdv_20220602t121358_20220602t121423_043484_053126_rtc": [1, 10], "02t12": [1, 5, 6, 7, 10, 12], "897104z": 1, "28147": 1, "703270": 1, "396823": [1, 10], "340262": [1, 10], "397386": [1, 10], "43484": [1, 10], "2058139": 1, "8439567": 1, "2095097": 1, "7823683": 1, "2342811": 1, "7815148": 1, "2158898": 1, "7560455": 1, "2702649": 1, "697305": 1, "2769672": 1, "4642518": 1, "3264828": 1, "3765704": 1, "3181683": 1, "2313625": 1, "3549312": 1, "1610279": 1, "4984761": 1, "3664126": 1, "984064": 1, "7768155": 1, "9220304": 1, "3274159": 1, "7375399": 1, "2895256": 1, "s1a_iw_grdh_1sdv_20220602t121358_20220602t121423_043484_053126": [1, 10], "s1a_iw_grdh_1sdv_20220602t121358_20220602t121423_043484_053126_4e1c": 1, "1865022621": 1, "914372d96022b72155e6136d84a33a38": 1, "1872655875": 1, "a79077dba129fe886ea3a6d49a13f8fa": 1, "20581389": 1, "36641257": 1, "98406404": 1, "28952559": 1, "s1a_iw_grdh_1sdv_20220528t120550_20220528t120615_043411_052f0a_rtc": [1, 10], "28t12": [1, 5, 6, 7, 10, 12], "110968z": 1, "28424": 1, "618210": 1, "902450": 1, "610707": [1, 10], "339722": [1, 10], "611230": [1, 10], "43411": [1, 10], "9800177": 1, "0121886": 1, "9936373": 1, "1728369": 1, "7247527": 1, "6819185": 1, "2178877": 1, "2798509": 1, "3555779": 1, "7231918": 1, "3301602": 1, "5842521": 1, "3766964": 1, "5223288": 1, "3584964": 1, "4087735": 1, "4006772": 1, "3368659": 1, "3794291": 1, "302415": 1, "4162094": 1, "2067258": 1, "4045457": 1, "0894946": 1, "4755329": 1, "7596009": 1, "s1a_iw_grdh_1sdv_20220528t120550_20220528t120615_043411_052f0a": [1, 10], "s1a_iw_grdh_1sdv_20220528t120550_20220528t120615_043411_052f0a_0446": 1, "1850730748": 1, "bc70bafede30bbdf5fb2fb82fb4461c": 1, "1858400097": 1, "d582bf5f3ff6999d49eb3460d2db14ea": 1, "21788771": 1, "75960088": 1, "99363729": 1, "68191847": 1, "s1a_iw_grdh_1sdv_20220521t121357_20220521t121422_043309_052c00_rtc": [1, 10], "786375z": 1, "28153": 1, "421860": 1, "2916220": 1, "703390": 1, "285304": [1, 10], "338944": [1, 10], "287447": [1, 10], "43309": [1, 10], "2064206": 1, "8443213": 1, "210615": 1, "7839092": 1, "2351945": 1, "7815198": 1, "2173116": 1, "755873": 1, "2718852": 1, "6976746": 1, "2789888": 1, "4646234": 1, "3289065": 1, "3771237": 1, "3192737": 1, "2322706": 1, "372935": 1, "0818426": 1, "4998786": 1, "3665981": 1, "9852736": 1, "7769791": 1, "9228496": 1, "3280364": 1, "7390703": 1, "2895964": 1, "2114822": 1, "8816318": 1, "s1a_iw_grdh_1sdv_20220521t121357_20220521t121422_043309_052c00": [1, 10], "s1a_iw_grdh_1sdv_20220521t121357_20220521t121422_043309_052c00_4f15": 1, "1865470343": 1, "9a148c01c3d76af29f239998b25907ad": 1, "1872975938": 1, "0ee0d8b9d3d0e4f4c1864942a0b56c0f": 1, "20642056": 1, "36659805": 1, "98527357": 1, "28959635": 1, "s1a_iw_grdh_1sdv_20220516t120549_20220516t120614_043236_0529dd_rtc": [1, 10], "16t12": [1, 5, 6, 7, 10, 12], "314833z": 1, "618240": 1, "902460": 1, "814536": [1, 10], "338397": [1, 10], "815129": [1, 10], "43236": [1, 10], "993738": 1, "172834": 1, "7250591": 1, "68191": 1, "2181946": 1, "2799384": 1, "356085": 1, "7231868": 1, "330365": 1, "5844306": 1, "3771013": 1, "5223248": 1, "3588031": 1, "4090413": 1, "4009815": 1, "3369532": 1, "3795301": 1, "302414": 1, "4165065": 1, "2062715": 1, "4048493": 1, "0895819": 1, "s1a_iw_grdh_1sdv_20220516t120549_20220516t120614_043236_0529dd": [1, 10], "s1a_iw_grdh_1sdv_20220516t120549_20220516t120614_043236_0529dd_a510": 1, "1850677121": 1, "e6dd6168ee38d3a32f27a2a65775aec": 1, "1858485456": 1, "ed2e0e07f98c2a3e458fe81168d0f149": 1, "21819458": 1, "99373799": 1, "68191003": 1, "s1a_iw_grdh_1sdv_20220509t121356_20220509t121421_043134_0526c4_rtc": [1, 10], "980398z": 1, "28152": 1, "421850": 1, "703370": 1, "479341": [1, 10], "337604": [1, 10], "481455": [1, 10], "43134": [1, 10], "2063197": 1, "8442304": 1, "210414": 1, "7836373": 1, "2349909": 1, "781609": 1, "2170066": 1, "7559615": 1, "2715809": 1, "697673": 1, "2783816": 1, "4646203": 1, "3287048": 1, "3770325": 1, "3190728": 1, "2320891": 1, "3725311": 1, "0819311": 1, "4995783": 1, "3665067": 1, "9850709": 1, "7768917": 1, "922747": 1, "3279475": 1, "7387631": 1, "28951": 1, "s1a_iw_grdh_1sdv_20220509t121356_20220509t121421_043134_0526c4": [1, 10], "s1a_iw_grdh_1sdv_20220509t121356_20220509t121421_043134_0526c4_1bb0": 1, "1868079463": 1, "b3074f61b4988670e771e990168f53cb": 1, "1876182996": 1, "29cda12e618752246a1e3f509920bec6": 1, "20631967": 1, "36650671": 1, "98507093": 1, "28951002": 1, "s1a_iw_grdh_1sdv_20220504t120548_20220504t120613_043061_05245f_rtc": [1, 10], "04t12": [1, 5, 6, 7, 10, 12], "122366z": 1, "28428": 1, "619630": 1, "2960660": 1, "895970": 1, "3178430": 1, "622093": [1, 10], "618410": 1, "336991": [1, 10], "622638": [1, 10], "43061": [1, 10], "9842575": 1, "0125498": 1, "9952485": 1, "1727909": 1, "726387": 1, "6818734": 1, "2198247": 1, "2798336": 1, "3575016": 1, "7229022": 1, "3318833": 1, "5843258": 1, "378522": 1, "5225815": 1, "3603234": 1, "4092973": 1, "4027019": 1, "3371164": 1, "3834428": 1, "2675323": 1, "4181193": 1, "2060746": 1, "4066611": 1, "0892929": 1, "4776443": 1, "7595789": 1, "s1a_iw_grdh_1sdv_20220504t120548_20220504t120613_043061_05245f": [1, 10], "s1a_iw_grdh_1sdv_20220504t120548_20220504t120613_043061_05245f_2c7a": 1, "1851161483": 1, "dfdb50fb74a2317d861eae6cb7bed13": 1, "1859839915": 1, "0438d66c18ccb3f2cebf117c2d812d54": 1, "21982471": 1, "75957888": 1, "99524848": 1, "68187343": 1, "s1a_iw_grdh_1sdv_20220430t000314_20220430t000339_042995_05221e_rtc": [1, 10], "30t00": [1, 5, 6, 7, 10, 12], "201903z": 1, "524470": 1, "2980840": 1, "799780": 1, "701264": [1, 10], "336414": [1, 10], "702542": [1, 10], "42995": [1, 6, 10], "8039135": 1, "0229353": 1, "8289793": 1, "274281": 1, "9023405": 1, "4315541": 1, "9215": 1, "632325": 1, "9524181": 1, "6784882": 1, "9283287": 1, "8234245": 1, "9440409": 1, "9503721": 1, "987441": 1, "0028371": 1, "9710817": 1, "0842856": 1, "9975753": 1, "1482035": 1, "9730329": 1, "1917655": 1, "0259221": 1, "2909078": 1, "0495442": 1, "4416883": 1, "5580205": 1, "840207": 1, "4256917": 1, "1942584": 1, "3050801": 1, "3292911": 1, "7843697": 1, "9227247": 1, "7768392": 1, "9952776": 1, "s1a_iw_grdh_1sdv_20220430t000314_20220430t000339_042995_05221": [1, 10], "s1a_iw_grdh_1sdv_20220430t000314_20220430t000339_042995_05221e_c8b3": 1, "1835294264": 1, "2f8f8b859427c913f4c5f4f5a14da8eb": 1, "1845659694": 1, "82b4dd2b219fbae5f965e5cf5d82e3b6": 1, "30508012": 1, "92272468": 1, "04954425": 1, "s1a_iw_grdh_1sdv_20220427t121355_20220427t121420_042959_0520ee_rtc": [1, 10], "426000z": 1, "421840": 1, "703350": 1, "924939": [1, 10], "336110": [1, 10], "927061": [1, 10], "42959": [1, 10], "2062188": 1, "8441396": 1, "2103164": 1, "7830951": 1, "2348913": 1, "7813376": 1, "2165981": 1, "7563203": 1, "2712767": 1, "6976714": 1, "2777744": 1, "4646171": 1, "3280981": 1, "3770295": 1, "3187682": 1, "2323585": 1, "3555352": 1, "1613015": 1, "4992776": 1, "3665057": 1, "9847693": 1, "7768959": 1, "9225403": 1, "3276796": 1, "7384558": 1, "2894237": 1, "211279": 1, "8816306": 1, "s1a_iw_grdh_1sdv_20220427t121355_20220427t121420_042959_0520e": [1, 10], "s1a_iw_grdh_1sdv_20220427t121355_20220427t121420_042959_0520ee_baeb": 1, "1868139780": 1, "9c144ab1a19de08a087a8cee8f9f2f58": 1, "1875904277": 1, "8932f2fd6be19668190bac38047629e4": 1, "20621878": 1, "36650566": 1, "98476934": 1, "28942369": 1, "s1a_iw_grdh_1sdv_20220422t120548_20220422t120613_042886_051e96_rtc": [1, 10], "22t12": [1, 5, 6, 7, 10, 12], "051309z": 1, "551041": [1, 10], "335510": [1, 10], "551577": [1, 10], "42886": [1, 10], "9823449": 1, "0125904": 1, "7244463": 1, "6819269": 1, "3547666": 1, "7231997": 1, "3296559": 1, "5844374": 1, "376188": 1, "5221533": 1, "4002661": 1, "3363285": 1, "3791271": 1, "3025083": 1, "4160063": 1, "2066376": 1, "4752301": 1, "7595138": 1, "s1a_iw_grdh_1sdv_20220422t120548_20220422t120613_042886_051e96": [1, 10], "s1a_iw_grdh_1sdv_20220422t120548_20220422t120613_042886_051e96_444a": 1, "1850079888": 1, "1d388c296cd34b01d4c4deca99f1422": 1, "1858496026": 1, "6f266efcc7f69222e48d20697f7ae5fa": 1, "75951376": 1, "68192691": 1, "s1a_iw_grdh_1sdv_20220418t000314_20220418t000339_042820_051c63_rtc": [1, 10], "18t00": [1, 5, 6, 7, 10, 12], "603587z": 1, "524460": 1, "799770": 1, "102936": [1, 10], "334947": [1, 10], "104239": [1, 10], "42820": [1, 10], "9022371": 1, "431466": 1, "9282249": 1, "8233365": 1, "9874435": 1, "0029273": 1, "9710842": 1, "0843757": 1, "0259247": 1, "2909979": 1, "4255884": 1, "1938976": 1, "3050804": 1, "3293813": 1, "7767341": 1, "9950992": 1, "s1a_iw_grdh_1sdv_20220418t000314_20220418t000339_042820_051c63": [1, 10], "s1a_iw_grdh_1sdv_20220418t000314_20220418t000339_042820_051c63_0160": 1, "1840376768": 1, "8aa1c6a10a3619840885a31755c0d068": 1, "1847060143": 1, "91fc0952c59fc0dafca55cb2f1e38f83": 1, "30508036": 1, "s1a_iw_grdh_1sdv_20220415t121355_20220415t121420_042784_051b30_rtc": [1, 10], "711367z": 1, "210307": [1, 10], "334640": [1, 10], "212427": [1, 10], "42784": [1, 10], "2104153": 1, "7834567": 1, "2349915": 1, "7815187": 1, "2169045": 1, "7560512": 1, "2714795": 1, "6976724": 1, "2781792": 1, "4646192": 1, "3286037": 1, "377032": 1, "3189707": 1, "2322692": 1, "3724302": 1, "0819306": 1, "4994781": 1, "3665064": 1, "9849704": 1, "7768931": 1, "922646": 1, "3279489": 1, "7386597": 1, "2894211": 1, "2109749": 1, "8815386": 1, "s1a_iw_grdh_1sdv_20220415t121355_20220415t121420_042784_051b30": [1, 10], "s1a_iw_grdh_1sdv_20220415t121355_20220415t121420_042784_051b30_d3f": 1, "1868892861": 1, "3b619cfd2807f46ff13e861a03429313": 1, "1877116298": 1, "9a7de98b5c6ef5fe03e5bfb454343326": 1, "36650636": 1, "28942109": 1, "s1a_iw_grdh_1sdv_20220410t120547_20220410t120612_042711_0518c0_rtc": [1, 10], "10t12": [1, 5, 6, 7, 10, 12], "398442z": 1, "2960420": 1, "3180130": 1, "897487": [1, 10], "334016": [1, 10], "899396": [1, 10], "42711": [1, 10], "9820381": 1, "0124165": 1, "9937348": 1, "172744": 1, "7249506": 1, "6817327": 1, "2178857": 1, "2796704": 1, "3554765": 1, "7231928": 1, "3300611": 1, "5844335": 1, "3766953": 1, "5222385": 1, "3583975": 1, "408955": 1, "4006749": 1, "3366854": 1, "379428": 1, "3023248": 1, "4162082": 1, "2066355": 1, "4045434": 1, "0893141": 1, "4755317": 1, "7595106": 1, "s1a_iw_grdh_1sdv_20220410t120547_20220410t120612_042711_0518c0": [1, 10], "s1a_iw_grdh_1sdv_20220410t120547_20220410t120612_042711_0518c0_ad57": 1, "1849248469": 1, "dc4ded4cc868bfd7bdbf128b40755c07": 1, "1857800450": 1, "370dbbe6800649f6dab0845d3b3b5d3b": 1, "21788565": 1, "75951062": 1, "99373478": 1, "s1a_iw_grdh_1sdv_20220406t000313_20220406t000338_042645_051682_rtc": [1, 10], "06t00": [1, 5, 6, 7, 10, 12], "181999z": 1, "27529": 1, "21083": 1, "681256": [1, 10], "333442": [1, 10], "682743": [1, 10], "42645": [1, 10], "8039112": 1, "0228452": 1, "8290894": 1, "2746397": 1, "9023381": 1, "4314639": 1, "9214952": 1, "6321447": 1, "9524157": 1, "678398": 1, "9441448": 1, "9504601": 1, "9874385": 1, "002747": 1, "9975778": 1, "1482937": 1, "9730304": 1, "1916754": 1, "0260316": 1, "2911759": 1, "0495468": 1, "4417784": 1, "5584305": 1, "8402053": 1, "4257925": 1, "1939872": 1, "3052825": 1, "3293809": 1, "7846715": 1, "9227187": 1, "7768369": 1, "9951874": 1, "s1a_iw_grdh_1sdv_20220406t000313_20220406t000338_042645_051682": [1, 10], "s1a_iw_grdh_1sdv_20220406t000313_20220406t000338_042645_051682_ff5d": 1, "1839808152": 1, "74d860c0f0de2a006b6e029b8f6773e3": 1, "1846408660": 1, "8a0842501473ea58f12928031b306a93": 1, "30528253": 1, "92271872": 1, "04954684": 1, "s1a_iw_grdh_1sdv_20220403t121355_20220403t121420_042609_05154a_rtc": [1, 10], "585924z": 1, "28170": 1, "421570": 1, "2916200": 1, "3132180": 1, "084951": [1, 10], "333130": [1, 10], "086898": [1, 10], "preorb": [1, 10], "42609": [1, 10], "2034604": 1, "8463805": 1, "2093067": 1, "7823671": 1, "2341796": 1, "7815142": 1, "2156862": 1, "7561346": 1, "2700615": 1, "6973942": 1, "2768677": 1, "4639805": 1, "3263828": 1, "3763893": 1, "3179652": 1, "231542": 1, "3547288": 1, "1611172": 1, "4983763": 1, "3663219": 1, "9839619": 1, "7767267": 1, "922032": 1, "3275061": 1, "7374335": 1, "2892562": 1, "2107718": 1, "8815375": 1, "s1a_iw_grdh_1sdv_20220403t121355_20220403t121420_042609_05154a": [1, 10], "s1a_iw_grdh_1sdv_20220403t121355_20220403t121420_042609_05154a_a72b": 1, "1868994854": 1, "0083767d8612852440a827fee64becb3": 1, "1877132508": 1, "d65e427c9d9cd02d63735ed3dcf51796": 1, "20346043": 1, "36632192": 1, "98396194": 1, "28925621": 1, "s1a_iw_grdh_1sdv_20220329t120547_20220329t120612_042536_0512d7_rtc": [1, 10], "29t12": [1, 5, 6, 7, 10, 12], "140262z": 1, "28426": 1, "618160": 1, "640119": [1, 10], "332503": [1, 10], "640405": [1, 10], "42536": [1, 10], "9823401": 1, "0124101": 1, "9934295": 1, "1726625": 1, "7245421": 1, "681744": 1, "2173759": 1, "2796749": 1, "3545637": 1, "7232017": 1, "3295524": 1, "5842579": 1, "3760845": 1, "5219738": 1, "3576895": 1, "4089619": 1, "4000652": 1, "3364208": 1, "3790272": 1, "3025995": 1, "4159077": 1, "2068191": 1, "4039384": 1, "0893202": 1, "4750267": 1, "7593353": 1, "s1a_iw_grdh_1sdv_20220329t120547_20220329t120612_042536_0512d7": [1, 10], "s1a_iw_grdh_1sdv_20220329t120547_20220329t120612_042536_0512d7_2f9f": 1, "1851366425": 1, "e0ae64a9ff78467d090c853e5ad141b3": 1, "1859964499": 1, "b6be367b82761770f77554a188f62277": 1, "21737592": 1, "75933533": 1, "99342947": 1, "68174395": 1, "s1a_iw_grdh_1sdv_20220325t000313_20220325t000338_042470_051096_rtc": [1, 10], "25t00": [1, 5, 6, 7, 10, 12], "139523z": 1, "638828": [1, 10], "331926": [1, 10], "640217": [1, 10], "42470": [1, 10], "8037166": 1, "0231197": 1, "8289885": 1, "2746417": 1, "9017413": 1, "4318372": 1, "9212903": 1, "6320588": 1, "9522131": 1, "6784023": 1, "9281235": 1, "8233386": 1, "9439393": 1, "9503743": 1, "9873419": 1, "0029295": 1, "97098": 1, "0842878": 1, "9974736": 1, "1482058": 1, "9729286": 1, "1916776": 1, "0258228": 1, "2910002": 1, "558123": 1, "8402066": 1, "4255888": 1, "1939879": 1, "3050794": 1, "3290202": 1, "7846693": 1, "9226285": 1, "7766356": 1, "9951914": 1, "s1a_iw_grdh_1sdv_20220325t000313_20220325t000338_042470_051096": [1, 10], "s1a_iw_grdh_1sdv_20220325t000313_20220325t000338_042470_051096_641b": 1, "1840024425": 1, "dd1040a5ba0bc5403371612d33d75372": 1, "1847064110": 1, "90f6b3a91a5b5573933ad33ea10f1c46": 1, "30507937": 1, "92262854": 1, "84020658": 1, "s1a_iw_grdh_1sdv_20220322t121354_20220322t121419_042434_050f59_rtc": [1, 10], "362180z": 1, "28172": 1, "421480": 1, "703200": 1, "861261": [1, 10], "331609": [1, 10], "863098": [1, 10], "42434": [1, 10], "2025445": 1, "846646": 1, "2083952": 1, "7820911": 1, "2335694": 1, "7816914": 1, "2147723": 1, "7562197": 1, "2692514": 1, "6972093": 1, "2760599": 1, "4637055": 1, "3256755": 1, "3762956": 1, "3172594": 1, "231358": 1, "3540244": 1, "1607529": 1, "4975744": 1, "3663191": 1, "9833587": 1, "7767352": 1, "9215238": 1, "3273326": 1, "7366181": 1, "2892666": 1, "2102638": 1, "8815345": 1, "s1a_iw_grdh_1sdv_20220322t121354_20220322t121419_042434_050f59": [1, 10], "s1a_iw_grdh_1sdv_20220322t121354_20220322t121419_042434_050f59_968c": 1, "1869306173": 1, "d11fd850f9744ea7da8e4e7fcb6155b8": 1, "1877602462": 1, "d684920e0ed910d98662306fda9af136": 1, "20254447": 1, "36631911": 1, "98335874": 1, "28926658": 1, "s1a_iw_grdh_1sdv_20220317t120547_20220317t120612_042361_050ce5_rtc": [1, 10], "17t12": [1, 5, 6, 7, 10, 12], "706124z": 1, "618200": 1, "2960410": 1, "3180120": 1, "205265": [1, 10], "330981": [1, 10], "206984": [1, 10], "42361": [1, 10], "9822371": 1, "012322": 1, "9938323": 1, "172651": 1, "7249474": 1, "6816426": 1, "2177827": 1, "279581": 1, "3552737": 1, "7231948": 1, "3299565": 1, "5841637": 1, "3764917": 1, "5221503": 1, "3581952": 1, "408957": 1, "4004728": 1, "3366875": 1, "3792292": 1, "3025975": 1, "4161084": 1, "2067268": 1, "4043417": 1, "0893161": 1, "4754288": 1, "7593311": 1, "s1a_iw_grdh_1sdv_20220317t120547_20220317t120612_042361_050ce5": [1, 10], "s1a_iw_grdh_1sdv_20220317t120547_20220317t120612_042361_050ce5_229b": 1, "1851157188": 1, "cc0f1cd0417f3ab7a9ca4497a27bffa1": 1, "1859445680": 1, "5832380899429b9885dda85acae1b97b": 1, "21778268": 1, "75933115": 1, "99383227": 1, "68164262": 1, "s1a_iw_grdh_1sdv_20220313t000313_20220313t000338_042295_050aa2_rtc": [1, 10], "13t00": [1, 5, 6, 7, 10, 12], "744897z": 1, "27528": 1, "524520": 1, "244245": [1, 10], "330402": [1, 10], "245549": [1, 10], "42295": [1, 10], "8044147": 1, "0228351": 1, "8292866": 1, "2744552": 1, "9034426": 1, "4311703": 1, "9220229": 1, "6329455": 1, "9528305": 1, "67875": 1, "9295723": 1, "8243904": 1, "9445509": 1, "9504514": 1, "9878149": 1, "0016563": 1, "971285": 1, "0842811": 1, "9979847": 1, "1482848": 1, "9733381": 1, "1917589": 1, "0264313": 1, "2908965": 1, "0498528": 1, "4417715": 1, "5585335": 1, "8402951": 1, "4260993": 1, "1942571": 1, "3056889": 1, "3301023": 1, "7846737": 1, "9228089": 1, "7774365": 1, "9949951": 1, "s1a_iw_grdh_1sdv_20220313t000313_20220313t000338_042295_050aa2": [1, 10], "s1a_iw_grdh_1sdv_20220313t000313_20220313t000338_042295_050aa2_ead0": 1, "1841450421": 1, "57e98d4eac4ed8c106665a319c270289": 1, "1848032165": 1, "06a185e3304da3b6be7d3a8a884e436b": 1, "30568886": 1, "04985278": 1, "84029514": 1, "s1a_iw_grdh_1sdv_20220310t121354_20220310t121419_042259_050962_rtc": [1, 10], "994606z": 1, "703290": 1, "3132190": 1, "493699": [1, 10], "330082": [1, 10], "495512": [1, 10], "42259": [1, 10], "2094089": 1, "7822775": 1, "234179": 1, "7816045": 1, "2157889": 1, "7559546": 1, "2701647": 1, "6971239": 1, "2768671": 1, "4640708": 1, "3263822": 1, "3764796": 1, "3180678": 1, "2312717": 1, "3548303": 1, "1610274": 1, "4984765": 1, "3663223": 1, "9841646": 1, "7768141": 1, "9220351": 1, "3276866": 1, "7377423": 1, "2894328": 1, "s1a_iw_grdh_1sdv_20220310t121354_20220310t121419_042259_050962": [1, 10], "s1a_iw_grdh_1sdv_20220310t121354_20220310t121419_042259_050962_07c2": 1, "1869355372": 1, "8fac9172c79d0fc88c81e46e66a40926": 1, "1877981798": 1, "41a44200c3d3e42675337da80f203180": 1, "36632228": 1, "98416457": 1, "28943277": 1, "s1a_iw_grdh_1sdv_20220305t120547_20220305t120612_042186_0506f7_rtc": [1, 10], "05t12": [1, 5, 6, 7, 10, 12], "677073z": 1, "28430": 1, "618130": 1, "176227": [1, 10], "329463": [1, 10], "177919": [1, 10], "42186": [1, 10], "9818368": 1, "0124207": 1, "9932313": 1, "1727583": 1, "7243346": 1, "6816595": 1, "217069": 1, "2795874": 1, "3540566": 1, "7232067": 1, "3292486": 1, "5842608": 1, "3757797": 1, "5218865": 1, "3572883": 1, "4092366": 1, "3997608": 1, "3363335": 1, "3788273": 1, "302782": 1, "4158033": 1, "2065494": 1, "4036359": 1, "0893232": 1, "4747262": 1, "7594287": 1, "s1a_iw_grdh_1sdv_20220305t120547_20220305t120612_042186_0506f7": [1, 10], "s1a_iw_grdh_1sdv_20220305t120547_20220305t120612_042186_0506f7_5f93": 1, "1852325928": 1, "97ed6215600375a6131f7f7e42d4ae78": 1, "1860383274": 1, "973d5def0c33dfa4f7a6e076a4318295": 1, "21706905": 1, "75942873": 1, "99323128": 1, "68165951": 1, "s1a_iw_grdh_1sdv_20220301t000313_20220301t000338_042120_0504af_rtc": 1, "01t00": [1, 5, 6, 7, 10, 12], "589986z": 1, "3191690": 1, "089393": [1, 10], "328879": [1, 10], "090580": [1, 10], "42120": [1, 10], "8042178": 1, "0230195": 1, "8291926": 1, "2747278": 1, "9030408": 1, "4312689": 1, "9217072": 1, "6325011": 1, "9525169": 1, "6783958": 1, "9291497": 1, "8237679": 1, "9442464": 1, "9504579": 1, "9875127": 1, "0017531": 1, "9711858": 1, "0843735": 1, "9977787": 1, "1481991": 1, "9731321": 1, "1916732": 1, "0261258": 1, "2909033": 1, "0496514": 1, "4418663": 1, "5583285": 1, "840296": 1, "4257929": 1, "1940775": 1, "3052828": 1, "3294712": 1, "7847743": 1, "9228069": 1, "7770383": 1, "9951834": 1, "s1a_iw_grdh_1sdv_20220301t000313_20220301t000338_042120_0504af": 1, "s1a_iw_grdh_1sdv_20220301t000313_20220301t000338_042120_0504af_1199": 1, "1841704310": 1, "e20e90e3201b177c90557c5018746f04": 1, "1848145675": 1, "8c48373ade426c42d79ed36e703304eb": 1, "30528278": 1, "92280692": 1, "84029599": 1, "s1a_iw_grdh_1sdv_20220226t121354_20220226t121419_042084_050376_rtc": 1, "075742z": 1, "421580": 1, "574817": 1, "328566": [1, 10], "576668": 1, "42084": [1, 10], "2035613": 1, "8464713": 1, "2097146": 1, "7820987": 1, "2343838": 1, "7813348": 1, "2159919": 1, "7559558": 1, "2703663": 1, "6973055": 1, "2770689": 1, "4641621": 1, "3265856": 1, "3763": 1, "3181672": 1, "231543": 1, "3549302": 1, "1612084": 1, "4985768": 1, "3663226": 1, "9221377": 1, "3277754": 1, "7377408": 1, "2893425": 1, "2108733": 1, "881538": 1, "s1a_iw_grdh_1sdv_20220226t121354_20220226t121419_042084_050376": 1, "s1a_iw_grdh_1sdv_20220226t121354_20220226t121419_042084_050376_7d87": 1, "1871501868": 1, "a78e5ba166fd8bd8ce8c1b6748c427f5": 1, "1879094912": 1, "8df4f90f49002cce0230df3d6407cde0": 1, "20356132": 1, "36632263": 1, "28934254": 1, "s1a_iw_grdh_1sdv_20220221t120547_20220221t120612_042011_050108_rtc": 1, "939806z": 1, "618080": 1, "438945": 1, "327944": [1, 10], "440666": 1, "42011": [1, 10], "9810315": 1, "0124378": 1, "9926271": 1, "1727756": 1, "7238271": 1, "6817637": 1, "2164574": 1, "2795929": 1, "3534481": 1, "7232126": 1, "3287421": 1, "5842656": 1, "3752724": 1, "5218013": 1, "3581562": 1, "3974936": 1, "3992532": 1, "3361581": 1, "3785276": 1, "3030558": 1, "4155016": 1, "2066427": 1, "4031317": 1, "0893282": 1, "4741229": 1, "759435": 1, "s1a_iw_grdh_1sdv_20220221t120547_20220221t120612_042011_050108": 1, "s1a_iw_grdh_1sdv_20220221t120547_20220221t120612_042011_050108_9831": 1, "1853786004": 1, "d5f3444264ce3fdd82db1ac5f094b9fb": 1, "1860866586": 1, "647ceccdc6a6c800fe0b7b1ca826560": 1, "21645736": 1, "75943501": 1, "99262708": 1, "68176365": 1, "s1a_iw_grdh_1sdv_20220217t000313_20220217t000338_041945_04feb2_rtc": 1, "677942z": 1, "2980860": 1, "176642": 1, "327346": [1, 10], "179242": 1, "41945": [1, 10], "804314": 1, "0228371": 1, "9527292": 1, "6787521": 1, "9293598": 1, "824034": 1, "9443454": 1, "9503656": 1, "9877158": 1, "0017487": 1, "9978804": 1, "1481969": 1, "0263346": 1, "291079": 1, "558226": 1, "8402964": 1, "4257922": 1, "193897": 1, "3053841": 1, "3295612": 1, "7847765": 1, "9228971": 1, "7772352": 1, "9949991": 1, "s1a_iw_grdh_1sdv_20220217t000313_20220217t000338_041945_04feb2": 1, "s1a_iw_grdh_1sdv_20220217t000313_20220217t000338_041945_04feb2_6a2c": 1, "1840786190": 1, "667056533b49b2b8c3edbbac76a53766": 1, "1847324712": 1, "1864f7256ba09fcbe83df5ec47c62803": 1, "30538411": 1, "84029641": 1, "s1a_iw_grdh_1sdv_20220214t121354_20220214t121419_041909_04fd6f_rtc": 1, "178103z": 1, "28241": 1, "420920": 1, "703330": 1, "677198": 1, "327023": [1, 10], "679007": 1, "41909": [1, 10], "86403": 1, "5974425": 1, "9845667": 1, "7768085": 1, "9222387": 1, "327774": 1, "7379447": 1, "2893399": 1, "2036606": 1, "8467878": 1, "2098135": 1, "7824603": 1, "2344847": 1, "7814256": 1, "2160921": 1, "7561369": 1, "2772708": 1, "4642534": 1, "3265774": 1, "3776542": 1, "3183703": 1, "2313635": 1, "3551331": 1, "1610288": 1, "4987772": 1, "3663233": 1, "s1a_iw_grdh_1sdv_20220214t121354_20220214t121419_041909_04fd6f": 1, "s1a_iw_grdh_1sdv_20220214t121354_20220214t121419_041909_04fd6f_3952": 1, "1870648966": 1, "74029c4a6490151b21d265a5560a3e94": 1, "1878267778": 1, "cc8900877d1c0553280e409224ca5b7a": 1, "20366057": 1, "36632333": 1, "28933995": 1, "s1a_iw_grdh_1sdv_20220209t120547_20220209t120612_041836_04faf5_rtc": 1, "019287z": 1, "28429": 1, "2960430": 1, "518456": 1, "326389": 1, "520119": 1, "41836": 1, "9819398": 1, "0125088": 1, "9932345": 1, "1728484": 1, "7242356": 1, "6817524": 1, "2170701": 1, "2796777": 1, "3541547": 1, "7229349": 1, "3573861": 1, "4089649": 1, "4158044": 1, "2066396": 1, "403637": 1, "0894134": 1, "s1a_iw_grdh_1sdv_20220209t120547_20220209t120612_041836_04faf5": 1, "s1a_iw_grdh_1sdv_20220209t120547_20220209t120612_041836_04faf5_94bf": 1, "1851372280": 1, "92599c4474baed6136c0dc3d26dea1f5": 1, "1858250597": 1, "c80fd4b6edeac5c108bafcc366a7a671": 1, "21707007": 1, "99323449": 1, "s1a_iw_grdh_1sdv_20220205t000313_20220205t000338_041770_04f88b_rtc": 1, "849186z": 1, "524550": 1, "348647": 1, "325771": 1, "349725": 1, "41770": 1, "8053209": 1, "0228171": 1, "8298003": 1, "2748057": 1, "9034657": 1, "4281928": 1, "9234852": 1, "6384174": 1, "9532258": 1, "6783807": 1, "9319176": 1, "8512225": 1, "9455038": 1, "9518743": 1, "9883053": 1, "0010142": 1, "9858697": 1, "188419": 1, "0500619": 1, "4419472": 1, "5588415": 1, "8403841": 1, "4263034": 1, "1943467": 1, "3059924": 1, "3301919": 1, "7850783": 1, "9228911": 1, "7783336": 1, "9946165": 1, "s1a_iw_grdh_1sdv_20220205t000313_20220205t000338_041770_04f88b": 1, "s1a_iw_grdh_1sdv_20220205t000313_20220205t000338_041770_04f88b_fcf7": 1, "1842118322": 1, "e2ee6bf5beaebcb7ac687208de1d51": 1, "1849058352": 1, "83809e01973feea61e5167d4e6591b8f": 1, "30599236": 1, "92289114": 1, "05006191": 1, "84038412": 1, "s1a_iw_grdh_1sdv_20220202t121354_20220202t121419_041734_04f754_rtc": 1, "057390z": 1, "28247": 1, "21600": 1, "420990": 1, "703460": 1, "557243": 1, "325460": [1, 10], "557538": 1, "41734": [1, 10], "8660391": 1, "5975205": 1, "9858736": 1, "7767902": 1, "9233578": 1, "3282099": 1, "7395771": 1, "2894094": 1, "2113819": 1, "8814507": 1, "2046761": 1, "8467937": 1, "2107139": 1, "7842709": 1, "2790906": 1, "4645337": 1, "3291093": 1, "3770344": 1, "3148608": 1, "309618": 1, "3430187": 1, "2819473": 1, "3194751": 1, "2323619": 1, "3732376": 1, "0818439": 1, "5000802": 1, "3663279": 1, "s1a_iw_grdh_1sdv_20220202t121354_20220202t121419_041734_04f754": 1, "s1a_iw_grdh_1sdv_20220202t121354_20220202t121419_041734_04f754_02d7": 1, "1872347120": 1, "72884db8a2f2ae5005c58d246b3bf59": 1, "1879106636": 1, "d6f16e1ecb8e42f53d0152bdac3ccc24": 1, "36632788": 1, "98587362": 1, "28940941": 1, "s1a_iw_grdh_1sdv_20220128t120547_20220128t120612_041661_04f4d6_rtc": 1, "352862z": 1, "852033": 1, "324822": [1, 10], "853690": 1, "41661": [1, 10], "9824432": 1, "0124981": 1, "9938387": 1, "1728312": 1, "2177837": 1, "2796713": 1, "3300589": 1, "584253": 1, "3765952": 1, "5223298": 1, "3583953": 1, "4087745": 1, "4006715": 1, "3364147": 1, "3793303": 1, "3025965": 1, "4162071": 1, "2065453": 1, "4044448": 1, "0894956": 1, "s1a_iw_grdh_1sdv_20220128t120547_20220128t120612_041661_04f4d6": 1, "s1a_iw_grdh_1sdv_20220128t120547_20220128t120612_041661_04f4d6_7a17": 1, "1853333353": 1, "eb41e71abec8b34022d5c08407dcd8ca": 1, "1859894605": 1, "5f7c6bd25e36060ab6534870c3d624c1": 1, "21778371": 1, "99383869": 1, "s1a_iw_grdh_1sdv_20220124t000313_20220124t000338_041595_04f294_rtc": 1, "24t00": [1, 5, 6, 7, 10, 12], "424832z": 1, "2980870": 1, "799840": 1, "923599": 1, "324244": [1, 10], "926064": 1, "41595": [1, 10], "8054104": 1, "0223642": 1, "829899": 1, "2747135": 1, "9036725": 1, "4283689": 1, "9235912": 1, "6385956": 1, "9533295": 1, "6784687": 1, "9320214": 1, "8513105": 1, "9456054": 1, "9518721": 1, "9885085": 1, "0010098": 1, "9860707": 1, "1883244": 1, "0502633": 1, "4418525": 1, "558944": 1, "8403837": 1, "426406": 1, "194527": 1, "3060967": 1, "3313653": 1, "7850805": 1, "9229813": 1, "7784299": 1, "9944342": 1, "s1a_iw_grdh_1sdv_20220124t000313_20220124t000338_041595_04f294": 1, "s1a_iw_grdh_1sdv_20220124t000313_20220124t000338_041595_04f294_e282": 1, "1842024465": 1, "2aec57660de0785cec98fefd04c3107": 1, "1848146005": 1, "962c8d5938cbf737f0ac1d584fae5d3b": 1, "30609667": 1, "92298132": 1, "05026329": 1, "s1a_iw_grdh_1sdv_20220121t121355_20220121t121420_041559_04f156_rtc": 1, "716165z": 1, "28245": 1, "420950": 1, "703400": 1, "216033": 1, "323926": [1, 10], "216297": 1, "41559": [1, 10], "8656381": 1, "5976133": 1, "9850694": 1, "7768015": 1, "9226491": 1, "3281294": 1, "2040668": 1, "8467902": 1, "2164966": 1, "7563197": 1, "3555358": 1, "1612112": 1, "4992784": 1, "3663251": 1, "s1a_iw_grdh_1sdv_20220121t121355_20220121t121420_041559_04f156": 1, "s1a_iw_grdh_1sdv_20220121t121355_20220121t121420_041559_04f156_099f": 1, "1872523101": 1, "a138031b52fa0c6352bfad98af758464": 1, "1878957107": 1, "ea7911b957a3127df74133d08de988a2": 1, "20406678": 1, "36632508": 1, "98506936": 1, "s1a_iw_grdh_1sdv_20220116t120548_20220116t120613_041486_04eee8_rtc": 1, "877035z": 1, "902470": 1, "376211": 1, "323304": [1, 10], "377859": 1, "41486": [1, 10], "9825438": 1, "012496": 1, "2176818": 1, "2796722": 1, "3299576": 1, "584254": 1, "4005693": 1, "3363254": 1, "3792304": 1, "3026878": 1, "4161096": 1, "2068171": 1, "4043429": 1, "0894064": 1, "4754312": 1, "7595117": 1, "s1a_iw_grdh_1sdv_20220116t120548_20220116t120613_041486_04eee8": 1, "s1a_iw_grdh_1sdv_20220116t120548_20220116t120613_041486_04eee8_f185": 1, "1852959592": 1, "fb54c35b87cee352fdee42d566523ffb": 1, "1859813313": 1, "7af3cb1579be27df41d33fb1bc5a3b22": 1, "21768176": 1, "75951167": 1, "s1a_iw_grdh_1sdv_20220112t000314_20220112t000339_041420_04eccd_rtc": 1, "12t00": [1, 5, 6, 7, 10, 12], "070182z": 1, "524540": 1, "568941": 1, "322765": [1, 10], "571423": 1, "41420": [1, 10], "8052112": 1, "0224584": 1, "8296926": 1, "2745373": 1, "9234876": 1, "6385076": 1, "9883078": 1, "0011044": 1, "9858722": 1, "1885091": 1, "0501613": 1, "4418548": 1, "5593535": 1, "8402917": 1, "4263038": 1, "194437": 1, "30589": 1, "3297407": 1, "7848793": 1, "9229853": 1, "7782308": 1, "9945283": 1, "s1a_iw_grdh_1sdv_20220112t000314_20220112t000339_041420_04eccd": 1, "s1a_iw_grdh_1sdv_20220112t000314_20220112t000339_041420_04eccd_74bb": 1, "1841674140": 1, "4c21bfbe8be068dcc304c3e7bced5228": 1, "1847936889": 1, "857c83d3015af18d5d2fd31967dbadb4": 1, "30589004": 1, "92298529": 1, "05016131": 1, "84029174": 1, "s1a_iw_grdh_1sdv_20220109t121355_20220109t121420_041384_04eb9b_rtc": 1, "415805z": 1, "28240": 1, "420880": 1, "914936": 1, "322459": [1, 10], "916673": 1, "41384": [1, 10], "8606121": 1, "5970117": 1, "983863": 1, "7768184": 1, "9218315": 1, "3275991": 1, "7371292": 1, "2893503": 1, "2029497": 1, "8467837": 1, "2089014": 1, "7822745": 1, "2339779": 1, "7813326": 1, "2153831": 1, "7559523": 1, "2697584": 1, "697212": 1, "2764623": 1, "4640686": 1, "3261816": 1, "3762078": 1, "3176611": 1, "2317211": 1, "3544266": 1, "1610255": 1, "4980756": 1, "3663209": 1, "s1a_iw_grdh_1sdv_20220109t121355_20220109t121420_041384_04eb9b": 1, "s1a_iw_grdh_1sdv_20220109t121355_20220109t121420_041384_04eb9b_1e8c": 1, "1871831280": 1, "80fc2592bf4bdf4da63b86672b0ba201": 1, "1879019714": 1, "d889135f0c1aee2d363e651345fef846": 1, "20294969": 1, "36632087": 1, "98386297": 1, "28935032": 1, "s1a_iw_grdh_1sdv_20220104t120548_20220104t120613_041311_04e931_rtc": 1, "280484z": 1, "618190": 1, "779661": 1, "321841": [1, 10], "781306": 1, "41311": [1, 10], "9822418": 1, "0125024": 1, "7249538": 1, "6818228": 1, "2176828": 1, "2797624": 1, "3550708": 1, "7231968": 1, "3298574": 1, "5843452": 1, "3763905": 1, "5221513": 1, "3580941": 1, "408958": 1, "4004683": 1, "3363264": 1, "3792281": 1, "3025073": 1, "4161073": 1, "2066366": 1, "4042432": 1, "0894977": 1, "4753306": 1, "7595127": 1, "s1a_iw_grdh_1sdv_20220104t120548_20220104t120613_041311_04e931": 1, "s1a_iw_grdh_1sdv_20220104t120548_20220104t120613_041311_04e931_3143": 1, "1853989262": 1, "ea1f7eecd615a9a5c40f1941c25f0074": 1, "1860670002": 1, "21457402e62ac76e55d995f9a4ecfb3f": 1, "21768279": 1, "75951271": 1, "68182277": 1, "s1a_iw_grdh_1sdv_20211231t000314_20211231t000339_041245_04e6d7_rtc": 1, "31t00": [1, 5, 6, 7, 10, 12], "432317z": 1, "27535": 1, "524510": 1, "799860": 1, "931813": 1, "321239": [1, 10], "932821": 1, "41245": [1, 10], "8059138": 1, "0223541": 1, "7787319": 1, "9944282": 1, "3058925": 1, "3306435": 1, "4266094": 1, "194436": 1, "5598656": 1, "8401994": 1, "0504672": 1, "441848": 1, "9717907": 1, "08418": 1, "9888182": 1, "0011835": 1, "9457044": 1, "9517798": 1, "932118": 1, "8511281": 1, "9534235": 1, "6781961": 1, "9237985": 1, "6387717": 1, "9039733": 1, "4282724": 1, "830509": 1, "2748816": 1, "s1a_iw_grdh_1sdv_20211231t000314_20211231t000339_041245_04e6d7": 1, "s1a_iw_grdh_1sdv_20211231t000314_20211231t000339_041245_04e6d7_403f": 1, "1841689212": 1, "b14eaa33d090d0353a5a8740efda9c35": 1, "1847951398": 1, "59581c6ba4179230e88d76fe87d00fbd": 1, "30589252": 1, "05046725": 1, "84019936": 1, "s1a_iw_grdh_1sdv_20211228t121356_20211228t121421_041209_04e5ab_rtc": 1, "858303z": 1, "28244": 1, "420940": 1, "703380": 1, "358168": 1, "320939": [1, 10], "358437": 1, "41209": [1, 10], "865136": 1, "5976163": 1, "499278": 1, "3664154": 1, "3554348": 1, "1612107": 1, "3187742": 1, "2313654": 1, "3272885": 1, "3771159": 1, "2776738": 1, "4645263": 1, "2710756": 1, "6973995": 1, "2164979": 1, "7561392": 1, "2346864": 1, "7816073": 1, "2101141": 1, "7830037": 1, "2039652": 1, "8467896": 1, "2111775": 1, "88163": 1, "7382534": 1, "2895165": 1, "9225449": 1, "3279503": 1, "9848699": 1, "7768945": 1, "s1a_iw_grdh_1sdv_20211228t121356_20211228t121421_041209_04e5ab": 1, "s1a_iw_grdh_1sdv_20211228t121356_20211228t121421_041209_04e5ab_8b61": 1, "1873308921": 1, "88c01ed6a1ffcfe0c9108d59dcd26716": 1, "1880212329": 1, "be6c9774b3516ecaf85ffc9e610a76aa": 1, "20396522": 1, "36641537": 1, "98486987": 1, "28951651": 1, "s1a_iw_grdh_1sdv_20211223t120549_20211223t120614_041136_04e340_rtc": 1, "23t12": [1, 5, 6, 7, 10, 12], "793721z": 1, "292909": 1, "320320": [1, 10], "294533": 1, "41136": [1, 10], "9824455": 1, "0125883": 1, "7247495": 1, "6818284": 1, "2174779": 1, "279674": 1, "s1a_iw_grdh_1sdv_20211223t120549_20211223t120614_041136_04e340": 1, "s1a_iw_grdh_1sdv_20211223t120549_20211223t120614_041136_04e340_1239": 1, "1853713181": 1, "fc58122890f1275ba52fc0effd48afb2": 1, "1859861533": 1, "851592fd3da9cce0f032b703aea5e6bc": 1, "21747786": 1, "s1a_iw_grdh_1sdv_20211219t000315_20211219t000340_041070_04e110_rtc": 1, "19t00": [1, 5, 6, 7, 10, 12], "141449z": 1, "27541": 1, "524380": 1, "799790": 1, "640936": 1, "319760": [1, 10], "641961": 1, "41070": [1, 10], "8053729": 1, "0654006": 1, "7847721": 1, "9227167": 1, "3047776": 1, "3295626": 1, "4256899": 1, "193807": 1, "558328": 1, "8402057": 1, "0497508": 1, "4417738": 1, "0262327": 1, "2910813": 1, "9732389": 1, "1918512": 1, "9711833": 1, "0842833": 1, "9292632": 1, "8242165": 1, "9217048": 1, "6324109": 1, "903036": 1, "4310885": 1, "8291903": 1, "2746376": 1, "s1a_iw_grdh_1sdv_20211219t000315_20211219t000340_041070_04e110": 1, "s1a_iw_grdh_1sdv_20211219t000315_20211219t000340_041070_04e110_c898": 1, "1842110892": 1, "619030dee3444106a656e488592c657": 1, "1847934060": 1, "aec8188fc0c5786e053f18cffbc54a35": 1, "92271674": 1, "84020573": 1, "s1a_iw_grdh_1sdv_20211216t121357_20211216t121422_041034_04dfdd_rtc": 1, "596874z": 1, "28242": 1, "096009": 1, "319453": [1, 10], "097740": 1, "41034": [1, 10], "8643319": 1, "5975309": 1, "4988771": 1, "366414": 1, "2099144": 1, "7825512": 1, "2037615": 1, "8468787": 1, "7380481": 1, "2894289": 1, "9224377": 1, "3275908": 1, "s1a_iw_grdh_1sdv_20211216t121357_20211216t121422_041034_04dfdd": 1, "s1a_iw_grdh_1sdv_20211216t121357_20211216t121422_041034_04dfdd_d57b": 1, "1871629643": 1, "0cf725f32f4d619c3e41a7197c79c4b2": 1, "1878560549": 1, "997e6d72efec6d3232c6f44a6cea2d23": 1, "20376146": 1, "36641397": 1, "28942888": 1, "s1a_iw_grdh_1sdv_20211211t120550_20211211t120615_040961_04dd71_rtc": 1, "11t12": [1, 5, 6, 7, 10, 12], "513966z": 1, "28433": 1, "618070": 1, "902400": 1, "013151": 1, "318833": [1, 10], "014780": 1, "downlink": [1, 10], "40961": [1, 10], "9838668": 1, "0130092": 1, "9926303": 1, "1728656": 1, "7238303": 1, "6818537": 1, "2163564": 1, "279684": 1, "3581551": 1, "3974033": 1, "4741241": 1, "7595253": 1, "s1a_iw_grdh_1sdv_20211211t120550_20211211t120615_040961_04dd71": 1, "s1a_iw_grdh_1sdv_20211211t120550_20211211t120615_040961_04dd71_165f": 1, "1853315434": 1, "11b5f08e0ce1d78ddaa1c86d0328c7e9": 1, "1859886753": 1, "f2e77c86f3e92ee4c9a6047061b1c81c": 1, "21635644": 1, "75952527": 1, "99263029": 1, "68185372": 1, "s1a_iw_grdh_1sdv_20211207t000316_20211207t000341_040895_04db21_rtc": 1, "07t00": [1, 5, 6, 7, 10, 12], "568419z": 1, "067903": 1, "318241": [1, 10], "068935": 1, "40895": [1, 10], "8044169": 1, "0229253": 1, "7773381": 1, "9950873": 1, "3048787": 1, "3295623": 1, "4258951": 1, "1941675": 1, "558533": 1, "8402049": 1, "026439": 1, "2911669": 1, "9733406": 1, "191849": 1, "9526158": 1, "6783035": 1, "9033415": 1, "4311724": 1, "8292912": 1, "2746356": 1, "s1a_iw_grdh_1sdv_20211207t000316_20211207t000341_040895_04db21": 1, "s1a_iw_grdh_1sdv_20211207t000316_20211207t000341_040895_04db21_2b97": 1, "1841189135": 1, "c877550a9de463f58ff32a3a11778c54": 1, "1847439958": 1, "9fcb36ebcce2ef6ab7dcf9013bb58681": 1, "30487868": 1, "84020488": 1, "s1a_iw_grdh_1sdv_20211204t121357_20211204t121422_040859_04d9e8_rtc": 1, "007158z": 1, "420930": 1, "507027": 1, "317928": [1, 10], "507290": 1, "40859": [1, 10], "8649351": 1, "5976175": 1, "4989773": 1, "3664143": 1, "355233": 1, "1612098": 1, "3185728": 1, "2312742": 1, "3268807": 1, "3776556": 1, "277472": 1, "464435": 1, "2706688": 1, "6975779": 1, "2161922": 1, "756318": 1, "2345856": 1, "7815165": 1, "2099124": 1, "782822": 1, "203863": 1, "8468793": 1, "2107711": 1, "8816277": 1, "7381515": 1, "2895178": 1, "9224423": 1, "3278615": 1, "9846672": 1, "7768071": 1, "s1a_iw_grdh_1sdv_20211204t121357_20211204t121422_040859_04d9e8": 1, "s1a_iw_grdh_1sdv_20211204t121357_20211204t121422_040859_04d9e8_b9b1": 1, "1871334511": 1, "a9f6c7c36f4c05d02c781c5831e0e475": 1, "1878924621": 1, "3c0a4474c2201947f0edfa6e659345fd": 1, "20386301": 1, "36641432": 1, "98466723": 1, "28951781": 1, "s1a_iw_grdh_1sdv_20211129t120550_20211129t120615_040786_04d761_rtc": 1, "035677z": 1, "534838": 1, "317281": [1, 10], "536515": 1, "40786": [1, 10], "9819422": 1, "0125989": 1, "724341": 1, "6818397": 1, "2169692": 1, "2797688": 1, "3541558": 1, "7230252": 1, "3292497": 1, "584351": 1, "3757808": 1, "5219768": 1, "399762": 1, "3364238": 1, "3788285": 1, "3028723": 1, "4036381": 1, "0895037": 1, "4747274": 1, "759519": 1, "s1a_iw_grdh_1sdv_20211129t120550_20211129t120615_040786_04d761": 1, "s1a_iw_grdh_1sdv_20211129t120550_20211129t120615_040786_04d761_08c0": 1, "1853191760": 1, "f686c8b13f6634b231b067ae6e7adf4a": 1, "1860107120": 1, "991799f593a0f389e89f5b2f229976f5": 1, "21696915": 1, "75951899": 1, "68183965": 1, "s1a_iw_grdh_1sdv_20211125t000316_20211125t000341_040720_04d50e_rtc": 1, "120003z": 1, "619475": 1, "316686": [1, 10], "620531": 1, "40720": [1, 10], "8042133": 1, "0228392": 1, "5582255": 1, "8402062": 1, "0497482": 1, "4416837": 1, "0262302": 1, "2909911": 1, "9977812": 1, "1482892": 1, "9030384": 1, "4311787": 1, "s1a_iw_grdh_1sdv_20211125t000316_20211125t000341_040720_04d50": 1, "s1a_iw_grdh_1sdv_20211125t000316_20211125t000341_040720_04d50e_5d0": 1, "1840989028": 1, "4c940df17f6b98c705b47c1ceaf5a492": 1, "1847405525": 1, "b9e4f8bd6ec911f274eea0adc48374af": 1, "04974821": 1, "84020615": 1, "s1a_iw_grdh_1sdv_20211122t121358_20211122t121423_040684_04d3cc_rtc": 1, "576899z": 1, "28174": 1, "421550": 1, "076767": 1, "316364": [1, 10], "077031": 1, "40684": [1, 10], "2032553": 1, "8466501": 1, "7374379": 1, "2895269": 1, "9839635": 1, "7768169": 1, "4983759": 1, "3664122": 1, "3547294": 1, "1610269": 1, "3179658": 1, "2314518": 1, "3263833": 1, "3762991": 1, "2767653": 1, "4641605": 1, "2700621": 1, "6973039": 1, "2156868": 1, "7560443": 1, "2093074": 1, "7822769": 1, "s1a_iw_grdh_1sdv_20211122t121358_20211122t121423_040684_04d3cc": 1, "s1a_iw_grdh_1sdv_20211122t121358_20211122t121423_040684_04d3cc_a87d": 1, "1870599543": 1, "e5cecf2e132a545865c27179dff63a45": 1, "1877510105": 1, "90ed96cf67d709802337ab7645025ce9": 1, "20325534": 1, "36641222": 1, "98396351": 1, "28952689": 1, "s1a_iw_grdh_1sdv_20211117t120551_20211117t120616_040611_04d14f_rtc": 1, "560526z": 1, "059690": 1, "315727": [1, 10], "061362": 1, "40611": [1, 10], "9822442": 1, "0125925": 1, "9935366": 1, "1728398": 1, "7246474": 1, "6818312": 1, "2173769": 1, "2797652": 1, "3547643": 1, "7230192": 1, "3296526": 1, "5841666": 1, "3761857": 1, "5219728": 1, "3577907": 1, "4089609": 1, "4001662": 1, "3364197": 1, "3790283": 1, "3026898": 1, "4160052": 1, "2065473": 1, "4040392": 1, "0893192": 1, "s1a_iw_grdh_1sdv_20211117t120551_20211117t120616_040611_04d14f": 1, "s1a_iw_grdh_1sdv_20211117t120551_20211117t120616_040611_04d14f_64d1": 1, "1852341839": 1, "6ef51d64339eb1d546afe13e73938ff5": 1, "1859006695": 1, "e68bd272e8585b829484e3337c2b3368": 1, "21737694": 1, "99353659": 1, "68183121": 1, "s1a_iw_grdh_1sdv_20211113t000316_20211113t000341_040545_04ceff_rtc": 1, "481869z": 1, "27536": 1, "981337": 1, "315135": [1, 10], "982401": 1, "40545": [1, 10], "7851745": 1, "9227088": 1, "4263027": 1, "1941662": 1, "5592506": 1, "8402019": 1, "0501587": 1, "4417647": 1, "9883103": 1, "0011945": 1, "93192": 1, "8513127": 1, "9531221": 1, "6782927": 1, "9034704": 1, "4283731": 1, "s1a_iw_grdh_1sdv_20211113t000316_20211113t000341_040545_04ceff": 1, "s1a_iw_grdh_1sdv_20211113t000316_20211113t000341_040545_04ceff_65e": 1, "1841635009": 1, "c1ce8c96f4d4e6564a7b5143190cf358": 1, "1848328891": 1, "8f0b65e3e799f3ce45fb0738d62e5df5": 1, "92270879": 1, "05015872": 1, "84020191": 1, "s1a_iw_grdh_1sdv_20211110t121358_20211110t121423_040509_04cdc8_rtc": 1, "742983z": 1, "28238": 1, "420890": 1, "242066": 1, "314824": [1, 10], "243900": 1, "40509": [1, 10], "8602111": 1, "5971045": 1, "4983751": 1, "3665928": 1, "3179663": 1, "2313615": 1, "2767659": 1, "4640702": 1, "2700627": 1, "6972136": 1, "2155841": 1, "7562243": 1, "2341809": 1, "7813337": 1, "2092046": 1, "7824568": 1, "2032537": 1, "8468757": 1, "2104657": 1, "8817162": 1, "7372341": 1, "2895295": 1, "9838661": 1, "7769988": 1, "s1a_iw_grdh_1sdv_20211110t121358_20211110t121423_040509_04cdc8": 1, "s1a_iw_grdh_1sdv_20211110t121358_20211110t121423_040509_04cdc8_a5d0": 1, "1869823182": 1, "877e086c714d6c32dd757b12b2362172": 1, "1877247836": 1, "f656d73a0cb42cf49a9cc112042aa920": 1, "20325369": 1, "98386611": 1, "28952948": 1, "s1a_iw_grdh_1sdv_20211105t120551_20211105t120616_040436_04cb46_rtc": 1, "645002z": 1, "618220": 1, "902490": 1, "144152": 1, "314182": [1, 10], "145852": 1, "40436": [1, 10], "9826469": 1, "012584": 1, "725056": 1, "68182": 1, "2178867": 1, "2797606": 1, "3767954": 1, "5221473": 1, "3584975": 1, "4088638": 1, "4007737": 1, "3365039": 1, "4163046": 1, "2062735": 1, "s1a_iw_grdh_1sdv_20211105t120551_20211105t120616_040436_04cb46": 1, "s1a_iw_grdh_1sdv_20211105t120551_20211105t120616_040436_04cb46_ac9d": 1, "1851984556": 1, "1be600080a631f476395f32955b7af76": 1, "1859036305": 1, "d9b99842b6c817e9e2d9a1ed894b67dd": 1, "21788668": 1, "68181995": 1, "s1a_iw_grdh_1sdv_20211101t000317_20211101t000342_040370_04c8e9_rtc": 1, "702246z": 1, "27537": 1, "524450": 1, "799820": 1, "200949": 1, "313577": [1, 10], "203544": 1, "40370": [1, 10], "8049226": 1, "0230055": 1, "7779354": 1, "9948048": 1, "7849733": 1, "9227128": 1, "305283": 1, "3295615": 1, "4262004": 1, "1940762": 1, "5587375": 1, "8401138": 1, "0501535": 1, "4415844": 1, "0268489": 1, "291248": 1, "9736459": 1, "1918424": 1, "9982873": 1, "1481879": 1, "9714908": 1, "0843669": 1, "9881246": 1, "00183": 1, "9452959": 1, "9516983": 1, "9297848": 1, "8247467": 1, "9529196": 1, "678297": 1, "9233887": 1, "6385999": 1, "9030592": 1, "428111": 1, "8294907": 1, "2745413": 1, "s1a_iw_grdh_1sdv_20211101t000317_20211101t000342_040370_04c8e9": 1, "s1a_iw_grdh_1sdv_20211101t000317_20211101t000342_040370_04c8e9_b7eb": 1, "1840626091": 1, "951c0d146b9181384e2d444db1f52d4f": 1, "1847834258": 1, "07dc7190d3d8404f6ef7ffd31bcffcab": 1, "30528303": 1, "92271277": 1, "05015354": 1, "84011377": 1, "s1a_iw_grdh_1sdv_20211029t121358_20211029t121423_040334_04c7a8_rtc": 1, "052769z": 1, "28237": 1, "703260": 1, "551845": 1, "313256": [1, 10], "553693": 1, "40334": [1, 10], "8601107": 1, "5971051": 1, "4981747": 1, "3665921": 1, "3546284": 1, "1610265": 1, "3178653": 1, "231361": 1, "3262822": 1, "3762986": 1, "2766653": 1, "4639794": 1, "2699619": 1, "6971228": 1, "215586": 1, "7559535": 1, "2340781": 1, "7815137": 1, "2091037": 1, "782366": 1, "2031521": 1, "8468752": 1, "2103641": 1, "8817157": 1, "7371321": 1, "2895308": 1, "921931": 1, "3275075": 1, "9837656": 1, "7770002": 1, "s1a_iw_grdh_1sdv_20211029t121358_20211029t121423_040334_04c7a8": 1, "s1a_iw_grdh_1sdv_20211029t121358_20211029t121423_040334_04c7a8_c4db": 1, "1868096021": 1, "28bc610a1d14686677a955e1541b6463": 1, "1876325502": 1, "cbdaf76c5f862445c665865d3433ad4c": 1, "20315214": 1, "36659209": 1, "98376558": 1, "28953078": 1, "s1a_iw_grdh_1sdv_20211024t120551_20211024t120616_040261_04c52e_rtc": 1, "24t12": [1, 5, 6, 7, 10, 12], "954256z": 1, "21972": 1, "3180160": 1, "454118": 1, "312622": [1, 10], "454394": 1, "40261": [1, 10], "9820453": 1, "012687": 1, "993137": 1, "1729413": 1, "7242452": 1, "6820226": 1, "2169702": 1, "2798591": 1, "3541569": 1, "7231154": 1, "3293477": 1, "5840793": 1, "3573873": 1, "4090551": 1, "4036392": 1, "089594": 1, "4747285": 1, "7596093": 1, "s1a_iw_grdh_1sdv_20211024t120551_20211024t120616_040261_04c52": 1, "s1a_iw_grdh_1sdv_20211024t120551_20211024t120616_040261_04c52e_779a": 1, "1850705799": 1, "a934b657a0cfa7171320d8e582bb2910": 1, "1859367383": 1, "077b9a4b6436345ba4788cb2713061e5": 1, "21697018": 1, "75960925": 1, "68202261": 1, "s1a_iw_grdh_1sdv_20211020t000317_20211020t000342_040195_04c2d6_rtc": 1, "20t00": [1, 5, 6, 7, 10, 12], "919736z": 1, "418433": 1, "312022": [1, 10], "421040": 1, "40195": [1, 10], "8043162": 1, "0229273": 1, "7771389": 1, "9951815": 1, "7847699": 1, "9226266": 1, "4257918": 1, "1938067": 1, "558327": 1, "8400252": 1, "0262276": 1, "290901": 1, "9732364": 1, "1917611": 1, "9876168": 1, "0018411": 1, "9442439": 1, "9503678": 1, "9292608": 1, "8241264": 1, "9525145": 1, "6783057": 1, "9218132": 1, "6326792": 1, "9031394": 1, "4311766": 1, "8291857": 1, "2744573": 1, "s1a_iw_grdh_1sdv_20211020t000317_20211020t000342_040195_04c2d6": 1, "s1a_iw_grdh_1sdv_20211020t000317_20211020t000342_040195_04c2d6_30cd": 1, "1837388933": 1, "367bb9da12894c3f90ce59088d994f53": 1, "1845275938": 1, "809bf64527b13dc436748d6d3eae6cfb": 1, "92262656": 1, "84002521": 1, "s1a_iw_grdh_1sdv_20211017t121358_20211017t121423_040159_04c195_rtc": 1, "200359z": 1, "703320": 1, "699399": 1, "311701": [1, 10], "701319": 1, "40159": [1, 10], "2109736": 1, "8817191": 1, "7379476": 1, "2895204": 1, "9223335": 1, "3274117": 1, "9844693": 1, "7769904": 1, "3552335": 1, "1611195": 1, "3184702": 1, "2315445": 1, "3267791": 1, "3777454": 1, "2773708": 1, "4644345": 1, "2706694": 1, "6974876": 1, "2161929": 1, "7562277": 1, "2345862": 1, "7814262": 1, "s1a_iw_grdh_1sdv_20211017t121358_20211017t121423_040159_04c195": 1, "s1a_iw_grdh_1sdv_20211017t121358_20211017t121423_040159_04c195_e0b1": 1, "1866566882": 1, "5a20cbca9e7a5acda9ba0705a3d75828": 1, "1874668635": 1, "dea3f11d3fb08a7ff1a3354e182a6e97": 1, "98446931": 1, "s1a_iw_grdh_1sdv_20211012t120551_20211012t120616_040086_04bf12_rtc": 1, "12t12": [1, 5, 6, 7, 10, 12], "850150z": 1, "618120": 1, "2960460": 1, "902410": 1, "3180170": 1, "349229": 1, "311058": [1, 10], "351071": 1, "40086": [1, 10], "9815443": 1, "0127878": 1, "9928381": 1, "17304": 1, "7241463": 1, "6821155": 1, "2168693": 1, "2799502": 1, "3540533": 1, "7229359": 1, "3292475": 1, "5841705": 1, "3757786": 1, "5217963": 1, "3572861": 1, "4090561": 1, "3997586": 1, "336153": 1, "3787308": 1, "3031441": 1, "4158022": 1, "2064591": 1, "4035384": 1, "089595": 1, "4746303": 1, "7597908": 1, "s1a_iw_grdh_1sdv_20211012t120551_20211012t120616_040086_04bf12": 1, "s1a_iw_grdh_1sdv_20211012t120551_20211012t120616_040086_04bf12_3ed7": 1, "1850216981": 1, "ea0091b9d9488e7eb5c9fe12d060c6cd": 1, "1858234391": 1, "657a19e3caded899a4e23753d02dd530": 1, "21686926": 1, "75979082": 1, "99283811": 1, "s1a_iw_grdh_1sdv_20211008t000317_20211008t000342_040020_04bcb8_rtc": 1, "08t00": [1, 5, 6, 7, 10, 12], "713275z": 1, "27538": 1, "799810": 1, "211968": 1, "310456": [1, 10], "214581": 1, "40020": [1, 10], "8049271": 1, "0231858": 1, "7778347": 1, "9948068": 1, "3051814": 1, "3293811": 1, "4260986": 1, "1940766": 1, "5589421": 1, "8400227": 1, "0500516": 1, "4415867": 1, "0267419": 1, "29107": 1, "9736509": 1, "1920227": 1, "9981906": 1, "1483705": 1, "9713866": 1, "0842789": 1, "9880181": 1, "0016519": 1, "9452983": 1, "9517885": 1, "952922": 1, "6783872": 1, "9030615": 1, "4282012": 1, "829493": 1, "2746315": 1, "s1a_iw_grdh_1sdv_20211008t000317_20211008t000342_040020_04bcb8": 1, "s1a_iw_grdh_1sdv_20211008t000317_20211008t000342_040020_04bcb8_bf4d": 1, "1840973408": 1, "05b8343583496e24e1a1250d3a3829e0": 1, "1848183631": 1, "2645256c3392def121b844c32c339d33": 1, "30518145": 1, "05005156": 1, "84002267": 1, "s1a_iw_grdh_1sdv_20211005t121358_20211005t121423_039984_04bb88_rtc": 1, "035095z": 1, "28154": 1, "534843": 1, "310152": 1, "535347": 1, "39984": 1, "2114809": 1, "8818123": 1, "7389699": 1, "2896879": 1, "922949": 1, "3279448": 1, "985173": 1, "7769805": 1, "4997784": 1, "3665977": 1, "3727328": 1, "081932": 1, "3191727": 1, "2322702": 1, "3288054": 1, "3771232": 1, "2788871": 1, "4647132": 1, "2716817": 1, "6977638": 1, "2172102": 1, "7558724": 1, "2350924": 1, "7816096": 1, "2105142": 1, "7838184": 1, "s1a_iw_grdh_1sdv_20211005t121358_20211005t121423_039984_04bb88": 1, "s1a_iw_grdh_1sdv_20211005t121358_20211005t121423_039984_04bb88_68f7": 1, "1866629861": 1, "683df5f1cfc87127dea2205a0a17ccb4": 1, "1875041877": 1, "9880529abf204173922820443cfecbd": 1, "98517304": 1, "28968788": 1, "s1a_iw_grdh_1sdv_20210930t120551_20210930t120616_039911_04b8ff_rtc": 1, "30t12": [1, 5, 6, 7, 10, 12], "760613z": 1, "259641": 1, "309503": [1, 10], "261585": 1, "39911": [1, 10], "981645": 1, "0127856": 1, "9929388": 1, "1730371": 1, "7241431": 1, "6820254": 1, "2169712": 1, "2799493": 1, "3293488": 1, "5841696": 1, "3758798": 1, "5217953": 1, "3997631": 1, "336514": 1, "3788296": 1, "3029625": 1, "4158056": 1, "2067299": 1, "4037367": 1, "0893222": 1, "4747309": 1, "7597898": 1, "s1a_iw_grdh_1sdv_20210930t120551_20210930t120616_039911_04b8ff": 1, "s1a_iw_grdh_1sdv_20210930t120551_20210930t120616_039911_04b8ff_9b25": 1, "1850859837": 1, "5ef89982114f5e020a97ae3f979d403": 1, "1858802212": 1, "1d08f38ab7c2a0098507531d17e1f27f": 1, "75978977": 1, "99293881": 1, "68202543": 1, "s1a_iw_grdh_1sdv_20210926t000317_20210926t000342_039845_04b6ab_rtc": 1, "26t00": [1, 5, 6, 7, 10, 12], "558327z": 1, "057026": 1, "308907": [1, 10], "059628": 1, "39845": [1, 10], "8046161": 1, "0228311": 1, "7776334": 1, "9948108": 1, "7849711": 1, "9226226": 1, "304979": 1, "3292913": 1, "4259963": 1, "1939866": 1, "5587371": 1, "8400235": 1, "050049": 1, "4414965": 1, "0266401": 1, "2910722": 1, "9735466": 1, "1919348": 1, "998178": 1, "1479197": 1, "9879165": 1, "0016541": 1, "9451919": 1, "9516104": 1, "9296834": 1, "8247488": 1, "9528207": 1, "6783894": 1, "9232851": 1, "6385119": 1, "903647": 1, "4312562": 1, "8294976": 1, "2748119": 1, "s1a_iw_grdh_1sdv_20210926t000317_20210926t000342_039845_04b6ab": 1, "s1a_iw_grdh_1sdv_20210926t000317_20210926t000342_039845_04b6ab_d1e5": 1, "1840122585": 1, "20c32f3e6164b24ec6e85dd33872c453": 1, "1846552525": 1, "05ae60af47c99603dfd1dc7c85769fc6": 1, "30497903": 1, "92262259": 1, "05004897": 1, "84002352": 1, "s1a_iw_grdh_1sdv_20210923t121358_20210923t121423_039809_04b566_rtc": 1, "788780z": 1, "703410": 1, "287715": 1, "308582": [1, 10], "289844": 1, "39809": [1, 10], "2111768": 1, "8817203": 1, "7391737": 1, "2896853": 1, "923047": 1, "3277629": 1, "9853757": 1, "7770679": 1, "5000783": 1, "3667793": 1, "3731362": 1, "0819338": 1, "3290071": 1, "3772145": 1, "2721894": 1, "6976762": 1, "2174118": 1, "7560541": 1, "2107146": 1, "7841806": 1, "s1a_iw_grdh_1sdv_20210923t121358_20210923t121423_039809_04b566": 1, "s1a_iw_grdh_1sdv_20210923t121358_20210923t121423_039809_04b566_0737": 1, "1868141721": 1, "dcdb56f3dfdf4ed20ac8a4b81ed48c0c": 1, "1876188972": 1, "32ea74f78053ba8d27e7531292f4bc45": 1, "36677934": 1, "98537567": 1, "28968528": 1, "s1a_iw_grdh_1sdv_20210918t120550_20210918t120615_039736_04b2fb_rtc": 1, "18t12": [1, 5, 6, 7, 10, 12], "415938z": 1, "915669": 1, "307963": [1, 10], "916208": 1, "39736": [1, 10], "9804251": 1, "0123604": 1, "9938451": 1, "1730113": 1, "7250655": 1, "6820902": 1, "2181956": 1, "2800287": 1, "3304641": 1, "5842491": 1, "3771025": 1, "522415": 1, "4010803": 1, "3367716": 1, "3796289": 1, "3022325": 1, "4165076": 1, "2063617": 1, "4758368": 1, "7597783": 1, "s1a_iw_grdh_1sdv_20210918t120550_20210918t120615_039736_04b2fb": 1, "s1a_iw_grdh_1sdv_20210918t120550_20210918t120615_039736_04b2fb_90af": 1, "1850795544": 1, "d03f2b032eb5765c2cd22e89bdfe0535": 1, "1858497973": 1, "7dbdb7991523f0162808585a0d7443d4": 1, "75977826": 1, "99384511": 1, "68209017": 1, "s1a_iw_grdh_1sdv_20210914t000316_20210914t000341_039670_04b0c4_rtc": 1, "14t00": [1, 5, 6, 7, 10, 12], "135941z": 1, "635342": 1, "307396": [1, 10], "636540": 1, "39670": [1, 10], "8050233": 1, "0230034": 1, "777931": 1, "9946245": 1, "4263041": 1, "1945273": 1, "5592496": 1, "8400214": 1, "0268438": 1, "2910677": 1, "9737551": 1, "1921106": 1, "9982898": 1, "1482781": 1, "9714883": 1, "0842767": 1, "9881171": 1, "0015596": 1, "9454023": 1, "9518765": 1, "9530257": 1, "6784752": 1, "9233863": 1, "6385097": 1, "9031626": 1, "4281991": 1, "8295962": 1, "2747196": 1, "s1a_iw_grdh_1sdv_20210914t000316_20210914t000341_039670_04b0c4": 1, "s1a_iw_grdh_1sdv_20210914t000316_20210914t000341_039670_04b0c4_54a3": 1, "1840281264": 1, "3f605f2b2088cc01280bcd6f7608e662": 1, "1846760166": 1, "102d51eede34dc6072f7f1afad8110ab": 1, "84002139": 1, "s1a_iw_grdh_1sdv_20210911t121357_20210911t121422_039634_04af85_rtc": 1, "406593z": 1, "28150": 1, "905498": 1, "307077": [1, 10], "907688": 1, "39634": [1, 10], "2062181": 1, "8442299": 1, "2112777": 1, "8818112": 1, "7382549": 1, "2896067": 1, "9225418": 1, "3277699": 1, "9847725": 1, "7770764": 1, "4994773": 1, "3666869": 1, "3723294": 1, "0819302": 1, "3189724": 1, "2319983": 1, "328502": 1, "3771218": 1, "278078": 1, "4646187": 1, "2713781": 1, "6976719": 1, "2169051": 1, "7559609": 1, "2349934": 1, "7812479": 1, "2103138": 1, "7834561": 1, "s1a_iw_grdh_1sdv_20210911t121357_20210911t121422_039634_04af85": 1, "s1a_iw_grdh_1sdv_20210911t121357_20210911t121422_039634_04af85_e8a4": 1, "1867417713": 1, "93c2dbd8ce9a329ddd09ef806cb87578": 1, "1875673198": 1, "1b9b355e0f1e8fce595bee4eb53c80a3": 1, "20621812": 1, "36668694": 1, "98477247": 1, "28960674": 1, "s1a_iw_grdh_1sdv_20210906t120550_20210906t120615_039561_04ad0d_rtc": 1, "06t12": [1, 5, 6, 7, 10, 12], "971474z": 1, "470505": 1, "306445": [1, 10], "472443": 1, "39561": [1, 10], "9937412": 1, "1729241": 1, "2179897": 1, "27985": 1, "3557808": 1, "7231898": 1, "3301635": 1, "5845228": 1, "3768966": 1, "5221463": 1, "3585986": 1, "4088628": 1, "4007783": 1, "3368649": 1, "379529": 1, "3023238": 1, "416308": 1, "2065443": 1, "4046465": 1, "0894936": 1, "4756346": 1, "7596901": 1, "s1a_iw_grdh_1sdv_20210906t120550_20210906t120615_039561_04ad0d": 1, "s1a_iw_grdh_1sdv_20210906t120550_20210906t120615_039561_04ad0d_190c": 1, "1849342737": 1, "37bf9b7c3cef4c3467706f9a30741651": 1, "1858394123": 1, "0ea6b1ab787a1d8f8ebc84946d626ae6": 1, "21798965": 1, "75969009": 1, "s1a_iw_grdh_1sdv_20210902t000315_20210902t000340_039495_04aab3_rtc": 1, "02t00": [1, 5, 6, 7, 10, 12], "464707z": 1, "524500": 1, "3191650": 1, "964057": 1, "305843": [1, 10], "965357": 1, "39495": [1, 10], "8055156": 1, "0225425": 1, "7784277": 1, "994344": 1, "7853713": 1, "9225245": 1, "3057912": 1, "3305534": 1, "4266101": 1, "1946166": 1, "0503575": 1, "4415798": 1, "9861775": 1, "1885025": 1, "9036749": 1, "428459": 1, "8298967": 1, "2746233": 1, "s1a_iw_grdh_1sdv_20210902t000315_20210902t000340_039495_04aab3": 1, "s1a_iw_grdh_1sdv_20210902t000315_20210902t000340_039495_04aab3_4826": 1, "1839255425": 1, "3a71e00cc20043b27f151a53a10f51d9": 1, "1847221864": 1, "8038fd60cd30ad2ee4e2727d530bbcef": 1, "30579118": 1, "92252446": 1, "s1a_iw_grdh_1sdv_20210830t121357_20210830t121422_039459_04a972_rtc": 1, "783019z": 1, "282732": 1, "305522": 1, "283307": 1, "39459": 1, "2107698": 1, "8818083": 1, "7376433": 1, "2896145": 1, "9221346": 1, "327595": 1, "9841677": 1, "7769946": 1, "3550311": 1, "1612089": 1, "2704665": 1, "6974866": 1, "2344853": 1, "7813354": 1, "2098142": 1, "78237": 1, "s1a_iw_grdh_1sdv_20210830t121357_20210830t121422_039459_04a972": 1, "s1a_iw_grdh_1sdv_20210830t121357_20210830t121422_039459_04a972_bf51": 1, "1865892369": 1, "33cfdf9c6815fb4b37ed7e0080ab7dd1": 1, "1874919785": 1, "bdb7e9ae1465c91c6d5e16312035a5d8": 1, "98416771": 1, "28961452": 1, "s1a_iw_grdh_1sdv_20210825t120549_20210825t120614_039386_04a6fc_rtc": 1, "25t12": [1, 5, 6, 7, 10, 12], "421490z": 1, "921233": 1, "304892": [1, 10], "921748": 1, "39386": [1, 10], "9799194": 1, "0122809": 1, "7249602": 1, "6820029": 1, "2178898": 1, "2800314": 1, "3556794": 1, "7231908": 1, "3767976": 1, "5223278": 1, "3795279": 1, "3022335": 1, "4163069": 1, "206454": 1, "s1a_iw_grdh_1sdv_20210825t120549_20210825t120614_039386_04a6fc": 1, "s1a_iw_grdh_1sdv_20210825t120549_20210825t120614_039386_04a6fc_7a0b": 1, "1849855320": 1, "952cf5763d5438f40d1eceb53579e42b": 1, "1859057771": 1, "bbf26ae09c477c13fe4e46ddaacf3d8b": 1, "21788976": 1, "68200291": 1, "s1a_iw_grdh_1sdv_20210821t000315_20210821t000340_039320_04a4b9_rtc": [1, 10], "21t00": [1, 5, 6, 7, 10, 12], "059716z": 1, "27540": 1, "559065": [1, 10], "304313": [1, 10], "560368": [1, 10], "39320": [1, 10], "784866": 1, "9224442": 1, "304676": 1, "3293822": 1, "425691": 1, "1940778": 1, "5578145": 1, "8400273": 1, "0496411": 1, "4415057": 1, "9873345": 1, "002659": 1, "9523144": 1, "6784002": 1, "9215023": 1, "6324152": 1, "9022394": 1, "4315562": 1, "s1a_iw_grdh_1sdv_20210821t000315_20210821t000340_039320_04a4b9": [1, 10], "s1a_iw_grdh_1sdv_20210821t000315_20210821t000340_039320_04a4b9_7651": 1, "1841180976": 1, "d47b81a20e85c89a9ca739dc611f1bdd": 1, "1848338829": 1, "8536ed7de681dbe2b83797f670e4d64b": 1, "30467602": 1, "92244421": 1, "04964105": 1, "84002733": 1, "s1a_iw_grdh_1sdv_20210818t121356_20210818t121421_039284_04a383_rtc": [1, 10], "226637z": 1, "725577": [1, 10], "304003": [1, 10], "727697": [1, 10], "39284": [1, 10], "984873": 1, "777075": 1, "4993771": 1, "3666866": 1, "3556367": 1, "1612117": 1, "3189746": 1, "2316372": 1, "3284014": 1, "377031": 1, "2778756": 1, "4646176": 1, "216803": 1, "7560506": 1, "23489": 1, "7815182": 1, "2103145": 1, "7833659": 1, "s1a_iw_grdh_1sdv_20210818t121356_20210818t121421_039284_04a383": [1, 10], "s1a_iw_grdh_1sdv_20210818t121356_20210818t121421_039284_04a383_bc2": 1, "1865977949": 1, "c72bf190efce03f57ab0e694fe8b75e6": 1, "1874387191": 1, "f8d22b60375ca3de7a66ef403d000a09": 1, "36668659": 1, "98487301": 1, "s1a_iw_grdh_1sdv_20210813t120549_20210813t120614_039211_04a0ff_rtc": [1, 10], "13t12": [1, 5, 6, 7, 10, 12], "713793z": 1, "28421": 1, "618300": 1, "902510": 1, "213502": [1, 10], "303359": [1, 10], "214084": [1, 10], "39211": [1, 10], "980624": 1, "012266": 1, "9942447": 1, "1729097": 1, "725573": 1, "681986": 1, "2187053": 1, "2800241": 1, "356795": 1, "7231799": 1, "3308725": 1, "584516": 1, "3776098": 1, "5225003": 1, "3594088": 1, "4089452": 1, "4015868": 1, "3368568": 1, "3800308": 1, "302048": 1, "4170101": 1, "2061761": 1, "4054532": 1, "0894856": 1, "4763396": 1, "759773": 1, "s1a_iw_grdh_1sdv_20210813t120549_20210813t120614_039211_04a0ff": [1, 10], "s1a_iw_grdh_1sdv_20210813t120549_20210813t120614_039211_04a0ff_0305": 1, "1848888770": 1, "768978653becd310c5c3562153d39352": 1, "1857678647": 1, "b8add69dceb8ee53445731c6f5ca7536": 1, "21870534": 1, "75977302": 1, "68198603": 1, "s1a_iw_grdh_1sdv_20210809t000314_20210809t000339_039145_049eac_rtc": [1, 10], "09t00": [1, 5, 6, 7, 10, 12], "454588z": 1, "27539": 1, "524400": 1, "953924": [1, 10], "302764": [1, 10], "955252": [1, 10], "39145": [1, 10], "8043207": 1, "0231077": 1, "784667": 1, "9225384": 1, "3048782": 1, "3293818": 1, "5582245": 1, "8400256": 1, "0496436": 1, "4415958": 1, "829188": 1, "2745475": 1, "s1a_iw_grdh_1sdv_20210809t000314_20210809t000339_039145_049eac": [1, 10], "s1a_iw_grdh_1sdv_20210809t000314_20210809t000339_039145_049eac_ff46": 1, "1838141873": 1, "407ea217dcd530cf2befc106ba45e6e2": 1, "1845668472": 1, "3e72c0abee4953f9d1a2b2b4ac4c8a1a": 1, "30487819": 1, "92253836": 1, "04964364": 1, "84002564": 1, "s1a_iw_grdh_1sdv_20210806t121356_20210806t121421_039109_049d70_rtc": [1, 10], "698596z": 1, "197519": [1, 10], "302448": [1, 10], "199672": [1, 10], "39109": [1, 10], "206319": 1, "8443207": 1, "21138": 1, "8817215": 1, "7386626": 1, "2896015": 1, "9227485": 1, "3280378": 1, "984972": 1, "7769833": 1, "4996778": 1, "3666876": 1, "3726319": 1, "0819315": 1, "3191744": 1, "2319993": 1, "3288059": 1, "377033": 1, "2788888": 1, "4644423": 1, "2716823": 1, "6976735": 1, "217108": 1, "7559621": 1, "235093": 1, "7815193": 1, "2104121": 1, "7839081": 1, "s1a_iw_grdh_1sdv_20210806t121356_20210806t121421_039109_049d70": [1, 10], "s1a_iw_grdh_1sdv_20210806t121356_20210806t121421_039109_049d70_358f": 1, "1866849711": 1, "096d272f2f36c25342ddd02481aa0a3": 1, "1875753699": 1, "e1c25a88759a9a776a9278e4c78609b3": 1, "20631901": 1, "36668765": 1, "98497197": 1, "28960155": 1, "s1a_iw_grdh_1sdv_20210801t120548_20210801t120613_039036_049b1f_rtc": [1, 10], "150857z": 1, "649807": [1, 10], "301855": [1, 10], "651907": [1, 10], "39036": [1, 10], "9798187": 1, "0122831": 1, "9937444": 1, "1730142": 1, "7250623": 1, "6820001": 1, "330366": 1, "5845209": 1, "3589009": 1, "4087696": 1, "3795312": 1, "3025043": 1, "4048505": 1, "0896721": 1, "s1a_iw_grdh_1sdv_20210801t120548_20210801t120613_039036_049b1f": [1, 10], "s1a_iw_grdh_1sdv_20210801t120548_20210801t120613_039036_049b1f_f4cf": 1, "1849667547": 1, "4eb635efbee259c88c82d5d88d54c9d1": 1, "1857752361": 1, "132ed423fcfc43de1554182f7a771302": 1, "99374441": 1, "s1a_iw_grdh_1sdv_20210728t000314_20210728t000339_038970_04991e_rtc": [1, 10], "28t00": [1, 5, 6, 7, 10, 12], "667023z": 1, "799870": 1, "166376": [1, 10], "301342": [1, 10], "167671": [1, 10], "38970": [1, 10], "8061085": 1, "0220796": 1, "7789288": 1, "9942439": 1, "7852751": 1, "9227068": 1, "3061963": 1, "3308234": 1, "4269162": 1, "1947059": 1, "5601722": 1, "8400176": 1, "050666": 1, "4416631": 1, "9719965": 1, "0842657": 1, "9890163": 1, "0009988": 1, "9459099": 1, "9518656": 1, "9322146": 1, "8509456": 1, "9535199": 1, "6780136": 1, "9238997": 1, "6387695": 1, "9040649": 1, "4279096": 1, "8308163": 1, "2750558": 1, "s1a_iw_grdh_1sdv_20210728t000314_20210728t000339_038970_04991": [1, 10], "s1a_iw_grdh_1sdv_20210728t000314_20210728t000339_038970_04991e_c882": 1, "1839235753": 1, "929073f1cd952e202e43aa01a874b040": 1, "1848864998": 1, "e1f7470191ffa37e030aa013d9a2df39": 1, "30619627": 1, "92270681": 1, "05066603": 1, "84001756": 1, "s1a_iw_grdh_1sdv_20210725t121355_20210725t121420_038934_04980f_rtc": [1, 10], "814919z": 1, "28156": 1, "421910": 1, "703470": 1, "313830": [1, 10], "301071": [1, 10], "316007": [1, 10], "38934": [1, 10], "2069263": 1, "844595": 1, "211787": 1, "8816335": 1, "7399877": 1, "2895847": 1, "9237666": 1, "328475": 1, "9861799": 1, "7770566": 1, "5007803": 1, "3666915": 1, "373639": 1, "0822068": 1, "3202836": 1, "2322755": 1, "3441296": 1, "2820428": 1, "3157687": 1, "3098933": 1, "3295116": 1, "3773975": 1, "2796978": 1, "4645368": 1, "2727961": 1, "6979502": 1, "2189474": 1, "7541671": 1, "s1a_iw_grdh_1sdv_20210725t121355_20210725t121420_038934_04980f": [1, 10], "s1a_iw_grdh_1sdv_20210725t121355_20210725t121420_038934_04980f_52ff": 1, "1866902577": 1, "620cc0e00adc415be0da32a043c91fdf": 1, "1876123828": 1, "4eead1a710574c930ed138ef5ed6d1ca": 1, "20692635": 1, "36669149": 1, "98617993": 1, "28958466": 1, "s1a_iw_grdh_1sdv_20210720t120547_20210720t120612_038861_0495ec_rtc": [1, 10], "428473z": 1, "927516": [1, 10], "300524": [1, 10], "929430": [1, 10], "38861": [1, 10], "9815372": 1, "0125173": 1, "7246506": 1, "6819213": 1, "3296548": 1, "5843472": 1, "3761869": 1, "522063": 1, "3577918": 1, "4090512": 1, "4001685": 1, "3366002": 1, "3790305": 1, "3028703": 1, "s1a_iw_grdh_1sdv_20210720t120547_20210720t120612_038861_0495ec": [1, 10], "s1a_iw_grdh_1sdv_20210720t120547_20210720t120612_038861_0495ec_d05a": 1, "1849476617": 1, "364673a424eff2e7a337d7b810ce5116": 1, "1858328480": 1, "f1bb06901c94a5fb1a3c659115a7ea81": 1, "68192128": 1, "s1a_iw_grdh_1sdv_20210716t000313_20210716t000338_038795_0493db_rtc": [1, 10], "16t00": [1, 5, 6, 7, 10, 12], "093195z": 1, "592472": [1, 10], "299995": [1, 10], "593918": [1, 10], "38795": [1, 10], "8040142": 1, "0229333": 1, "7768347": 1, "9950972": 1, "3047751": 1, "3286598": 1, "558532": 1, "8400244": 1, "0260265": 1, "2909957": 1, "9731371": 1, "1918535": 1, "997677": 1, "1482013": 1, "9284301": 1, "8234223": 1, "921606": 1, "6325032": 1, "9024392": 1, "4314618": 1, "8290871": 1, "2745495": 1, "s1a_iw_grdh_1sdv_20210716t000313_20210716t000338_038795_0493db": [1, 10], "s1a_iw_grdh_1sdv_20210716t000313_20210716t000338_038795_0493db_d5af": 1, "1840030943": 1, "bf1988ead80831e90bd12747b6e20ab": 1, "1848342594": 1, "a1f42a31e13b40abc547d541ecc99106": 1, "30477513": 1, "84002436": 1, "s1a_iw_grdh_1sdv_20210713t121354_20210713t121419_038759_0492d4_rtc": [1, 10], "266919z": 1, "766644": [1, 10], "299732": [1, 10], "767193": [1, 10], "38759": [1, 10], "9225387": 1, "3275894": 1, "3188747": 1, "2314562": 1, "3279969": 1, "3770291": 1, "2711753": 1, "6976708": 1, "2165988": 1, "75623": 1, "2347879": 1, "7816079": 1, "2101115": 1, "7833647": 1, "s1a_iw_grdh_1sdv_20210713t121354_20210713t121419_038759_0492d4": [1, 10], "s1a_iw_grdh_1sdv_20210713t121354_20210713t121419_038759_0492d4_f4f6": 1, "1865746386": 1, "b45ffe469526a80df7f15f3cf06d3920": 1, "1875309435": 1, "98702060e657dff744c1f739527efc93": 1, "s1a_iw_grdh_1sdv_20210708t120547_20210708t120612_038686_0490ad_rtc": [1, 10], "613554z": 1, "618280": 1, "112559": [1, 10], "299181": [1, 10], "114550": [1, 10], "38686": [1, 10], "9800153": 1, "0120985": 1, "9941408": 1, "1728225": 1, "7254645": 1, "6818087": 1, "2186013": 1, "2798445": 1, "3565932": 1, "7232721": 1, "330769": 1, "5843365": 1, "3775063": 1, "5223208": 1, "3592076": 1, "4090374": 1, "4013847": 1, "3368588": 1, "3799309": 1, "3021393": 1, "4168093": 1, "2062684": 1, "4052516": 1, "0894876": 1, "4762379": 1, "7596838": 1, "s1a_iw_grdh_1sdv_20210708t120547_20210708t120612_038686_0490ad": [1, 10], "s1a_iw_grdh_1sdv_20210708t120547_20210708t120612_038686_0490ad_1560": 1, "1850256435": 1, "c4f837a30c3504e963a3b47dabd6c752": 1, "1858557537": 1, "feae8308c196144a7f077b63baef7aa7": 1, "21860134": 1, "75968381": 1, "99414079": 1, "s1a_iw_grdh_1sdv_20210704t000312_20210704t000337_038620_048e99_rtc": [1, 10], "04t00": [1, 5, 6, 7, 10, 12], "347747z": 1, "847082": [1, 10], "298649": [1, 10], "848412": [1, 10], "38620": [1, 10], "7772374": 1, "9950893": 1, "7848705": 1, "9226246": 1, "4259974": 1, "1942574": 1, "5585325": 1, "8401146": 1, "9877183": 1, "0018389": 1, "9293622": 1, "8241242": 1, "9526182": 1, "6783937": 1, "9219193": 1, "6328574": 1, "9032405": 1, "4311745": 1, "s1a_iw_grdh_1sdv_20210704t000312_20210704t000337_038620_048e99": [1, 10], "s1a_iw_grdh_1sdv_20210704t000312_20210704t000337_038620_048e99_43e6": 1, "1838209077": 1, "0036e0eeaf5c838c0043755597fd76ab": 1, "1846834581": 1, "22349dd14a66ce75eeeb22dbe3435e40": 1, "92262457": 1, "84011462": 1, "s1a_iw_grdh_1sdv_20210701t121354_20210701t121419_038584_048d87_rtc": [1, 10], "572473z": 1, "071405": [1, 10], "298375": [1, 10], "073541": [1, 10], "38584": [1, 10], "2061166": 1, "8442293": 1, "9224392": 1, "327681": 1, "4993774": 1, "3665963": 1, "3188725": 1, "2318173": 1, "2778762": 1, "4645274": 1, "2102136": 1, "783275": 1, "s1a_iw_grdh_1sdv_20210701t121354_20210701t121419_038584_048d87": [1, 10], "s1a_iw_grdh_1sdv_20210701t121354_20210701t121419_038584_048d87_1ebb": 1, "1866677367": 1, "889320f3af4af71ae729f904fa35c22f": 1, "1876314082": 1, "f3978d8c1ecb65af00647b43a46a0b98": 1, "20611657": 1, "s1a_iw_grdh_1sdv_20210626t120546_20210626t120611_038511_048b6c_rtc": [1, 10], "982444z": 1, "28420": 1, "618310": 1, "482149": [1, 10], "297836": [1, 10], "482738": [1, 10], "38511": [1, 10], "9811274": 1, "0122553": 1, "9943422": 1, "1728168": 1, "7256752": 1, "6819832": 1, "2189082": 1, "279932": 1, "3568964": 1, "7231789": 1, "3309749": 1, "5846053": 1, "377711": 1, "5224993": 1, "3595099": 1, "4089442": 1, "4017855": 1, "336584": 1, "380033": 1, "3022285": 1, "4172097": 1, "2059935": 1, "4055552": 1, "0895748": 1, "4765395": 1, "7596807": 1, "s1a_iw_grdh_1sdv_20210626t120546_20210626t120611_038511_048b6c": [1, 10], "s1a_iw_grdh_1sdv_20210626t120546_20210626t120611_038511_048b6c_65b9": 1, "1851311121": 1, "b82d6c860dc5ac8ea843f1a97cb6441a": 1, "1859184765": 1, "81bfca5f8afc9c06f11b3e4517b230bb": 1, "21890821": 1, "75968067": 1, "99434219": 1, "68198321": 1, "s1a_iw_grdh_1sdv_20210622t000312_20210622t000337_038445_04895a_rtc": [1, 10], "22t00": [1, 5, 6, 7, 10, 12], "594621z": 1, "799760": 1, "093898": [1, 10], "297306": [1, 10], "095344": [1, 10], "38445": [1, 10], "804764": 1, "0652323": 1, "7842669": 1, "9226365": 1, "304573": 1, "3286602": 1, "4255881": 1, "1938073": 1, "557815": 1, "8401176": 1, "0494397": 1, "4416004": 1, "0258279": 1, "2911805": 1, "9729311": 1, "1917677": 1, "9973744": 1, "1482981": 1, "9872403": 1, "0029317": 1, "9281259": 1, "8234288": 1, "9521118": 1, "6784045": 1, "9212975": 1, "6323293": 1, "9015415": 1, "4319316": 1, "s1a_iw_grdh_1sdv_20210622t000312_20210622t000337_038445_04895a": [1, 10], "s1a_iw_grdh_1sdv_20210622t000312_20210622t000337_038445_04895a_5da4": 1, "1840705741": 1, "2b125f8aa43c4904d69da9562a4474": 1, "1848037975": 1, "bf12dbd35a278927b8e1a0fa88e6cf08": 1, "30457296": 1, "92263649": 1, "04943968": 1, "84011759": 1, "s1a_iw_grdh_1sdv_20210619t121353_20210619t121418_038409_04884c_rtc": [1, 10], "19t12": [1, 5, 6, 7, 10, 12], "865662z": 1, "365410": [1, 10], "297036": [1, 10], "365914": [1, 10], "38409": [1, 10], "2104664": 1, "881626": 1, "7374365": 1, "2894367": 1, "4986766": 1, "3664133": 1, "3181661": 1, "2317236": 1, "326585": 1, "3763903": 1, "2770684": 1, "4642523": 1, "2703657": 1, "6973958": 1, "2158885": 1, "756226": 1, "2343832": 1, "7814251": 1, "2096112": 1, "7823689": 1, "s1a_iw_grdh_1sdv_20210619t121353_20210619t121418_038409_04884c": [1, 10], "s1a_iw_grdh_1sdv_20210619t121353_20210619t121418_038409_04884c_9cd": 1, "1862410918": 1, "c5103e6b371b903e1ed9ceb79fea3128": 1, "1872031535": 1, "6aec364b490644e199334a7a156cc0b0": 1, "36641327": 1, "28943666": 1, "s1a_iw_grdh_1sdv_20210614t120545_20210614t120610_038336_04862f_rtc": [1, 10], "373830z": 1, "872859": [1, 10], "296495": [1, 10], "874802": [1, 10], "38336": [1, 10], "9816378": 1, "0125152": 1, "s1a_iw_grdh_1sdv_20210614t120545_20210614t120610_038336_04862f": [1, 10], "s1a_iw_grdh_1sdv_20210614t120545_20210614t120610_038336_04862f_72a7": 1, "1849869905": 1, "9096824f8bccbf42172788b36d2ddd87": 1, "1858333551": 1, "9d9c0437a9e671247144be198054a379": 1, "s1a_iw_grdh_1sdv_20210610t000311_20210610t000336_038270_04841e_rtc": [1, 10], "10t00": [1, 5, 6, 7, 10, 12], "870450z": 1, "369821": [1, 10], "295966": [1, 10], "371078": [1, 10], "38270": [1, 10], "8042156": 1, "0229293": 1, "4258955": 1, "1942577": 1, "0262378": 1, "2912616": 1, "9875152": 1, "0018433": 1, "9525194": 1, "678486": 1, "s1a_iw_grdh_1sdv_20210610t000311_20210610t000336_038270_04841": [1, 10], "s1a_iw_grdh_1sdv_20210610t000311_20210610t000336_038270_04841e_3fa6": 1, "1840290420": 1, "e5730aa51e4b026514360c13ee17a584": 1, "1847644659": 1, "41689411ff4fb41e2006846f825dccaa": 1, "s1a_iw_grdh_1sdv_20210607t121352_20210607t121417_038234_048318_rtc": [1, 10], "07t12": [1, 5, 6, 7, 10, 12], "058343z": 1, "557268": [1, 10], "295704": [1, 10], "559418": [1, 10], "38234": [1, 10], "2112784": 1, "8817209": 1, "7383553": 1, "2895152": 1, "9847709": 1, "7769861": 1, "2779768": 1, "4646182": 1, "s1a_iw_grdh_1sdv_20210607t121352_20210607t121417_038234_048318": [1, 10], "s1a_iw_grdh_1sdv_20210607t121352_20210607t121417_038234_048318_0fb2": 1, "1864517000": 1, "655c7919cd5d3f53cbabef16d08de6a": 1, "1872823263": 1, "dbbfd6dac633e82eabdbac5ac9a68551": 1, "98477091": 1, "28951521": 1, "s1a_iw_grdh_1sdv_20210602t120544_20210602t120609_038161_0480fd_rtc": [1, 10], "441074z": 1, "940813": [1, 10], "295165": [1, 10], "941334": [1, 10], "38161": [1, 10], "9803197": 1, "0121822": 1, "7251613": 1, "6819072": 1, "3797288": 1, "3021413": 1, "s1a_iw_grdh_1sdv_20210602t120544_20210602t120609_038161_0480fd": [1, 10], "s1a_iw_grdh_1sdv_20210602t120544_20210602t120609_038161_0480fd_ca56": 1, "1850358920": 1, "684c4f0b5633fecffbd859ab4f3da347": 1, "1858726594": 1, "f388e4486f437a599c3b899042a3d9f6": 1, "68190721": 1, "s1a_iw_grdh_1sdv_20210529t000310_20210529t000335_038095_047ef4_rtc": 1, "152330z": 1, "651693": 1, "294644": 1, "652966": 1, "38095": 1, "7773358": 1, "9949971": 1, "3049793": 1, "3293816": 1, "4259967": 1, "1940769": 1, "55884": 1, "8401133": 1, "0498502": 1, "4416814": 1, "0264415": 1, "2912571": 1, "s1a_iw_grdh_1sdv_20210529t000310_20210529t000335_038095_047ef4": 1, "s1a_iw_grdh_1sdv_20210529t000310_20210529t000335_038095_047ef4_e47a": 1, "1839290925": 1, "6bc0534ddea95367b8af5fdf5c4ef645": 1, "1847418243": 1, "77f4f9d73931649b14b98fb252d493d8": 1, "30497928": 1, "04985019": 1, "84011335": 1, "s1a_iw_grdh_1sdv_20210526t121351_20210526t121416_038059_047de5_rtc": 1, "351880z": 1, "850793": 1, "294373": 1, "852966": 1, "38059": 1, "2113806": 1, "8816312": 1, "7387616": 1, "2894198": 1, "3191733": 1, "2321799": 1, "s1a_iw_grdh_1sdv_20210526t121351_20210526t121416_038059_047de5": 1, "s1a_iw_grdh_1sdv_20210526t121351_20210526t121416_038059_047de5_c35a": 1, "1865840728": 1, "3f305484c85e14b4b1a588894ed3287b": 1, "1873608727": 1, "e4b745f3050b8e44678298b8bb3f0246": 1, "28941979": 1, "s1a_iw_grdh_1sdv_20210521t120544_20210521t120609_037986_047bbd_rtc": 1, "706900z": 1, "206611": 1, "293821": 1, "207189": 1, "37986": 1, "9804227": 1, "0122703": 1, "7248549": 1, "6819157": 1, "3302615": 1, "5842511": 1, "3768978": 1, "5222365": 1, "3585997": 1, "4089531": 1, "4008748": 1, "3365029": 1, "4046476": 1, "0895839": 1, "4756334": 1, "7595998": 1, "s1a_iw_grdh_1sdv_20210521t120544_20210521t120609_037986_047bbd": 1, "s1a_iw_grdh_1sdv_20210521t120544_20210521t120609_037986_047bbd_1faa": 1, "1850823804": 1, "e4993f9c2d458bda8f08cfce9719aaa7": 1, "1859433373": 1, "8c550008f76e2752130d375329355c92": 1, "75959983": 1, "68191566": 1, "s1a_iw_grdh_1sdv_20210517t000309_20210517t000334_037920_0479a9_rtc": 1, "364326z": 1, "863631": 1, "293289": 1, "865021": 1, "37920": 1, "7776356": 1, "994901": 1, "4262001": 1, "193986": 1, "5589426": 1, "8401129": 1, "0499522": 1, "4416791": 1, "0266427": 1, "2911624": 1, "9980864": 1, "1482825": 1, "9713891": 1, "0843691": 1, "9451944": 1, "9517005": 1, "9221241": 1, "6329433": 1, "9035389": 1, "4309878": 1, "8293875": 1, "2744532": 1, "s1a_iw_grdh_1sdv_20210517t000309_20210517t000334_037920_0479a9": 1, "s1a_iw_grdh_1sdv_20210517t000309_20210517t000334_037920_0479a9_4c29": 1, "1840322242": 1, "9d102c47c57bc910df0dd66904b80e33": 1, "1848463651": 1, "3aa211782bf91d37da271cea616011d1": 1, "04995217": 1, "84011292": 1, "s1a_iw_grdh_1sdv_20210514t121351_20210514t121416_037884_047898_rtc": 1, "650190z": 1, "703360": 1, "149895": 1, "293016": 1, "150485": 1, "37884": 1, "7385577": 1, "2894224": 1, "9226475": 1, "3280392": 1, "4996789": 1, "3664168": 1, "3725316": 1, "0818408": 1, "3190734": 1, "2319988": 1, "2169032": 1, "7562317": 1, "s1a_iw_grdh_1sdv_20210514t121351_20210514t121416_037884_047898": 1, "s1a_iw_grdh_1sdv_20210514t121351_20210514t121416_037884_047898_b8a6": 1, "1865477089": 1, "922e8032cee53ac2b3903689eed8e83d": 1, "1873094701": 1, "9d761e8204075590a645512ce943cf28": 1, "36641677": 1, "28942239": 1, "s1a_iw_grdh_1sdv_20210509t120543_20210509t120608_037811_047676_rtc": 1, "202200z": 1, "618230": 1, "701918": 1, "292470": 1, "702482": 1, "37811": 1, "724957": 1, "6819128": 1, "3302626": 1, "5843413": 1, "3768989": 1, "5223268": 1, "3586986": 1, "4087716": 1, "4008759": 1, "3365932": 1, "s1a_iw_grdh_1sdv_20210509t120543_20210509t120608_037811_047676": 1, "s1a_iw_grdh_1sdv_20210509t120543_20210509t120608_037811_047676_f363": 1, "1849317170": 1, "7172af952b211c9854795fe50e8f2919": 1, "1858320559": 1, "de17fb6a802adf48070ef359bd1ea9e4": 1, "68191284": 1, "s1a_iw_grdh_1sdv_20210505t000309_20210505t000334_037745_047463_rtc": 1, "746142z": 1, "245439": 1, "291939": 1, "246846": 1, "37745": 1, "8048197": 1, "0229173": 1, "7848727": 1, "9227148": 1, "3053844": 1, "3296515": 1, "4263031": 1, "1942565": 1, "5590451": 1, "8401125": 1, "0500541": 1, "4416768": 1, "0267445": 1, "2911601": 1, "9981881": 1, "1482803": 1, "9529244": 1, "6784774": 1, "9232779": 1, "6382414": 1, "9029558": 1, "428023": 1, "s1a_iw_grdh_1sdv_20210505t000309_20210505t000334_037745_047463": 1, "s1a_iw_grdh_1sdv_20210505t000309_20210505t000334_037745_047463_35e": 1, "1840475079": 1, "c4b168138e0ff50234c9af93ff9f2960": 1, "1847690067": 1, "77ca1e771e902bc345f9e459b9fb1e4": 1, "30538436": 1, "92271475": 1, "05005415": 1, "s1a_iw_grdh_1sdv_20210502t121350_20210502t121415_037709_047321_rtc": 1, "953073z": 1, "28243": 1, "421000": 1, "703430": 1, "452022": 1, "291617": 1, "454124": 1, "37709": 1, "8653362": 1, "5975248": 1, "5002799": 1, "3665092": 1, "3733379": 1, "0819347": 1, "3196777": 1, "2322726": 1, "343525": 1, "2817691": 1, "3150629": 1, "309619": 1, "3292099": 1, "3771252": 1, "272391": 1, "6978578": 1, "2176147": 1, "7560552": 1, "2353962": 1, "7817015": 1, "2109163": 1, "7843623": 1, "2047796": 1, "8465235": 1, "7393732": 1, "289412": 1, "9232584": 1, "3283015": 1, "9856741": 1, "7768832": 1, "s1a_iw_grdh_1sdv_20210502t121350_20210502t121415_037709_047321": 1, "s1a_iw_grdh_1sdv_20210502t121350_20210502t121415_037709_047321_709": 1, "1868137657": 1, "9e0dc37e6fb1a0e9a6f3a0f1431e2a84": 1, "1876026692": 1, "6e7829665ab124a839cbe472642423af": 1, "20477962": 1, "36650916": 1, "98567413": 1, "s1a_iw_grdh_1sdv_20210427t120543_20210427t120608_037636_0470a6_rtc": 1, "506409z": 1, "006150": 1, "290982": 1, "006668": 1, "37636": 1, "9808206": 1, "0120814": 1, "9944397": 1, "1727239": 1, "7257709": 1, "6818003": 1, "2189072": 1, "2798418": 1, "3309738": 1, "584515": 1, "401689": 1, "3369461": 1, "3801318": 1, "302047": 1, "4171099": 1, "2060848": 1, "4765383": 1, "7595904": 1, "s1a_iw_grdh_1sdv_20210427t120543_20210427t120608_037636_0470a6": 1, "s1a_iw_grdh_1sdv_20210427t120543_20210427t120608_037636_0470a6_d059": 1, "1851511153": 1, "4282a2b9eca1c33c3fb745616cb50124": 1, "1860083984": 1, "72b3fa91c78dab08fc8984d56fba5f88": 1, "21890718": 1, "75959041": 1, "99443967": 1, "68180025": 1, "s1a_iw_grdh_1sdv_20210423t000308_20210423t000333_037570_046e48_rtc": 1, "367239z": 1, "866560": 1, "290376": 1, "867917": 1, "37570": 1, "7772396": 1, "9951795": 1, "5586355": 1, "8402045": 1, "0263371": 1, "2911692": 1, "9876143": 1, "0017509": 1, "9443479": 1, "9504558": 1, "9292584": 1, "8240362": 1, "9526231": 1, "678574": 1, "9218108": 1, "6325891": 1, "9032429": 1, "4312647": 1, "8291811": 1, "2742769": 1, "s1a_iw_grdh_1sdv_20210423t000308_20210423t000333_037570_046e48": 1, "s1a_iw_grdh_1sdv_20210423t000308_20210423t000333_037570_046e48_dd3c": 1, "1840542859": 1, "e27803afbe0278b95912952b8fe6b3d6": 1, "1847647099": 1, "94c9d7c30511b961ce76d64a31e044b9": 1, "84020446": 1, "s1a_iw_grdh_1sdv_20210420t121350_20210420t121415_037534_046d0c_rtc": 1, "616767z": 1, "421820": 1, "703310": 1, "115720": 1, "290060": 1, "117814": 1, "37534": 1, "2060163": 1, "8440482": 1, "2106702": 1, "8815369": 1, "7378442": 1, "2894315": 1, "9223382": 1, "3276824": 1, "9844677": 1, "7769001": 1, "4990771": 1, "366505": 1, "3553339": 1, "1612103": 1, "3186738": 1, "2312747": 1, "3269813": 1, "3777464": 1, "2775732": 1, "4644355": 1, "2708722": 1, "6974887": 1, "2162937": 1, "7563186": 1, "2346883": 1, "7813365": 1, "2100132": 1, "7829128": 1, "s1a_iw_grdh_1sdv_20210420t121350_20210420t121415_037534_046d0c": 1, "s1a_iw_grdh_1sdv_20210420t121350_20210420t121415_037534_046d0c_b82c": 1, "1868997106": 1, "398187d8fe3aa734bafbac5aa5630469": 1, "1876932801": 1, "70a47b71902d03cf4a35bf9b56d9ee5b": 1, "20601633": 1, "36650496": 1, "98446774": 1, "28943147": 1, "s1a_iw_grdh_1sdv_20210415t120542_20210415t120607_037461_046a8e_rtc": 1, "061444z": 1, "561187": 1, "289422": 1, "561702": 1, "37461": 1, "9799146": 1, "0121006": 1, "3301613": 1, "5843423": 1, "3767965": 1, "5222375": 1, "3584997": 1, "4090443": 1, "400776": 1, "3366844": 1, "3794302": 1, "3025053": 1, "4163057": 1, "2063637": 1, "4045468": 1, "0895849": 1, "4756323": 1, "7595096": 1, "s1a_iw_grdh_1sdv_20210415t120542_20210415t120607_037461_046a8": 1, "s1a_iw_grdh_1sdv_20210415t120542_20210415t120607_037461_046a8e_e06b": 1, "1850136497": 1, "6257df5d19406c9e1f8ef686eae1368b": 1, "1858586252": 1, "492d5f1c8eb59734de956f1f9bc19793": 1, "75950957": 1, "s1a_iw_grdh_1sdv_20210411t000308_20210411t000333_037395_046837_rtc": 1, "827103z": 1, "524370": 1, "326434": 1, "288823": 1, "327771": 1, "37395": 1, "8049677": 1, "0653184": 1, "3045735": 1, "3288408": 1, "4255891": 1, "1940781": 1, "557918": 1, "8402074": 1, "9872354": 1, "0027514": 1, "9522155": 1, "6784925": 1, "9212927": 1, "632149": 1, "901746": 1, "4320176": 1, "s1a_iw_grdh_1sdv_20210411t000308_20210411t000333_037395_046837": 1, "s1a_iw_grdh_1sdv_20210411t000308_20210411t000333_037395_046837_115a": 1, "1841631842": 1, "f36c9e342038576cbfd52f4304874713": 1, "1848475394": 1, "c0e7935406caf34e7d4c2fb0d5e630c2": 1, "30457345": 1, "84020742": 1, "s1a_iw_grdh_1sdv_20210408t121349_20210408t121414_037359_0466fa_rtc": 1, "083742z": 1, "582680": 1, "288506": 1, "584804": 1, "37359": 1, "2108727": 1, "8816283": 1, "9222372": 1, "3276838": 1, "9842667": 1, "776903": 1, "4989769": 1, "3665046": 1, "2100152": 1, "782642": 1, "s1a_iw_grdh_1sdv_20210408t121349_20210408t121414_037359_0466fa": 1, "s1a_iw_grdh_1sdv_20210408t121349_20210408t121414_037359_0466fa_0943": 1, "1868324949": 1, "b24d81cbe89019caff86ec89392506f7": 1, "1876432960": 1, "18aca2eec884dd83e5e8b096deaafe8c": 1, "36650461": 1, "98426667": 1, "s1a_iw_grdh_1sdv_20210403t120542_20210403t120607_037286_046480_rtc": 1, "597722z": 1, "902440": 1, "096815": 1, "287872": 1, "098629": 1, "37286": 1, "9821388": 1, "0124143": 1, "9936341": 1, "1727468": 1, "7247463": 1, "6817383": 1, "2175788": 1, "2795829": 1, "3549694": 1, "7231978": 1, "3298552": 1, "5841647": 1, "3763871": 1, "5218805": 1, "357994": 1, "4090492": 1, "4003683": 1, "3364177": 1, "3791304": 1, "302779": 1, "4160098": 1, "2069083": 1, "4042409": 1, "0893171": 1, "4753295": 1, "7594225": 1, "s1a_iw_grdh_1sdv_20210403t120542_20210403t120607_037286_046480": 1, "s1a_iw_grdh_1sdv_20210403t120542_20210403t120607_037286_046480_b51": 1, "1850690130": 1, "482cf4e210876f5ff7addfc9b9a77cbd": 1, "1859134985": 1, "7e2e880bc52fc3249d37c051cbb58ecd": 1, "21757878": 1, "75942245": 1, "99363408": 1, "68173833": 1, "s1a_iw_grdh_1sdv_20210330t000307_20210330t000332_037220_046230_rtc": 1, "340535z": 1, "524440": 1, "839794": 1, "287280": 1, "841277": 1, "37220": 1, "9064251": 1, "4485192": 1, "9871388": 1, "0029339": 1, "9972727": 1, "1483004": 1, "9728294": 1, "1917699": 1, "0257312": 1, "291363": 1, "0493403": 1, "4416928": 1, "5581225": 1, "8401163": 1, "4255898": 1, "1942587": 1, "7845687": 1, "9226305": 1, "s1a_iw_grdh_1sdv_20210330t000307_20210330t000332_037220_046230": 1, "s1a_iw_grdh_1sdv_20210330t000307_20210330t000332_037220_046230_0349": 1, "1840256361": 1, "64f05846135b33746c2671786bf69cb8": 1, "1846854044": 1, "91e8c2854f998792d0554fade346bad4": 1, "92263053": 1, "04934029": 1, "84011632": 1, "s1a_iw_grdh_1sdv_20210327t121349_20210327t121414_037184_0460f2_rtc": 1, "688939z": 1, "28239": 1, "187996": 1, "286962": 1, "189882": 1, "37184": 1, "8607112": 1, "5968306": 1, "4989777": 1, "366324": 1, "2037621": 1, "8467884": 1, "210874": 1, "8814478": 1, "7378413": 1, "289251": 1, "9845651": 1, "7767183": 1, "s1a_iw_grdh_1sdv_20210327t121349_20210327t121414_037184_0460f2": 1, "s1a_iw_grdh_1sdv_20210327t121349_20210327t121414_037184_0460f2_dca6": 1, "1868773937": 1, "a144b440fc73caed629b81a85048acc1": 1, "1876794561": 1, "8d9ea8dccc9c50949b6cb96ec1d11262": 1, "20376212": 1, "36632403": 1, "98456513": 1, "28925102": 1, "s1a_iw_grdh_1sdv_20210322t120541_20210322t120606_037111_045e7a_rtc": 1, "345504z": 1, "845375": 1, "286330": 1, "845632": 1, "37111": 1, "9935334": 1, "1727497": 1, "217274": 1, "2796758": 1, "3545626": 1, "7231115": 1, "3790261": 1, "3025093": 1, "s1a_iw_grdh_1sdv_20210322t120541_20210322t120606_037111_045e7a": 1, "s1a_iw_grdh_1sdv_20210322t120541_20210322t120606_037111_045e7a_6e29": 1, "1852849134": 1, "ca05a1fb3fed07389840431dba51b3a6": 1, "1861208127": 1, "175e4ab087a06d83d97c22186fb340b": 1, "21727397": 1, "99353338": 1, "s1a_iw_grdh_1sdv_20210318t000307_20210318t000332_037045_045c26_rtc": 1, "961567z": 1, "460896": 1, "285734": 1, "462239": 1, "37045": 1, "8055133": 1, "0224523": 1, "7848771": 1, "9228951": 1, "4266091": 1, "1943458": 1, "986175": 1, "1884123": 1, "9885135": 1, "0011901": 1, "9036702": 1, "4282787": 1, "8300045": 1, "2748918": 1, "s1a_iw_grdh_1sdv_20210318t000307_20210318t000332_037045_045c26": 1, "s1a_iw_grdh_1sdv_20210318t000307_20210318t000332_037045_045c26_f988": 1, "1841803775": 1, "27f45b7d4cbf705675e5c969361d4d3c": 1, "1848608152": 1, "e3f20b300ed714a30f9957b92c92d24f": 1, "92289511": 1, "s1a_iw_grdh_1sdv_20210315t121348_20210315t121413_037009_045ae4_rtc": 1, "353874z": 1, "852977": 1, "285412": 1, "854771": 1, "37009": 1, "3185734": 1, "2311839": 1, "2773702": 1, "4645247": 1, "2100159": 1, "7825517": 1, "2037628": 1, "8466981": 1, "7380451": 1, "2892484": 1, "s1a_iw_grdh_1sdv_20210315t121348_20210315t121413_037009_045ae4": 1, "s1a_iw_grdh_1sdv_20210315t121348_20210315t121413_037009_045ae4_6925": 1, "1870790475": 1, "6c24f0674a983da87ea443e40eb3134d": 1, "1878757013": 1, "e8ec5d8b2b6ba85282a67b0df2c2a499": 1, "20376278": 1, "28924842": 1, "s1a_iw_grdh_1sdv_20210310t120541_20210310t120606_036936_045868_rtc": 1, "192429z": 1, "691590": 1, "284776": 1, "693267": 1, "36936": 1, "9936309": 1, "1726568": 1, "7247432": 1, "6816483": 1, "2174768": 1, "2795838": 1, "3546652": 1, "7232007": 1, "3761846": 1, "5218825": 1, "4001651": 1, "3363295": 1, "4159088": 1, "2069094": 1, "4040381": 1, "0892289": 1, "4751272": 1, "7593343": 1, "s1a_iw_grdh_1sdv_20210310t120541_20210310t120606_036936_045868": 1, "s1a_iw_grdh_1sdv_20210310t120541_20210310t120606_036936_045868_0f4a": 1, "1852351421": 1, "382f8c13e2f1a9e85ef07ab3cc1489bf": 1, "1859984464": 1, "c699f8e898fe81d8db8e2133e216d5c8": 1, "21747684": 1, "75933429": 1, "99363087": 1, "68164825": 1, "s1a_iw_grdh_1sdv_20210306t000307_20210306t000332_036870_045604_rtc": 1, "005012z": 1, "524530": 1, "799850": 1, "504373": 1, "284164": 1, "505651": 1, "36870": 1, "8058131": 1, "0223561": 1, "778629": 1, "99434": 1, "7852795": 1, "9228872": 1, "4267113": 1, "1944357": 1, "5597636": 1, "84029": 1, "0502659": 1, "4419427": 1, "9717932": 1, "0842701": 1, "9887091": 1, "0009153": 1, "9321204": 1, "8512182": 1, "9534284": 1, "6783764": 1, "9236925": 1, "6385935": 1, "9038676": 1, "4280942": 1, "8305113": 1, "2749718": 1, "s1a_iw_grdh_1sdv_20210306t000307_20210306t000332_036870_045604": 1, "s1a_iw_grdh_1sdv_20210306t000307_20210306t000332_036870_045604_ddc6": 1, "1842361718": 1, "5b69b97f00dd999d12b225b1ad192ed": 1, "1848755445": 1, "fa4a06dbfa636e09222588b57ef5b640": 1, "92288717": 1, "05026587": 1, "84029004": 1, "s1a_iw_grdh_1sdv_20210303t121348_20210303t121413_036834_0454c9_rtc": 1, "245451z": 1, "2916190": 1, "745322": 1, "283849": 1, "745579": 1, "36834": 1, "8646325": 1, "5974388": 1, "4988778": 1, "3662334": 1, "3551326": 1, "1611191": 1, "3183697": 1, "2314537": 1, "3265768": 1, "3777444": 1, "2106708": 1, "8814466": 1, "7378427": 1, "2893412": 1, "9223398": 1, "3277726": 1, "s1a_iw_grdh_1sdv_20210303t121348_20210303t121413_036834_0454c9": 1, "s1a_iw_grdh_1sdv_20210303t121348_20210303t121413_036834_0454c9_6015": 1, "1870390775": 1, "62d575a4e47d1064e8448c8ad45770e7": 1, "1878114076": 1, "34b5b3c45c08b3ea9d65131fe9e801da": 1, "36623339": 1, "28934124": 1, "s1a_iw_grdh_1sdv_20210226t120541_20210226t120606_036761_04524c_rtc": 1, "153373z": 1, "652546": 1, "283212": 1, "654199": 1, "36761": 1, "9935302": 1, "1726596": 1, "724641": 1, "6816511": 1, "2173749": 1, "2795847": 1, "400064": 1, "3363305": 1, "4159065": 1, "2067289": 1, "4039373": 1, "0892299": 1, "4750278": 1, "7594256": 1, "s1a_iw_grdh_1sdv_20210226t120541_20210226t120606_036761_04524c": 1, "s1a_iw_grdh_1sdv_20210226t120541_20210226t120606_036761_04524c_a4f4": 1, "1851793184": 1, "ba24fdbde57b356885fd4124a7dc101f": 1, "1859249694": 1, "5303891de377e4d13ae529bfa4b08174": 1, "21737489": 1, "75942559": 1, "99353017": 1, "68165107": 1, "s1a_iw_grdh_1sdv_20210222t000307_20210222t000332_036695_044ff8_rtc": 1, "101142z": 1, "600569": 1, "282616": 1, "601714": 1, "36695": 1, "7851789": 1, "9228892": 1, "3056881": 1, "3298314": 1, "4265075": 1, "1944364": 1, "5596611": 1, "8402905": 1, "0501639": 1, "441945": 1, "9861725": 1, "1883222": 1, "988511": 1, "0011": 1, "s1a_iw_grdh_1sdv_20210222t000307_20210222t000332_036695_044ff8": 1, "s1a_iw_grdh_1sdv_20210222t000307_20210222t000332_036695_044ff8_44fa": 1, "1841809107": 1, "6becf06aa23c3060b501c5bd02f05444": 1, "1847744667": 1, "7e67d8c1145027fea562d551f72a2aa8": 1, "30568811": 1, "92288915": 1, "05016389": 1, "84029046": 1, "s1a_iw_grdh_1sdv_20210219t121348_20210219t121413_036659_044ebc_rtc": 1, "373591z": 1, "873464": 1, "282300": 1, "873719": 1, "36659": 1, "864834": 1, "5975279": 1, "4988775": 1, "3663237": 1, "3183708": 1, "2312732": 1, "3264762": 1, "3776537": 1, "2160927": 1, "7560466": 1, "234486": 1, "7812451": 1, "2098148": 1, "7822798": 1, "2036599": 1, "8468781": 1, "9844646": 1, "7767197": 1, "s1a_iw_grdh_1sdv_20210219t121348_20210219t121413_036659_044ebc": 1, "s1a_iw_grdh_1sdv_20210219t121348_20210219t121413_036659_044ebc_98a2": 1, "1872136979": 1, "c1845dd70ec33aeec81c443b2ac3fdaf": 1, "1879319111": 1, "5078477a0bee6c9c57407abee8a21861": 1, "20365991": 1, "36632368": 1, "131": 1, "s1a_iw_grdh_1sdv_20210214t120541_20210214t120606_036586_044c38_rtc": 1, "310324z": 1, "28431": 1, "809495": 1, "281656": 1, "811154": 1, "36586": 1, "7243378": 1, "6817496": 1, "2169681": 1, "2796786": 1, "3540544": 1, "7230262": 1, "3292464": 1, "5840803": 1, "3756796": 1, "5219778": 1, "3996609": 1, "3364248": 1, "4157058": 1, "2068211": 1, "4035373": 1, "0895047": 1, "4746256": 1, "7594298": 1, "s1a_iw_grdh_1sdv_20210214t120541_20210214t120606_036586_044c38": 1, "s1a_iw_grdh_1sdv_20210214t120541_20210214t120606_036586_044c38_ebb8": 1, "1852176053": 1, "20d7dab0fbd254502835ecc5782aa843": 1, "1859100582": 1, "a36a4150b4d55c4d58ebe32242db8417": 1, "21696813": 1, "75942978": 1, "68174958": 1, "132": 1, "s1a_iw_grdh_1sdv_20210210t000307_20210210t000332_036520_0449d9_rtc": 1, "428394z": 1, "524360": 1, "3191700": 1, "927869": 1, "281049": 1, "928920": 1, "36520": 1, "8052744": 1, "0654928": 1, "3044726": 1, "3289313": 1, "4254862": 1, "1938077": 1, "5577139": 1, "8403888": 1, "0495494": 1, "4418685": 1, "9282273": 1, "8234266": 1, "9213939": 1, "6321468": 1, "9021384": 1, "4315583": 1, "8289816": 1, "2743712": 1, "s1a_iw_grdh_1sdv_20210210t000307_20210210t000332_036520_0449d9": 1, "s1a_iw_grdh_1sdv_20210210t000307_20210210t000332_036520_0449d9_45e6": 1, "1841853646": 1, "15c868b1e130b2a515dff3b476ce6f9c": 1, "1847695512": 1, "1db79b216dff9a299c061a6fac824977": 1, "30447261": 1, "04954942": 1, "84038879": 1, "133": [1, 12], "s1a_iw_grdh_1sdv_20210207t121349_20210207t121414_036484_04489d_rtc": 1, "793585z": 1, "293448": 1, "280733": 1, "293723": 1, "36484": 1, "2705674": 1, "6975774": 1, "2344834": 1, "7816062": 1, "s1a_iw_grdh_1sdv_20210207t121349_20210207t121414_036484_04489d": 1, "s1a_iw_grdh_1sdv_20210207t121349_20210207t121414_036484_04489d_60b2": 1, "1872843598": 1, "a449765d7bcfe68879a8fd8f753fb9cc": 1, "1879673984": 1, "58d4b4861bb49acc5e80d076ff195487": 1, "134": 1, "s1a_iw_grdh_1sdv_20210202t120542_20210202t120607_036411_044618_rtc": 1, "664862z": 1, "618100": 1, "164051": 1, "280088": 1, "165674": 1, "36411": 1, "9814365": 1, "0125194": 1, "9930331": 1, "1728541": 1, "7241367": 1, "6818453": 1, "2167642": 1, "2796804": 1, "3537524": 1, "7232097": 1, "3290449": 1, "5841725": 1, "3755761": 1, "5217983": 1, "3570839": 1, "4090581": 1, "3995564": 1, "3361551": 1, "3786297": 1, "303145": 1, "4157012": 1, "2064601": 1, "4033356": 1, "0895067": 1, "4744257": 1, "7595221": 1, "s1a_iw_grdh_1sdv_20210202t120542_20210202t120607_036411_044618": 1, "s1a_iw_grdh_1sdv_20210202t120542_20210202t120607_036411_044618_fa49": 1, "1852343464": 1, "3d9b85b4578c08f70cf65978a3842518": 1, "1859133861": 1, "95efe91ab80e01479ee73b022c81d42c": 1, "21676423": 1, "75952213": 1, "99303309": 1, "68184528": 1, "135": 1, "s1a_iw_grdh_1sdv_20210129t000308_20210129t000333_036345_0443c6_rtc": 1, "796758z": 1, "27543": 1, "524340": 1, "296249": 1, "279494": 1, "297266": 1, "36345": 1, "8051737": 1, "0654948": 1, "7842713": 1, "9228168": 1, "3044738": 1, "3293827": 1, "4254876": 1, "1941687": 1, "5578159": 1, "8402981": 1, "0259298": 1, "2911782": 1, "9729262": 1, "1915874": 1, "9974761": 1, "1482959": 1, "9439344": 1, "950194": 1, "9213987": 1, "6323271": 1, "9018423": 1, "4318351": 1, "8289862": 1, "2745515": 1, "s1a_iw_grdh_1sdv_20210129t000308_20210129t000333_036345_0443c6": 1, "s1a_iw_grdh_1sdv_20210129t000308_20210129t000333_036345_0443c6_e01a": 1, "1841294015": 1, "dd31c2f252d6d235fae3434fd52bf337": 1, "1846880291": 1, "bb053aaa773133336e184201b8078cf2": 1, "30447385": 1, "92281685": 1, "84029811": 1, "136": 1, "s1a_iw_grdh_1sdv_20210126t121349_20210126t121414_036309_04428f_rtc": 1, "170790z": 1, "670649": 1, "279183": 1, "670932": 1, "36309": 1, "8651353": 1, "597526": 1, "3555368": 1, "1610306": 1, "2101128": 1, "7831842": 1, "2040661": 1, "8468804": 1, "9225465": 1, "3280405": 1, "9849673": 1, "7767126": 1, "s1a_iw_grdh_1sdv_20210126t121349_20210126t121414_036309_04428f": 1, "s1a_iw_grdh_1sdv_20210126t121349_20210126t121414_036309_04428f_059d": 1, "1873636693": 1, "f111755410354282ec44a5a476e5164b": 1, "1880219969": 1, "d2503452e8f718f8ad78cc7e327a7e50": 1, "20406612": 1, "98496726": 1, "137": 1, "s1a_iw_grdh_1sdv_20210121t120542_20210121t120607_036236_044009_rtc": 1, "958063z": 1, "457235": 1, "278537": 1, "458891": 1, "36236": 1, "9829489": 1, "0125776": 1, "7251581": 1, "6818171": 1, "2179876": 1, "2796695": 1, "3301646": 1, "5846131": 1, "4757328": 1, "7595085": 1, "s1a_iw_grdh_1sdv_20210121t120542_20210121t120607_036236_044009": 1, "s1a_iw_grdh_1sdv_20210121t120542_20210121t120607_036236_044009_0293": 1, "1853063864": 1, "a3514f28bf368648c33dd64c5ce06a37": 1, "1859593009": 1, "e89fbe72349604cfbee0422d8bd00370": 1, "75950853": 1, "68181714": 1, "138": 1, "s1a_iw_grdh_1sdv_20210117t000308_20210117t000333_036170_043dad_rtc": 1, "123774z": 1, "623271": 1, "277933": 1, "624276": 1, "36170": 1, "8049204": 1, "0229153": 1, "7846759": 1, "9228991": 1, "3051819": 1, "3295617": 1, "4260975": 1, "1938058": 1, "5591485": 1, "8402926": 1, "0500593": 1, "4418571": 1, "0268463": 1, "2911579": 1, "9881221": 1, "0017399": 1, "9530306": 1, "6786555": 1, "9031673": 1, "4283794": 1, "8295985": 1, "2748098": 1, "s1a_iw_grdh_1sdv_20210117t000308_20210117t000333_036170_043dad": 1, "s1a_iw_grdh_1sdv_20210117t000308_20210117t000333_036170_043dad_1e9c": 1, "1841582787": 1, "bd74f0f4a16dfc3b66832b7180c36b3": 1, "1847287214": 1, "75fdd4c00cff66d3063388f668fa5992": 1, "30518194": 1, "92289908": 1, "05005933": 1, "84029259": 1, "139": 1, "s1a_iw_grdh_1sdv_20210114t121350_20210114t121415_036134_043c7e_rtc": 1, "556282z": 1, "056154": 1, "277630": 1, "056410": 1, "36134": 1, "8647336": 1, "5975285": 1, "2707714": 1, "6973979": 1, "2109743": 1, "8816289": 1, "73815": 1, "2894276": 1, "s1a_iw_grdh_1sdv_20210114t121350_20210114t121415_036134_043c7": 1, "s1a_iw_grdh_1sdv_20210114t121350_20210114t121415_036134_043c7e_4e4a": 1, "1873433928": 1, "4c74052dac83dd5a992624cb09c6df0d": 1, "1880196912": 1, "a0f375318ec89a0ea5bba3a6a9c1e5ba": 1, "28942758": 1, "140": 1, "s1a_iw_grdh_1sdv_20210109t120543_20210109t120608_036061_0439ee_rtc": 1, "523867z": 1, "902500": 1, "023063": 1, "276974": 1, "024671": 1, "36061": 1, "4007771": 1, "3367747": 1, "s1a_iw_grdh_1sdv_20210109t120543_20210109t120608_036061_0439e": 1, "s1a_iw_grdh_1sdv_20210109t120543_20210109t120608_036061_0439ee_8c80": 1, "1854512239": 1, "0d4b042a710815abaa9e3dc3d20fe704": 1, "1860784863": 1, "75cc2269109b910806dbb3ac101fb752": 1, "141": [1, 6], "s1a_iw_grdh_1sdv_20210105t000309_20210105t000334_035995_043787_rtc": 1, "634308z": 1, "133805": 1, "276359": 1, "134812": 1, "35995": 1, "805614": 1, "0224503": 1, "7785305": 1, "9944322": 1, "7849777": 1, "9228931": 1, "305586": 1, "3294705": 1, "4265079": 1, "1945266": 1, "5594561": 1, "8402913": 1, "9716916": 1, "0842723": 1, "988506": 1, "0009197": 1, "9456029": 1, "951782": 1, "932019": 1, "8512204": 1, "9533247": 1, "6782884": 1, "9235864": 1, "6384153": 1, "9036655": 1, "4280984": 1, "8299976": 1, "2746213": 1, "s1a_iw_grdh_1sdv_20210105t000309_20210105t000334_035995_043787": 1, "s1a_iw_grdh_1sdv_20210105t000309_20210105t000334_035995_043787_a787": 1, "1840810614": 1, "6561f26dc6f7b814c6c684e04caf7b30": 1, "1846825213": 1, "b8735c3650f43378b765259397be4583": 1, "30558604": 1, "92289313": 1, "84029131": 1, "142": 1, "s1a_iw_grdh_1sdv_20210102t121350_20210102t121415_035959_043653_rtc": 1, "114206z": 1, "613351": 1, "276051": 1, "615060": 1, "35959": 1, "2034598": 1, "8464707": 1, "2103654": 1, "8815351": 1, "7375369": 1, "2893451": 1, "4985764": 1, "3664129": 1, "3548293": 1, "161208": 1, "3180645": 1, "2318134": 1, "3264834": 1, "3764801": 1, "2769677": 1, "4641615": 1, "2702655": 1, "6972147": 1, "2158904": 1, "7559552": 1, "2095103": 1, "782278": 1, "s1a_iw_grdh_1sdv_20210102t121350_20210102t121415_035959_043653": 1, "s1a_iw_grdh_1sdv_20210102t121350_20210102t121415_035959_043653_741c": 1, "1872053692": 1, "a12d3e78f17a3e1cfc3b0b150f087911": 1, "1878845599": 1, "387e82f795d6aa8f99a5e3bbadefaf0f": 1, "20345977": 1, "36641292": 1, "28934514": 1, "To": [1, 5, 6, 7, 10, 13], "make": [1, 3, 4, 5, 6, 7, 11, 12, 13], "easier": [1, 6, 7], "convert": [1, 5, 6, 7], "dictionari": [1, 6, 7], "geodatafram": [1, 7, 12], "within": [1, 4, 5, 6, 7, 11], "each": [1, 4, 5, 6, 7, 10, 13], "present": [1, 5], "its": [1, 4, 6, 7, 10], "scan": 1, "df": 1, "from_featur": 1, "to_dict": 1, "cr": [1, 6, 7, 10, 12], "4326": [1, 5, 6, 7, 10, 12], "head": [1, 12], "20612": 1, "84414": 1, "21011": 1, "78327": 1, "98012": 1, "01219": 1, "99394": 1, "17292": 1, "80442": 1, "02311": 1, "82929": 1, "27473": 1, "20591": 1, "84405": 1, "21002": 1, "98022": 1, "01218": 1, "17283": 1, "row": [1, 5, 12], "column": [1, 12], "dtype": [1, 5, 6, 7, 10, 12], "want": [1, 4, 5, 6, 7, 10, 12], "individu": [1, 6, 7, 11], "accessor": [1, 5, 7], "suppli": [1, 7], "kei": [1, 6, 7], "construct": [1, 2, 10], "singl": [1, 4, 5, 6, 7, 10, 11], "scene": [1, 4, 5, 6, 7, 10, 13], "ie": [1, 4, 7], "element": [1, 5, 6, 7, 10], "k": 1, "v": [1, 6, 13], "add_row": 1, "str": [1, 5, 6, 10], "also": [1, 3, 5, 6, 7, 8, 11, 13], "outsid": 1, "try": [1, 4, 6, 7, 10], "onto": [1, 10], "term": 1, "programmat": 1, "same": [1, 4, 6, 7, 10], "syntax": [1, 7], "fit": [1, 4, 7], "seen": 1, "let": [1, 5, 6, 7, 10, 12], "distribut": [1, 6, 7], "manag": 1, "task": [1, 4, 6], "confusingli": 1, "cluster": [1, 6], "process": [1, 3, 4, 6, 7, 10, 11, 13], "fals": [1, 5, 6, 7, 10, 12], "dashboard_link": 1, "192": 1, "168": 1, "8787": [1, 6], "statu": [1, 6, 12], "dashboard": [1, 6], "instanti": 1, "have": [1, 3, 4, 5, 6, 7, 10, 12], "inspect": [1, 7, 8, 10, 11], "stack": [1, 4, 5, 7, 10], "produc": [1, 4, 7], "lazi": [1, 4, 6], "dataarrai": [1, 4, 5, 6, 7, 10], "integr": [1, 7], "wrapper": 1, "sign": 1, "subscript": [1, 8], "credenti": [1, 13], "allow": [1, 4, 6, 7], "further": [1, 4, 6, 10, 12], "your": [1, 4, 7], "purpos": 1, "accord": [1, 10], "refer": 1, "system": [1, 5, 6, 7, 10, 11, 12], "someth": 1, "than": [1, 5, 6, 7, 10], "which": [1, 4, 5, 6, 7, 8, 10, 11, 13], "argument": [1, 4, 5, 6, 7], "os": [1, 5, 6, 7, 10, 13], "da": [1, 6], "bounds_latlon": 1, "prepar": [1, 3, 9, 11], "408": 1, "userwarn": [1, 7], "infer_datetime_format": 1, "remov": [1, 5], "futur": 1, "A": [1, 3, 10], "strict": 1, "pydata": 1, "pdep": 1, "0004": 1, "consist": [1, 5], "pars": [1, 6], "safe": 1, "to_datetim": [1, 7], "lt": [1, 5, 6, 7, 10, 12], "x27": [1, 5, 6, 7, 10, 12], "01228b676fa509c76ad69808ca72985": 1, "y": [1, 5, 6, 7, 10, 11, 12], "1188": [1, 10], "x": [1, 5, 6, 7, 10, 11, 12], "869": [1, 10], "gt": [1, 5, 6, 7, 10, 12], "fetch_raster_window": [1, 10], "float64": [1, 5, 6, 7, 10, 12], "chunksiz": [1, 5, 6, 7, 10, 12], "1024": [1, 10], "chunktyp": [1, 7, 10], "ndarrai": [1, 5, 6, 7, 10, 12], "datetime64": [1, 5, 6, 7, 10, 12], "ns": [1, 5, 6, 7, 10, 12], "02t1": [1, 10], "u66": [1, 10], "s1a_iw_grdh_1sdv_2021": [1, 10], "u2": [1, 5, 7, 10, 12], "194e": [1, 5, 7, 10, 12], "281e": [1, 5, 7, 10, 12], "102e": [1, 5, 7, 10, 12], "09e": [1, 5, 7, 10, 12], "u3": [1, 5, 7, 10, 12], "u9": [1, 10], "u8": [1, 10], "u41": [1, 10], "data_ti": [1, 10], "u173": [1, 10], "ga": [1, 10], "int64": [1, 5, 6, 7, 10, 12], "attribut": [1, 5, 6, 7, 10, 12], "rasterspec": [1, 10], "619420": [1, 6, 7, 10], "3089780": [1, 10], "628110": [1, 10], "n": [1, 5, 6, 7, 10, 12], "3101660": [1, 10], "0xarrai": [1, 7, 10], "143band": 1, "2y": [1, 10], "1188x": [1, 10], "869dask": [1, 10], "meta": [1, 5, 6, 7, 10, 12], "chunk": [1, 4, 5, 10, 12], "byte": [1, 5, 6, 7, 10, 12], "gib": [1, 6, 7, 10], "mib": [1, 5, 6, 7, 10, 12], "graph": [1, 5, 6, 7, 10, 12], "572": 1, "114206": 1, "114206000": 1, "634308000": 1, "523867000": 1, "556282000": 1, "123774000": 1, "958063000": 1, "170790000": 1, "796758000": 1, "664862000": 1, "793585000": 1, "428394000": 1, "310324000": 1, "373591000": 1, "101142000": 1, "153373000": 1, "245451000": 1, "005012000": 1, "192429000": 1, "353874000": 1, "961567000": 1, "345504000": 1, "688939000": 1, "340535000": 1, "597722000": 1, "083742000": 1, "827103000": 1, "061444000": 1, "616767000": 1, "367239000": 1, "506409000": 1, "953073000": 1, "746142000": 1, "202200000": 1, "650190000": 1, "364326000": 1, "706900000": 1, "351880000": 1, "152330000": 1, "441074000": [1, 10], "058343000": [1, 10], "870450000": [1, 10], "373830000": [1, 10], "865662000": [1, 10], "594621000": [1, 10], "982444000": [1, 10], "572473000": [1, 10], "347747000": [1, 10], "613554000": [1, 10], "266919000": [1, 10], "093195000": [1, 10], "428473000": [1, 10], "814919000": [1, 10], "667023000": [1, 10], "150857000": [1, 10], "698596000": [1, 10], "454588000": [1, 10], "713793000": [1, 10], "226637000": [1, 10], "059716000": [1, 10], "421490000": [1, 10], "783019000": 1, "464707000": [1, 10], "971474000": [1, 10], "406593000": [1, 10], "135941000": [1, 10], "415938000": [1, 10], "788780000": [1, 10], "558327000": [1, 10], "760613000": [1, 10], "035095000": 1, "713275000": [1, 10], "850150000": [1, 10], "200359000": [1, 10], "919736000": [1, 10], "954256000": [1, 10], "052769000": [1, 10], "702246000": [1, 10], "645002000": [1, 10], "742983000": [1, 10], "481869000": [1, 10], "560526000": [1, 10], "576899000": [1, 10], "120003000": [1, 10], "035677000": [1, 10], "007158000": [1, 10], "568419000": [1, 10], "513966000": [1, 10], "596874000": [1, 10], "141449000": [1, 10], "793721000": [1, 10], "858303000": [1, 10], "432317000": [1, 10], "280484000": [1, 10], "415805000": [1, 10], "070182000": [1, 10], "877035000": [1, 10], "716165000": [1, 10], "424832000": [1, 10], "352862000": [1, 10], "057390000": [1, 10], "849186000": 1, "019287000": 1, "178103000": [1, 10], "677942000": [1, 10], "939806000": [1, 10], "075742000": [1, 10], "589986000": [1, 10], "677073000": [1, 10], "994606000": [1, 10], "744897000": [1, 10], "706124000": [1, 10], "362180000": [1, 10], "139523000": [1, 10], "140262000": [1, 10], "585924000": [1, 10], "181999000": [1, 10], "398442000": [1, 10], "711367000": [1, 10], "603587000": [1, 10], "051309000": [1, 10], "426000000": [1, 10], "201903000": [1, 10], "122366000": [1, 10], "980398000": [1, 10], "314833000": [1, 10], "786375000": [1, 10], "110968000": [1, 10], "897104000": [1, 10], "836741000": [1, 10], "189105000": [1, 10], "513880000": [1, 10], "273763000": [1, 10], "879869000": [1, 10], "455112000": [1, 10], "187957000": 1, "553402000": [1, 10], "035532000": [1, 10], "868452000": [1, 10], "242032000": [1, 10], "801000000": [1, 10], "650978000": [1, 10], "953202000": [1, 10], "610123000": [1, 10], "s1a_iw_grdh_1sdv_20210102t12135": 1, "float646": [1, 5, 7, 10, 12], "05arrai": [1, 5, 6, 7, 10], "619430": [1, 10], "619440": [1, 10], "628080": [1, 10], "628090": [1, 10], "628100": [1, 6, 7, 10], "float643": [1, 5, 6, 7, 10, 12], "06arrai": [1, 5, 6, 7, 10], "3101650": [1, 10], "3101640": [1, 10], "3089810": [1, 10], "3089800": [1, 10], "3089790": [1, 6, 7, 10], "int6435959": 1, "44359arrai": [1, 10], "int6410arrai": [1, 10], "u10": [1, 10], "u1": [1, 5, 7, 10, 12], "u4": [1, 5, 7, 10, 12], "u5": [1, 5, 7, 10, 12], "u6": [1, 5, 10], "u11": [1, 10], "float645": [1, 10], "405arrai": [1, 10], "int6412": [1, 10], "12arrai": [1, 7, 10], "int6432645arrai": [1, 10], "u32": [1, 10], "float644": [1, 10], "4arrai": [1, 10], "int641arrai": [1, 6, 10], "int6420arrai": [1, 10], "int645arrai": [1, 10], "int6422arrai": [1, 10], "timepandasindexpandasindex": 1, "datetimeindex": [1, 5, 7], "634308": 1, "523867": 1, "556282": 1, "123774": 1, "958063": 1, "170790": 1, "796758": 1, "664862": 1, "793585": 1, "455112": 1, "187957": 1, "553402": 1, "035532": 1, "868452": 1, "242032": 1, "801000": 1, "650978": 1, "953202": 1, "610123": 1, "name": [1, 5, 6, 7, 10, 12], "length": [1, 5, 7], "freq": [1, 5, 7], "none": [1, 5, 6, 7, 10, 12], "bandpandasindexpandasindex": [1, 7], "xpandasindexpandasindex": [1, 5, 7], "619450": 1, "619460": 1, "619470": 1, "619480": 1, "619490": 1, "619500": 1, "619510": 1, "628010": 1, "628020": 1, "628030": 1, "628040": 1, "628050": 1, "628060": 1, "628070": 1, "ypandasindexpandasindex": [1, 5, 7], "3101630": 1, "3101620": 1, "3101610": 1, "3101600": 1, "3101590": 1, "3101580": 1, "3101570": 1, "3089880": 1, "3089870": 1, "3089860": 1, "3089850": 1, "3089840": 1, "3089830": 1, "3089820": 1, "resolutions_xi": [1, 10], "32645transform": [1, 10], "It": [1, 3, 5, 6, 7, 8, 10, 11], "origin": [1, 6, 7], "acquisit": [1, 5, 7, 10], "gener": [1, 5, 7, 10], "follow": [1, 5, 6, 7], "ad": [1, 5, 10], "variabl": [1, 6, 7, 9, 10, 11, 12], "stac_item": 1, "read_fil": [1, 6, 7, 12], "extract_source_granule_pc": 1, "rtc_id": 1, "base_url": 1, "full_url": 1, "source_granul": 1, "target": 1, "granule_l": [1, 7], "isel": [1, 5, 6, 7, 10], "t": [1, 3, 5, 6, 7, 10], "make_granule_coord_pc": 1, "fn": [1, 7], "take": [1, 4, 5, 6, 12], "acq": [1, 7], "date": [1, 5, 6, 7, 10], "assign": [1, 5, 6, 7, 10], "coord": [1, 5, 6, 10, 12], "obj": [1, 5], "acq_dat": [1, 5, 6, 7, 10, 12], "granule_da": [1, 7], "dim": [1, 6, 7, 10, 12], "attr": [1, 6, 7, 10], "granule_id": [1, 5, 7, 10, 12], "granule_coord": 1, "u62": [1, 10], "01arrai": 1, "000000000": [1, 5, 6, 7, 10, 12], "03t00": [1, 7, 10], "15t00": [1, 7, 10], "27t00": [1, 7, 10], "dimension": [1, 5, 10, 11], "align": [1, 4, 11], "combine_by_coord": 1, "merg": [1, 6], "two": [1, 5, 6, 7, 8, 9, 10, 11, 12, 13], "one": [1, 5, 6, 7, 8], "first": [1, 4, 5, 6, 7, 8, 10, 11, 13], "between": [1, 6, 7, 10], "thei": [1, 6, 10, 12], "renam": [1, 6, 7, 10], "when": [1, 4, 5, 6, 7], "comparison": [1, 3], "da_pc": [1, 10], "later": [1, 5, 6, 7], "great": [1, 4, 5, 10], "cube": [1, 6, 10, 11, 12], "backscatt": [1, 6, 7, 9, 11, 12], "dimens": [1, 5, 6, 7, 10, 11, 12], "look": [1, 4, 6, 10, 11, 12], "much": [1, 4, 5, 6, 7, 11, 12], "littl": [1, 6], "bit": [1, 4], "around": 1, "pixel": [1, 5, 6, 7, 10, 11], "db": [1, 5, 7, 10], "scale": [1, 6, 7], "won": 1, "yet": [1, 10], "logarithm": 1, "run": [1, 6], "ani": [1, 3, 5, 6, 12], "summari": 1, "statist": [1, 5, 6], "distort": [1, 5, 11], "power_to_db": [1, 5, 6, 7, 10, 12], "input_arr": [1, 5, 6, 7, 10, 12], "log10": [1, 5, 6, 7, 10, 12], "ab": [1, 5, 6, 7, 10, 12], "what": [1, 5, 7, 10, 12], "onli": [1, 4, 5, 6, 12], "da_vv": 1, "sel": [1, 5, 10], "da_vh": 1, "next": [1, 5, 10, 12], "taken": 1, "satellit": [1, 11, 13], "so": [1, 4, 6, 7, 10, 11, 12], "could": [1, 6, 8, 10, 12], "orbit": [1, 5, 10], "need": [1, 5, 6, 7, 10, 12], "approach": [1, 4, 8], "differ": [1, 4, 5, 6, 7, 8, 11, 13], "da_asc": 1, "where": [1, 5, 6, 7, 10, 12], "drop": [1, 5, 6, 7, 10, 12], "da_desc": 1, "97band": 1, "388": 1, "310324": 1, "373591": 1, "153373": 1, "245451": 1, "192429": 1, "353874": 1, "345504": 1, "688939": 1, "597722": 1, "083742": 1, "061444": 1, "616767": 1, "506409": 1, "953073": 1, "202200": 1, "650190": 1, "706900": 1, "351880": 1, "441074": [1, 10], "058343": 1, "373830": 1, "865662": 1, "982444": 1, "572473": 1, "613554": 1, "266919": 1, "428473": 1, "814919": 1, "150857": 1, "698596": 1, "713793": 1, "226637": 1, "421490": 1, "783019": 1, "971474": 1, "406593": 1, "415938": 1, "788780": 1, "760613": 1, "035095": 1, "850150": 1, "200359": 1, "954256": 1, "052769": 1, "645002": 1, "742983": 1, "560526": 1, "576899": 1, "035677": 1, "007158": 1, "513966": 1, "596874": 1, "793721": 1, "858303": 1, "280484": 1, "415805": 1, "877035": 1, "716165": 1, "352862": 1, "057390": 1, "019287": 1, "178103": 1, "939806": 1, "075742": 1, "677073": 1, "994606": 1, "706124": 1, "362180": 1, "140262": 1, "585924": 1, "398442": 1, "711367": 1, "051309": 1, "426000": 1, "122366": 1, "980398": 1, "314833": 1, "786375": 1, "110968": 1, "897104": 1, "189105": 1, "513880": 1, "879869": 1, "step": [1, 3, 4, 7, 11, 12], "all": [1, 4, 5, 6, 7, 10], "still": [1, 3, 7], "exist": 1, "subset": [1, 5, 6], "mai": [1, 5, 12], "side": [1, 5, 11], "plot": [1, 5, 6, 7, 10, 12], "fig": [1, 5, 6, 7, 10, 12], "ax": [1, 5, 6, 7, 10, 12], "subplot": [1, 5, 6, 7, 10, 12], "ncol": [1, 5, 6, 10, 12], "figsiz": [1, 5, 6, 7, 10, 12], "cmap": [1, 5, 6, 7, 10, 12], "cm": [1, 5, 6, 7, 10, 12], "greys_r": [1, 5, 6, 7, 10, 12], "like": [1, 4, 5, 6, 7, 10, 12], "persist": [1, 6], "over": [1, 5, 7, 9, 11, 12], "along": [1, 5, 6, 7, 10, 11], "idea": [1, 3], "rather": [1, 6, 7, 10], "snapshot": [1, 10], "mean": [1, 5, 7, 10, 12], "mean_agg": 1, "aggreg": 1, "verti": [1, 10], "nau": [1, 10], "97dask": 1, "776": 1, "b": [1, 10, 12], "set_titl": [1, 5, 10, 12], "red": [1, 10, 12], "blue": [1, 5, 6, 7, 10, 12], "linestyl": [1, 7, 10], "marker": [1, 7, 10, 12], "o": [1, 6, 7, 10, 12], "color": [1, 10, 12], "year": [1, 12], "twice": 1, "chapter": [1, 8, 9], "handbook": [1, 11], "effect": [1, 5, 10], "base": [1, 3, 6, 10], "view": [1, 4, 5, 7, 10, 11], "been": [1, 5, 6, 7, 8, 10, 11], "vari": [1, 5], "season": [1, 5, 12], "groupbi": [1, 5], "seasons_gb": 1, "dt": [1, 5, 6, 7, 10], "add": [1, 12], "back": [1, 10], "transpos": [1, 10], "djf": [1, 5], "jja": [1, 5], "son": [1, 5], "4band": 1, "mam": [1, 5], "seasonpandasindexpandasindex": [1, 5], "automat": 1, "fg_vv": 1, "col": [1, 5], "fg_vh": 1, "preliminari": [1, 3, 5, 7, 8, 10], "compar": [1, 5, 7, 9, 10, 11], "asf": [1, 4, 6, 8, 10, 11, 12, 13], "under": 2, "variou": [3, 7, 11], "publicli": 3, "sentinel": [3, 4, 5, 6, 8, 10, 11, 12, 13], "1": [3, 4, 5, 6, 8, 10, 12, 13], "imageri": [3, 4, 5, 6, 7, 8, 10, 11, 12, 13], "us": [3, 8, 11, 13], "xarrai": [3, 4, 5, 7, 10, 11, 12, 13], "other": [3, 4, 6, 11], "softwar": [3, 11], "volum": 3, "processs": 3, "local": [3, 5, 6, 7, 8, 11, 13], "data": [3, 4, 6], "portion": [3, 5], "focus": [3, 11], "sure": [3, 4, 7], "appropri": [3, 4, 6, 7, 11], "carri": 3, "through": [3, 6, 7, 8, 12], "easi": [3, 11], "readi": [3, 4, 11], "begin": 3, "exploratori": [3, 11], "workflow": [3, 6, 11], "hopefulli": 3, "got": 3, "leverag": [3, 11], "typic": 3, "remot": [3, 13], "sens": [3, 6, 13], "m": [3, 6, 7, 10, 13], "progress": [3, 6], "alwai": [3, 6, 11], "learn": [3, 4, 6, 13], "If": [3, 4, 5, 6, 7], "comment": [3, 6], "question": [3, 10, 12], "suggest": 3, "don": [3, 6, 7], "hesit": 3, "rais": [3, 5], "issu": [3, 4, 6, 7], "reach": 3, "me": [3, 7], "directli": [3, 7], "thank": [3, 5], "stop": 3, "twitter": 3, "emmar_22": 3, "email": 3, "read": [4, 8, 11], "combin": [4, 6], "multipl": [4, 5, 6, 10, 11], "onc": [4, 5, 7, 8], "rtc": [4, 6, 7, 8, 11, 13], "preprocess": [4, 6, 7], "write": [4, 7], "structur": [4, 6, 7], "give": [4, 5], "lot": [4, 6], "flexibl": [4, 7], "smooth": 4, "howev": [4, 6], "found": [4, 10], "wasn": 4, "did": [4, 5, 7], "exact": 4, "spatial": [4, 6, 7], "problem": [4, 6, 7], "strategi": [4, 7], "becaus": [4, 5, 6, 7, 10, 11], "off": [4, 6, 7, 10], "would": [4, 6, 7, 10, 12], "down": [4, 6], "border": [4, 6, 12], "fine": 4, "memori": [4, 6, 7], "blow": [4, 7], "up": [4, 7], "occur": 4, "requir": [4, 5, 8, 10], "thought": 4, "had": [4, 7], "bypass": 4, "clip": 4, "extent": [4, 7], "my": [4, 6], "smaller": [4, 6], "soon": 4, "realiz": 4, "encount": [4, 6, 7, 12], "select": [4, 5, 6, 7, 10], "expens": [4, 7], "denser": 4, "seri": [4, 5, 7, 9, 11], "cannot": [4, 5, 7], "sai": 4, "ultim": 4, "decid": 4, "gdal": [4, 6, 8], "vrt": [4, 6, 8], "those": [4, 7, 12], "open_rasterio": [4, 7], "perspect": 4, "seem": [4, 6], "uniform": [4, 6, 7], "while": [4, 6, 7, 10], "end": [4, 6, 7], "being": [4, 7, 10, 11], "best": [4, 5, 7], "includ": [4, 5, 7, 11, 13], "anywai": 4, "case": [4, 7, 11], "mani": [4, 5, 6, 7], "resourc": [4, 11], "overflow": [4, 10], "answer": [4, 10, 12], "talk": 4, "filenam": [4, 6, 7], "simpl": 5, "calcul": 5, "facet": 5, "reorgan": [5, 7], "reindex": 5, "evalu": [5, 10, 11], "download": [5, 6, 7, 11, 13], "pathlib": [5, 6, 7, 13], "path": [5, 7], "intak": [5, 6], "reverse_format": [5, 6], "magic": 5, "vrt_full": [5, 7, 10, 12], "396": [5, 7, 10, 12], "290": [5, 7, 10, 12], "spatial_ref": [5, 6, 7, 10, 12], "s1a": [5, 6, 7, 10, 12], "beam_mod": [5, 6, 7, 10, 12], "product_id": [5, 6, 7, 10, 12], "748f": [5, 6, 7, 10, 12], "0d1e": [5, 7, 10, 12], "bd36": [5, 7, 10, 12], "u67": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210": [5, 7, 10, 12], "orbital_dir": [5, 7, 10, 12], "asc": [5, 7, 12], "ls": [5, 6, 7, 10, 12], "datasetdimens": [5, 6, 7, 10, 12], "103y": [5, 7, 12], "396x": [5, 7, 10, 12], "290coordin": [5, 7, 10, 12], "195e": [5, 7, 10, 12], "619425": [5, 7, 10, 12], "619455": [5, 7, 10, 12], "619485": [5, 7, 10, 12], "628035": [5, 7, 10, 12], "628065": [5, 7, 10, 12], "628095": [5, 7, 10, 12], "3101655": [5, 7, 10, 12], "3101625": [5, 7, 10, 12], "3101595": [5, 7, 10, 12], "3089865": [5, 7, 10, 12], "3089835": [5, 7, 10, 12], "3089805": [5, 7, 10, 12], "int640crs_wkt": [5, 6, 7, 10, 12], "projc": [5, 6, 7, 10, 12], "quot": [5, 6, 7, 10, 12], "wg": [5, 6, 7, 10, 12], "utm": [5, 6, 7, 10, 12], "zone": [5, 6, 7, 10, 12], "45n": [5, 6, 7, 10, 12], "geogc": [5, 6, 7, 10, 12], "datum": [5, 6, 7, 10, 12], "wgs_1984": [5, 6, 7, 10, 12], "spheroid": [5, 6, 7, 10, 12], "6378137": [5, 6, 7, 10, 12], "298": [5, 6, 7, 10, 12], "257223563": [5, 6, 7, 10, 12], "7030": [5, 6, 7, 10, 12], "6326": [5, 6, 7, 10, 12], "primem": [5, 6, 7, 10, 12], "greenwich": [5, 6, 7, 10, 12], "8901": [5, 6, 7, 10, 12], "unit": [5, 6, 7, 10, 12], "degre": [5, 6, 7, 10, 12], "0174532925199433": [5, 6, 7, 10, 12], "9122": [5, 6, 7, 10, 12], "transverse_merc": [5, 6, 7, 10, 12], "latitude_of_origin": [5, 6, 7, 10, 12], "central_meridian": [5, 6, 7, 10, 12], "scale_factor": [5, 6, 7, 10, 12], "9996": [5, 6, 7, 10, 12], "false_east": [5, 6, 7, 10, 12], "500000": [5, 6, 7, 10, 12], "false_north": [5, 6, 7, 10, 12], "metr": [5, 6, 7, 10, 12], "9001": [5, 6, 7, 10, 12], "axi": [5, 6, 7, 10, 12], "east": [5, 6, 7, 10, 12], "semi_major_axi": [5, 6, 7, 10, 12], "0semi_minor_axi": [5, 6, 7, 10, 12], "6356752": [5, 6, 7, 10, 12], "314245179inverse_flatten": [5, 6, 7, 10, 12], "257223563reference_ellipsoid_nam": [5, 6, 7, 10, 12], "84longitude_of_prime_meridian": [5, 6, 7, 10, 12], "0prime_meridian_nam": [5, 6, 7, 10, 12], "greenwichgeographic_crs_nam": [5, 6, 7, 10, 12], "84horizontal_datum_nam": [5, 6, 7, 10, 12], "geodet": [5, 6, 7, 10, 12], "1984projected_crs_nam": [5, 6, 7, 10, 12], "45ngrid_mapping_nam": [5, 6, 7, 10, 12], "transverse_mercatorlatitude_of_projection_origin": [5, 6, 7, 10, 12], "0longitude_of_central_meridian": [5, 6, 7, 10, 12], "0false_east": [5, 6, 7, 10, 12], "0false_north": [5, 6, 7, 10, 12], "0scale_factor_at_central_meridian": [5, 6, 7, 10, 12], "9996spatial_ref": [5, 6, 7, 10, 12], "geotransform": [5, 6, 7, 10, 12], "619410": [5, 7, 10, 12], "3101670": [5, 7, 10, 12], "0arrai": [5, 6, 7, 10, 12], "polarisation_typ": [5, 6, 7, 10, 12], "orbit_typ": [5, 6, 7, 10, 12], "_": [5, 7, 12], "terrain_correction_pixel_spac": [5, 6, 7, 10, 12], "rtc30": [5, 7, 10, 12], "output_format": [5, 6, 7, 10, 12], "g": [5, 6, 7, 10, 12], "output_typ": [5, 6, 7, 10, 12], "p": [5, 6, 7, 10, 12], "01f4": [5, 7, 10, 12], "3e89": [5, 7, 10, 12], "61b6": [5, 7, 10, 12], "0535": [5, 7, 12], "f306": [5, 7, 10, 12], "1380": [5, 7, 10, 12], "ed8c": [5, 7, 10, 12], "2cbe": [5, 7, 10, 12], "1424": [5, 7, 10, 12], "aba0": [5, 7, 10, 12], "e61": [5, 7, 10, 12], "e5b6": [5, 7, 10, 12], "5569": [5, 7, 10, 12], "71c9": [5, 7, 10, 12], "b942": [5, 7, 10, 12], "dce1": [5, 7, 10, 12], "ca1b": [5, 7, 10, 12], "6581": [5, 7, 10, 12], "1dfd": [5, 7, 10, 12], "5413": [5, 7, 10, 12], "22bd": [5, 7, 10, 12], "bdc1": [5, 7, 10, 12], "01b2": [5, 7, 10, 12], "9849": [5, 7, 10, 12], "cffc": [5, 7, 10, 12], "57f2": [5, 7, 10, 12], "d4e6": [5, 7, 10, 12], "b7b0": [5, 7, 10, 12], "3770": [5, 7, 10, 12], "52bb": [5, 7, 10, 12], "0579": [5, 7, 10, 12], "aa68": [5, 7, 10, 12], "24b8": [5, 7, 10, 12], "d049": [5, 7, 10, 12], "5ff4": [5, 7, 10, 12], "5f4e": [5, 7, 10, 12], "199d": [5, 7, 10, 12], "0031": [5, 7, 10, 12], "d082": [5, 7, 10, 12], "e74b": [5, 7, 10, 12], "f7ed": [5, 7, 10, 12], "65e0": [5, 7, 10, 12], "f587": [5, 7, 10, 12], "528f": [5, 7, 10, 12], "51e7": [5, 7, 10, 12], "f5aa": [5, 7, 10, 12], "ac38": [5, 7, 10, 12], "772e": [5, 7, 10, 12], "f0a6": [5, 7, 10, 12], "066e": [5, 7, 10, 12], "5844": [5, 7, 10, 12], "8cd8": [5, 7, 10, 12], "6340": [5, 7, 10, 12], "d35a": [5, 7, 10, 12], "056c": [5, 7, 10, 12], "6e6f": [5, 7, 10, 12], "0cad": [5, 7, 10, 12], "6270": [5, 7, 10, 12], "8a4f": [5, 7, 10, 12], "beab": [5, 7, 10, 12], "54b1": [5, 7, 10, 12], "8f7b": [5, 7, 10, 12], "f9a9": [5, 7, 10, 12], "aa59": [5, 7, 10, 12], "57e1": [5, 7, 10, 12], "81eb": [5, 7, 10, 12], "250e": [5, 7, 10, 12], "3c39": [5, 7, 10, 12], "3a2a": [5, 7, 10, 12], "9331": [5, 7, 10, 12], "c14c": [5, 7, 10, 12], "f1de": [5, 7, 10, 12], "106f": [5, 7, 10, 12], "d48f": [5, 7, 10, 12], "407d": [5, 7, 10, 12], "fd00": [5, 7, 10, 12], "5d96": [5, 7, 10, 12], "971c": [5, 7, 10, 12], "f573": [5, 7, 10, 12], "c890": [5, 7, 10, 12], "68ea": [5, 7, 10, 12], "83d7": [5, 7, 10, 12], "e113": [5, 7, 10, 12], "d846": [5, 7, 10, 12], "f4b3": [5, 7, 10, 12], "bb26": [5, 7, 10, 12], "485c": [5, 7, 10, 12], "b409": [5, 7, 10, 12], "6683": [5, 7, 10, 12], "6153": [5, 7, 10, 12], "832b": [5, 7, 10, 12], "7418": [5, 7, 10, 12], "378d": [5, 7, 10, 12], "33f5": [5, 7, 10, 12], "1139": [5, 7, 10, 12], "b661": [5, 7, 10, 12], "9a2f": [5, 7, 10, 12], "6943": [5, 7, 10, 12], "5bad": [5, 7, 10, 12], "fa4f": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210502t12141": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210502t121414_20210502t121441_037709_047321_900f": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210505t000307_20210505t000334_037745_047463_4def": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210509t120542_20210509t120609_037811_047676_9ebd": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210514t121349_20210514t121416_037884_047898_4702": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210514t121414_20210514t121442_037884_047898_fe6f": [5, 7, 12], "s1a_iw_slc__1sdv_20210517t000308_20210517t000335_037920_0479a9_2a18": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210521t120543_20210521t120609_037986_047bbd_1ca0": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210526t121350_20210526t121417_038059_047de5_0e67": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210529t000309_20210529t000336_038095_047ef4_5449": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210602t120543_20210602t120610_038161_0480fd_893f": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210607t121351_20210607t121418_038234_048318_9b64": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210610t000310_20210610t000337_038270_04841e_601a": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210614t120544_20210614t120611_038336_04862f_337b": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210619t121352_20210619t121419_038409_04884c_1dba": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210622t000310_20210622t000337_038445_04895a_842": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210626t120545_20210626t120612_038511_048b6c_9585": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210701t121352_20210701t121419_038584_048d87_f95c": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210701t121417_20210701t121445_038584_048d87_c79": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210704t000311_20210704t000338_038620_048e99_1baa": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20210708t120545_20210708t120612_038686_0490ad_dd9": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220317t120545_20220317t120612_042361_050ce5_4ccf": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220322t121353_20220322t121420_042434_050f59_a1b6": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220325t000312_20220325t000339_042470_051096_ba6f": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220329t120546_20220329t120613_042536_0512d7_425a": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220403t121418_20220403t121446_042609_05154a_51e7": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220403t121353_20220403t121420_042609_05154a_3fe7": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220406t000312_20220406t000339_042645_051682_4b40": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220410t120546_20220410t120613_042711_0518c0_3349": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220415t121353_20220415t121420_042784_051b30_eb87": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220418t000312_20220418t000339_042820_051c63_cab2": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220422t120547_20220422t120614_042886_051e96_41e": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220427t121354_20220427t121421_042959_0520ee_a42d": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220430t000313_20220430t000340_042995_05221e_46a1": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220504t120547_20220504t120614_043061_05245f_6f62": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220509t121355_20220509t121422_043134_0526c4_092": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220516t120548_20220516t120615_043236_0529dd_42d2": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220521t121420_20220521t121448_043309_052c00_493d": [5, 7, 10, 12], "s1a_iw_slc__1sdv_20220521t121356_20220521t121423_043309_052c00_fe88": [5, 7, 10, 12], "float32dask": [5, 6, 7, 10, 12], "0add_offset": [5, 7, 10, 12], "0_fillvalu": [5, 7, 10, 12], "448": [5, 7, 10, 12], "kib": [5, 7, 10, 12], "float64dask": [5, 7, 10, 12], "897": [5, 7, 10, 12], "619515": [5, 7], "619545": [5, 7], "619575": [5, 7], "619605": [5, 7], "619635": [5, 7], "619665": [5, 7], "619695": [5, 7], "627825": [5, 7], "627855": [5, 7], "627885": [5, 7], "627915": [5, 7], "627945": [5, 7], "627975": [5, 7], "628005": [5, 7], "3101565": [5, 7], "3101535": [5, 7], "3101505": [5, 7], "3101475": [5, 7], "3101445": [5, 7], "3101415": [5, 7], "3101385": [5, 7], "3090075": [5, 7], "3090045": [5, 7], "3090015": [5, 7], "3089985": [5, 7], "3089955": [5, 7], "3089925": [5, 7], "3089895": [5, 7], "acq_datepandasindexpandasindex": [5, 7], "plot_timestep": 5, "time_step_int": 5, "given": [5, 6, 7], "suptitl": [5, 6, 10, 12], "f": [5, 6, 7], "l": [5, 6, 7], "come": 5, "understand": [5, 10, 11], "miss": 5, "might": [5, 12], "repres": [5, 6, 7, 11], "number": [5, 6, 7, 10, 11, 13], "copi": [5, 6], "readm": [5, 6, 10], "accompani": 5, "affect": 5, "tag": 5, "_ls_map": [5, 6, 7], "tif": [5, 6, 7], "togeth": [5, 7], "test": [5, 7], "ha": [5, 6, 7, 8, 10, 11], "angl": [5, 11], "less": [5, 7], "slope": 5, "opposit": 5, "There": [5, 7, 10], "possibl": 5, "condit": [5, 10, 12], "Not": [5, 6, 7], "either": [5, 7], "detail": [5, 6, 11], "cmap1": 5, "get_cmap": 5, "gist_ncar": 5, "tmp": [5, 6, 7], "ipykernel_147196": 5, "865903566": 5, "matplotlibdeprecationwarn": 5, "minor": 5, "releas": [5, 13], "colormap": 5, "vmax": 5, "vmin": 5, "For": [5, 11], "lower": [5, 10], "left": 5, "quadrant": 5, "appear": 5, "throughout": [5, 13], "due": [5, 6, 10, 11], "previou": [5, 10], "confirm": [5, 7], "vrt_vv": [5, 7], "vrt_vh": [5, 7], "mean_pol": 5, "to_arrai": 5, "pol": [5, 6], "0x7fd38ef3c4c0": 5, "relat": [5, 10, 11, 12], "oper": [5, 6, 7], "vrt_gb": 5, "4y": 5, "order": [5, 6, 7, 10], "correctli": 5, "290y": [5, 7], "396season": 5, "4coordin": 5, "fg_": 5, "winter": [5, 12], "spring": 5, "composit": 5, "similar": [5, 7, 10, 11, 12], "anoth": [5, 6], "decreas": 5, "move": [5, 7], "closer": 5, "ident": [5, 6, 7], "examin": 5, "go": [5, 7, 10], "keep": [5, 7], "data_date_id": 5, "granul": [5, 12], "id": [5, 6, 12], "data_take_asf": 5, "Then": 5, "data_take_id": [5, 10], "047321": [5, 7, 10], "052c00": [5, 10], "047463": [5, 10], "takearrai": [5, 10], "047676": [5, 10], "047898": [5, 10], "0479a9": [5, 10], "047bbd": [5, 10], "047de5": [5, 10], "047ef4": [5, 10], "0480fd": [5, 10], "048318": [5, 10], "04841e": [5, 10], "04862f": [5, 10], "04884c": [5, 10], "04895a": [5, 10], "048b6c": [5, 10], "048d87": [5, 10], "048e99": [5, 10], "0490ad": [5, 10], "0492d4": [5, 10], "0493db": [5, 10], "0495ec": [5, 10], "04980f": [5, 10], "04991e": [5, 10], "049b1f": [5, 10], "049d70": [5, 10], "049eac": [5, 10], "04a0ff": [5, 10], "04a383": [5, 10], "04a4b9": [5, 10], "04a6fc": [5, 10], "04a972": [5, 10], "04aab3": [5, 10], "04ad0d": [5, 10], "04af85": [5, 10], "04b0c4": [5, 10], "04b2fb": [5, 10], "04b566": [5, 10], "04b6ab": [5, 10], "04b8ff": [5, 10], "04bb88": [5, 10], "04bcb8": [5, 10], "04bf12": [5, 10], "04c195": [5, 10], "04c2d6": [5, 10], "04c52e": [5, 10], "04c7a8": [5, 10], "04c8e9": [5, 10], "04cb46": [5, 10], "04cdc8": [5, 10], "04ceff": [5, 10], "04d14f": [5, 10], "04d3cc": [5, 10], "04d50e": [5, 10], "04d761": [5, 10], "04d9e8": [5, 10], "04db21": [5, 10], "04dd71": [5, 10], "04dfdd": [5, 10], "04e110": [5, 10], "04e340": [5, 10], "04e5ab": [5, 10], "04e6d7": [5, 10], "04e931": [5, 10], "04eb9b": [5, 10], "04eccd": [5, 10], "04eee8": [5, 10], "04f156": [5, 10], "04f294": [5, 10], "04f4d6": [5, 10], "04f754": [5, 10], "04f88b": [5, 10], "04faf5": [5, 10], "04fd6f": [5, 10], "04feb2": [5, 10], "050108": [5, 10], "050376": [5, 10], "0504af": [5, 10], "0506f7": [5, 10], "050962": [5, 10], "050aa2": [5, 10], "050ce5": [5, 10], "050f59": [5, 10], "051096": [5, 10], "0512d7": [5, 10], "05154a": [5, 10], "051682": [5, 10], "0518c0": [5, 10], "051b30": [5, 10], "051c63": [5, 10], "051e96": [5, 10], "0520ee": [5, 10], "05221e": [5, 10], "05245f": [5, 10], "0526c4": [5, 10], "0529dd": [5, 10], "asf_id": 5, "exactli": [5, 10], "d": [5, 6, 7, 10], "expect": 5, "uniqu": 5, "asf_set": 5, "figur": 5, "input_l": [5, 7], "set": [5, 6, 7, 10], "count": [5, 6, 10, 12], "duplicate_l": 5, "asf_duplicate_cond": 5, "isin": [5, 10, 12], "103fals": 5, "truearrai": 5, "asf_dupl": 5, "12y": 5, "s1a_iw_slc__1sdv_20210514t12134": 5, "s1a_iw_slc__1sdv_20210713t121353_20210713t121420_038759_0492d4_eabd": [5, 10], "s1a_iw_slc__1sdv_20210713t121418_20210713t121446_038759_0492d4_47d9": [5, 10], "fg": 5, "col_wrap": 5, "valueerror": 5, "traceback": 5, "most": [5, 7], "recent": 5, "last": 5, "line": [5, 6, 7, 10, 12], "dataarrayplotaccessor": 5, "__call__": 5, "kwarg": 5, "functool": 5, "dataarray_plot": 5, "__doc__": 5, "__annotations__": 5, "_da": 5, "309": 5, "darrai": 5, "hue": 5, "subplot_kw": 5, "305": 5, "plotfunc": 5, "hist": 5, "307": 5, "1508": 5, "_plot2d": 5, "newplotfunc": 5, "fail": [5, 6], "resolv": 5, "1506": 5, "decor": 5, "1507": 5, "allarg": 5, "__name__": 5, "_easy_facetgrid": 5, "kind": 5, "1510": 5, "ndim": 5, "1511": 5, "typeerror": 5, "1512": 5, "No": 5, "numer": 5, "1047": 5, "sharex": 5, "sharei": 5, "aspect": [5, 7], "1044": 5, "1045": 5, "1048": 5, "1049": 5, "1050": 5, "1051": 5, "1052": 5, "1053": 5, "1054": 5, "1055": 5, "1056": 5, "1057": 5, "1058": 5, "1060": 5, "1061": 5, "map_dataarray_lin": 5, "174": 5, "__init__": 5, "172": 5, "rep_row": 5, "to_index": 5, "is_uniqu": 5, "173": 5, "rep_col": 5, "175": 5, "176": 5, "repeat": [5, 6], "nonuniqu": 5, "177": 5, "179": 5, "single_group": 5, "180": 5, "bool": 5, "hashabl": 5, "oop": [5, 10], "doe": [5, 6, 7], "know": 5, "small": 5, "ignor": 5, "rename_dim": [5, 7], "realli": 5, "sinc": 5, "among": [5, 7], "drop_l": 5, "comprehens": 5, "drop_product_id_l": 5, "nameerror": 5, "duplicate_cond": 5, "vrt_new": [5, 10], "96y": 5, "s1a_iw_slc__1sdv_20210716t000312_20210716t000339_038795_0493db_53cd": [5, 10], "s1a_iw_slc__1sdv_20220305t120545_20220305t120612_042186_0506f7_1601": [5, 10], "s1a_iw_slc__1sdv_20220310t121353_20220310t121420_042259_050962_068b": [5, 10], "s1a_iw_slc__1sdv_20220313t000311_20220313t000338_042295_050aa2_2909": [5, 10], "updat": 5, "brief": [5, 7], "vast": [5, 6], "amount": [5, 6, 7], "auxiliari": 5, "On": [6, 8, 13], "demand": [6, 7, 8, 13], "directori": [6, 7, 13], "un": [6, 7], "zip": [6, 7], "limit": 6, "certain": [6, 11, 12], "characterist": [6, 7], "goal": [6, 11], "handl": 6, "util": 6, "machin": [6, 7, 13], "ran": 6, "thread": 6, "caus": [6, 7, 10], "dead": [6, 7], "kernel": 6, "fix": [6, 10], "3d200513": 6, "6114": 6, "11ed": 6, "ac16": 6, "d88083ee7b7d": 6, "localclust": 6, "183": 6, "info": 6, "441be7f1": 6, "worker": [6, 7], "total": 6, "schedul": 6, "831d8c4b": 6, "55aa": 6, "4ec0": 6, "bfbf": 6, "5d4b2bbfafab": 6, "comm": 6, "inproc": 6, "27670": 6, "start": 6, "nanni": 6, "space": [6, 7, 11, 12], "lua9jwnw": 6, "string": [6, 7], "current": [6, 7, 8, 10, 12], "own": [6, 7], "sub": [6, 7], "asf_rtc": [6, 7], "layov": [6, 7], "shadow": [6, 7, 10], "mask": [6, 7, 10, 12], "extract_tif_fnam": [6, 7], "dir_path_al": [6, 7], "desktop": [6, 7], "asf_rtc_data": [6, 7], "scenes_l": [6, 7], "listdir": [6, 7], "scene_path": [6, 7], "scene_files_l": [6, 7], "scene_files_vv": [6, 7], "fname": [6, 7], "endswith": [6, 7], "_vh": [6, 7], "scene_files_vh": [6, 7], "_vv": [6, 7], "attach": [6, 7, 10], "three": [6, 7, 11], "fpaths_vv": [6, 7], "fpaths_vh": [6, 7], "fpaths_l": [6, 7], "good_fil": [6, 7], "path_vh": [6, 7], "path_vv": [6, 7], "path_l": [6, 7], "append": [6, 7], "data_dir": 6, "rglob": 6, "ls_map": 6, "them": [6, 7, 12], "execut": [6, 7], "roughli": 6, "preprocess_vv": 6, "preprocess_vh": 6, "preprocess_l": 6, "similarli": [6, 8], "fpaths_vv_sub": 6, "posixpath": 6, "s1a_iw_20210821t000314_dvp_rtc30_g_gpuned_748f_": 6, "s1a_iw_20210821t000314_dvp_rtc30_g_gpuned_748f_vv": [6, 7], "s1a_iw_20220116t120547_dvp_rtc30_g_gpuned_0d1e_": 6, "s1a_iw_20220116t120547_dvp_rtc30_g_gpuned_0d1e_vv": 6, "s1a_iw_20210708t120545_dvp_rtc30_g_gpuned_3e89_": 6, "s1a_iw_20210708t120545_dvp_rtc30_g_gpuned_3e89_vv": 6, "s1a_iw_20220422t120547_dvp_rtc30_g_gpuned_61b6_": 6, "s1a_iw_20220422t120547_dvp_rtc30_g_gpuned_61b6_vv": 6, "ds1": 6, "open_dataset": 6, "da_orig": [6, 7], "dualpol": 6, "think": [6, 7], "concaten": 6, "band_data": 6, "squeez": [6, 7], "encod": [6, 7], "vv_fn": [6, 7], "basenam": 6, "relev": 6, "acq_date_raw": 6, "strptime": 6, "h": [6, 7], "acq_tim": 6, "pol_typ": [6, 7], "dual": 6, "primary_pol": [6, 7], "precis": [6, 7], "restitut": [6, 7], "predict": [6, 7], "rtc_alg": [6, 7], "output": [6, 7], "sigma": [6, 7, 10], "decibel": [6, 7], "amplitud": [6, 7, 10], "unmask": [6, 7], "w": [6, 7], "entir": [6, 7, 10], "tbd": [6, 7], "reckon": [6, 7], "attrs_dict": [6, 7], "acquisition_d": 6, "acquisition_tim": [6, 7, 10], "primary_polaris": [6, 7], "eg": 6, "utm_zon": 6, "crs_wkt": 6, "epsg_cod": 6, "589": [6, 12], "594": [6, 12], "assign_coord": [6, 7, 10], "expand_dim": 6, "drop_dupl": 6, "unless": 6, "fname_l": 6, "layover_shadow_mask": 6, "vec": 6, "s1_book": 6, "raw": [6, 7, 12], "main": [6, 7, 12], "hma_lakes_aoi": 6, "da_clip": 6, "auto": [6, 7], "ideal": 6, "attempt": 6, "equal": 6, "configur": 6, "config": 6, "128mib": 6, "asf_vh": 6, "engin": 6, "rasterio": 6, "data_var": [6, 7], "minim": 6, "concat_dim": 6, "nest": 6, "17452": [6, 7], "13379": [6, 7], "833e": [6, 7], "068e": [6, 7], "907e": [6, 7], "309e": [6, 7], "845": [6, 12], "4935": 6, "t000314": 6, "32645xarrai": 6, "17452y": [6, 7], "13379acq_dat": [6, 7], "103coordin": [6, 7], "383265": [6, 7], "383295": [6, 7], "383325": [6, 7], "906735": [6, 7], "906765": [6, 7], "906795": [6, 7], "float642": 6, "2907375": [6, 7], "2907405": [6, 7], "2907435": [6, 7], "3308655": [6, 7], "3308685": [6, 7], "3308715": [6, 7], "519570": 6, "3200520": 6, "3921": 6, "1338": 6, "317240": 6, "s1abeam_mod": 6, "iwacquisition_d": 6, "14acquisition_tim": 6, "t000314polarisation_typ": 6, "vprimary_polaris": 6, "porbit_typ": 6, "_terrain_correction_pixel_spac": 6, "rtc30output_format": 6, "goutput_typ": 6, "pmask": 6, "ufilt": 6, "narea": 6, "eproduct_id": 6, "748futm_zon": 6, "45nepsg_cod": 6, "click": 6, "icon": 6, "tab": 6, "quit": [6, 10], "isn": [6, 10], "excess": 6, "usag": 6, "funki": 6, "layout": 6, "both": [6, 7, 10, 11], "890": 6, "1186": 6, "asf_vv": 6, "asf_l": 6, "least": 6, "solv": 6, "asf_d": 6, "sortbi": [6, 7], "asf_ds_sort": 6, "1187": 6, "pretti": 6, "unwieldi": 6, "nearli": 6, "200": 6, "gb": [6, 7], "focu": [6, 11], "central": [6, 12], "himalaya": [6, 11, 12], "chines": [6, 12], "pc_aoi": [6, 7], "sentinel1_rtc": [6, 7, 12], "hma_rtc_aoi": [6, 7], "facecolor": [6, 7, 12], "edgecolor": [6, 7, 12], "axessubplot": 6, "asf_clip": 6, "nbyte": 6, "1e6": 6, "948568": 6, "kill": 6, "asf_clip_load": 6, "publish": [6, 7, 10], "nought": [6, 10], "easili": 6, "especi": 6, "custom": [6, 7], "preserv": 6, "natur": [6, 7], "computation": [6, 7, 11], "abl": [6, 7], "xml": [6, 7], "essenti": [6, 7], "mismatch": [6, 7], "were": [7, 10], "situat": 7, "appendix": 7, "save": [7, 10], "huge": 7, "built": 7, "filepath": 7, "static": 7, "suit": [7, 13], "lazili": 7, "short": 7, "lightweight": 7, "separ": 7, "lose": 7, "lost": 7, "must": [7, 10], "explan": [7, 11], "awar": 7, "wrap": [7, 10, 12], "markdown": [7, 13], "s1_tool": [7, 10, 12, 13], "glob": 7, "load_ext": [7, 13], "watermark": [7, 13], "iv": 7, "2024": 7, "microsoft": [7, 10, 11, 13], "planetari": [7, 10, 11, 13], "environ": 7, "replac": 7, "rm": 7, "md": 7, "txt": 7, "everi": 7, "four": 7, "s1a_iw_20210821t000314_dvp_rtc30_g_gpuned_748f_vh": 7, "s1a_iw_20210821t000314_dvp_rtc30_g_gpuned_748f_ls_map": 7, "s1a_iw_20210821t000314_dvp_rtc30_g_gpuned_748f": 7, "fpaths_rm": 7, "path_readm": 7, "gdalbuildvrt": 7, "command": [7, 10], "find": [7, 8, 10, 11], "place": 7, "deal": 7, "flag": 7, "locat": 7, "written": 7, "written_data": 7, "s1_vv_fpath": 7, "fp": 7, "item": 7, "new": 7, "s1_vh_fpath": 7, "s1_ls_fpath": 7, "input_file_list": 7, "my_list": 7, "vrt_fname": 7, "br": 7, "s1_stackvv": 7, "s1_stackvh": 7, "s1_stackl": 7, "done": [7, 12], "vrt_l": 7, "b10d33d8a4b01aa9049ac0a5fdaa0889": 7, "5760": 7, "_fillvalu": 7, "add_offset": 7, "dataarrayband": 7, "13379x": 7, "17452dask": 7, "1236": 7, "int641": 7, "103arrai": 7, "383250": 7, "3308730": 7, "383355": 7, "383385": 7, "383415": 7, "383445": 7, "383475": 7, "383505": 7, "383535": 7, "906525": 7, "906555": 7, "906585": 7, "906615": 7, "906645": 7, "906675": 7, "906705": 7, "3308625": 7, "3308595": 7, "3308565": 7, "3308535": 7, "3308505": 7, "3308475": 7, "3308445": 7, "2907645": 7, "2907615": 7, "2907585": 7, "2907555": 7, "2907525": 7, "2907495": 7, "2907465": 7, "0scale_factor": 7, "extract_metadata_attr": 7, "inputfnam": 7, "acq_date_ful": 7, "acq_datetim": 7, "acquisition_datetim": 7, "acq_dates_vh": 7, "strftime": 7, "yt": 7, "acq_dates_vv": 7, "acq_dates_l": 7, "2021t000314": 7, "2022t120547": 7, "2021t120545": 7, "2022t121354": 7, "As": [7, 11, 12], "vrt_merg": 7, "ipykernel_149397": 7, "1332661188": 7, "anymor": 7, "swap_dim": 7, "set_index": 7, "after": 7, "uint8": 7, "11520": 7, "uint8dask": 7, "412": 7, "compos": 7, "break": 7, "236": 7, "mb": 7, "ineffici": 7, "intern": 7, "too": 7, "317": 7, "240": 7, "complic": 7, "led": 7, "difficulti": 7, "good": 7, "storag": 7, "without": 7, "unnecessari": 7, "lead": 7, "slower": 7, "vrt_clip": 7, "396acq_dat": 7, "05axi": [7, 10, 12], "xlong_nam": [7, 10, 12], "projectionstandard_nam": [7, 10, 12], "projection_x_coordinateunit": [7, 10, 12], "metrearrai": [7, 10, 12], "06axi": [7, 10, 12], "ylong_nam": [7, 10, 12], "projection_y_coordinateunit": [7, 10, 12], "timestamp": 7, "meta_attrs_ls_vv": 7, "stacked_meta_tupl": 7, "dict": 7, "tupl": [7, 10], "input": [7, 10, 12], "categori": 7, "meta_dict": 7, "ticker": 7, "keys_l": 7, "els": 7, "key_dict": 7, "full_tupl": 7, "apply_meta_coord": 7, "input_xr": [7, 12], "input_tupl": 7, "out_xr": 7, "meta_tupl": 7, "european": 7, "agenc": 7, "earlier": [7, 9, 10], "extract_granule_id": 7, "read_text": 7, "preced": 7, "gran_str": 7, "folder": 7, "split": 7, "isol": 7, "gran_id": 7, "make_granule_coord": 7, "readme_fpaths_l": 7, "s1a_iw_slc__1sdv_20210502t121414_20210502t121441_037709_047321_900": 7, "21arrai": [7, 10], "convent": 7, "mission": 7, "segment": 7, "translat": 7, "s1a_iw_slc__1sdv_20210502t121414_": 7, "396coordin": 7, "14arrai": 7, "10312": 7, "nan": [7, 10, 12], "zero": [7, 10, 12], "stream": 7, "shown": 7, "actual": 7, "overwrit": 7, "offici": 7, "befor": [7, 10], "reduc": 7, "markers": [7, 10], "snap": 7, "shot": 7, "datacub": 7, "oneself": 7, "hyp3": 8, "show": [8, 11], "second": [8, 11, 13], "made": 8, "stac": [8, 11], "jupyt": [8, 11], "hub": 8, "free": 8, "rest": [9, 13], "ensur": 10, "interp_lik": 10, "inlin": 10, "page": [10, 13], "One": 10, "complex": [10, 11], "slc": 10, "phase": 10, "multi": [10, 11], "elev": 10, "higher": 10, "holoview": 10, "hv": 10, "opt": 10, "asf_pc_sidebysid": 10, "asf_input": 10, "pc_input": 10, "timestep": 10, "label": [10, 12], "single_time_mean_compar": 10, "vv_": 10, "storemag": 10, "retriev": 10, "again": 10, "acq_hour": 10, "95y": 10, "scenearrai": 10, "s1a_iw_slc__1sdv_20210720t120546_20210720t120613_038861_0495ec_c9d4": 10, "int640": 10, "4d29467097b7d384d1232c9847300ccd": 10, "100band": 10, "400": 10, "s1a_iw_grdh_1sdv_20210602t12054": 10, "int64114": 10, "int6438161": 10, "data_take_pc": 10, "form": [10, 12], "coord_nam": 10, "coord_data": 10, "054b39": 10, "052f0a": 10, "053126": 10, "05323c": 10, "053436": 10, "05365f": 10, "053770": 10, "053978": 10, "053ba2": 10, "053ea7": 10, "0540d0": 10, "0541e4": 10, "0543e4": 10, "054615": 10, "05471e": 10, "05491d": 10, "intersect": 10, "common_data_tak": 10, "pc_data_take_l": 10, "asf_data_take_l": 10, "subset_condition_asf": 10, "subset_condition_pc": 10, "acq_at": 10, "satisfi": 10, "stackoverflow": 10, "70777676": 10, "asf_subset": 10, "pc_subset": 10, "getitem": 10, "83band": 10, "332": 10, "43309arrai": 10, "83y": 10, "s1a_iw_slc__1sdv_20210602t12054": 10, "s1a_iw_slc__1sdv_20210725t121354_20210725t121421_038934_04980f_1651": 10, "s1a_iw_slc__1sdv_20210728t000312_20210728t000339_038970_04991e_c669": 10, "s1a_iw_slc__1sdv_20210801t120547_20210801t120614_039036_049b1f_9997": 10, "s1a_iw_slc__1sdv_20210806t121354_20210806t121421_039109_049d70_b0a0": 10, "s1a_iw_slc__1sdv_20210809t000313_20210809t000340_039145_049eac_aa8": 10, "s1a_iw_slc__1sdv_20210813t120548_20210813t120614_039211_04a0ff_405f": 10, "s1a_iw_slc__1sdv_20210818t121355_20210818t121422_039284_04a383_54d5": 10, "s1a_iw_slc__1sdv_20210821t000314_20210821t000341_039320_04a4b9_0878": 10, "asf_bc_sidebysid": 10, "line2d": [10, 12], "whether": 10, "offset": 10, "downsampl": 10, "dimensiosn": 10, "pc_downsampl": 10, "290dask": 10, "145": 10, "166": [10, 12], "pc_mask": 10, "notnul": 10, "4796": 10, "performancewarn": 10, "increas": 10, "factor": 10, "result": 10, "blockwis": 10, "290time": 10, "2coordin": 10, "int640arrai": 10, "13778": 10, "broadcast": 10, "okai": 10, "frozen": 10, "m8": 10, "290band": 10, "s1a_iw_slc__1sdv_20210602t": 10, "21t1": 10, "83coordin": 10, "664": 10, "skipna": 10, "90y": 10, "asf_desc": 10, "asf_asc": 10, "pc_desc": 10, "pc_asc": 10, "legend": 10, "loc": [10, 12], "set_xlabel": 10, "set_ylabel": 10, "synthet": 11, "apertur": 11, "design": 11, "alreadi": [11, 13], "undergon": 11, "topographi": 11, "slant": 11, "azimuth": 11, "track": 11, "across": 11, "swath": 11, "geocod": 11, "aris": 11, "scatter": [11, 12], "respons": 11, "account": 11, "alaska": [11, 13], "algorithm": 11, "compon": 11, "whichev": 11, "benefit": 11, "tradeoff": 11, "domain": 11, "navig": 11, "orient": 11, "suitabl": 11, "resampl": 11, "analyz": 11, "third": 11, "repositori": 11, "proglaci": [11, 12], "lake": 11, "scientif": 12, "mind": 12, "glacier": 12, "india": 12, "glaciologist": 12, "freez": 12, "conclus": 12, "itself": 12, "walk": 12, "dynam": 12, "identifi": 12, "get_bbox_singl": 12, "buffer": 12, "itsliv": 12, "quick": 12, "min": 12, "max": 12, "pts_l": 12, "polygon_geom": 12, "polygon_prj": 12, "to_cr": 12, "total_bound": 12, "500": 12, "bounds_xmin": 12, "bounds_xmax": 12, "bounds_ymin": 12, "bounds_ymax": 12, "bounds_l": 12, "bounds_geom": 12, "bound_gdf": 12, "bounds_prj": 12, "manual": 12, "drawn": 12, "outlin": 12, "proglacial_lake_outlin": 12, "lakes_prj": 12, "623555": 12, "903": 12, "3099600": 12, "816": 12, "623594": 12, "809": 12, "622405": 12, "254": 12, "3097521": 12, "050": 12, "622268": 12, "598": 12, "randolph": 12, "da_bbox": 12, "rgi": 12, "master": 12, "rgi15_southasiaeast": 12, "rgi_prj": 12, "rgi_sub": 12, "sjoin": 12, "inner": 12, "trust": 12, "load": [12, 13], "rgiid": 12, "glimsid": 12, "bgndate": 12, "enddat": 12, "cenlon": 12, "cenlat": 12, "o1region": 12, "o2region": 12, "zmin": 12, "lmax": 12, "termtyp": 12, "surg": 12, "linkag": 12, "index_right": 12, "2912": 12, "rgi60": 12, "02913": 12, "g088261e27938n": 12, "20001108": 12, "9999999": 12, "260530": 12, "937820": 12, "222": 12, "5278": 12, "667": 12, "624154": 12, "597": 12, "3091139": 12, "237": 12, "2913": 12, "02914": 12, "g088296e27928n": 12, "296067": 12, "928288": 12, "248": 12, "5372": 12, "524": 12, "627398": 12, "3089890": 12, "401": 12, "627403": 12, "687": 12, "2915": 12, "02916": 12, "g088280e27949n": 12, "279920": 12, "949292": 12, "5325": 12, "626107": 12, "884": 12, "3092444": 12, "923": 12, "626110": 12, "2916": 12, "02917": 12, "g088289e27956n": 12, "288797": 12, "955961": 12, "461": 12, "5351": 12, "843": 12, "626663": 12, "3092564": 12, "217": 12, "626654": 12, "813": 12, "2917": 12, "02918": 12, "g088285e27952n": 12, "284713": 12, "951895": 12, "169": 12, "5354": 12, "682": 12, "626491": 12, "921": 12, "3092669": 12, "295": 12, "626516": 12, "842": 12, "2918": 12, "02919": 12, "g088277e27950n": 12, "276515": 12, "950028": 12, "5403": 12, "372": 12, "625706": 12, "190": 12, "3092218": 12, "712": 12, "625675": 12, "749": 12, "2919": 12, "02920": 12, "g088283e27949n": 12, "282704": 12, "948794": 12, "052": 12, "5436": 12, "456": 12, "626202": 12, "575": 12, "3092388": 12, "557": 12, "626217": 12, "905": 12, "10460": 12, "10461": 12, "g088226e27972n": 12, "20100128": 12, "226000": 12, "972000": 12, "949": 12, "5410": 12, "2435": 12, "cn5o197b0032": 12, "620316": 12, "436": 12, "3095795": 12, "468": 12, "620337": 12, "10462": 12, "g088239e27978n": 12, "239000": 12, "978000": 12, "495": 12, "5654": 12, "1807": 12, "cn5o197b0031": 12, "621679": 12, "3094643": 12, "491": 12, "621669": 12, "750": 12, "10463": 12, "g088251e27968n": 12, "251000": 12, "968000": 12, "924": 12, "5335": 12, "6668": 12, "cn5o197b0030": 12, "624579": 12, "834": 12, "3093180": 12, "624573": 12, "058": 12, "10464": 12, "g088271e27976n": 12, "271000": 12, "976000": 12, "319": 12, "5328": 12, "5609": 12, "cn5o197b0029": 12, "chutanjima": 12, "626179": 12, "758": 12, "3095289": 12, "794": 12, "626190": 12, "220": 12, "10465": 12, "g088276e28004n": 12, "276000": 12, "004000": 12, "425": 12, "5758": 12, "1266": 12, "cn5o197b0025": 12, "625657": 12, "883": 12, "3097386": 12, "998": 12, "625608": 12, "493": 12, "10466": 12, "g088277e28011n": 12, "277000": 12, "011000": 12, "209": 12, "5808": 12, "844": 12, "cn5o197b0024": 12, "625439": 12, "972": 12, "3098924": 12, "917": 12, "625433": 12, "875": 12, "10467": 12, "g088290e27983n": 12, "290000": 12, "983000": 12, "744": 12, "5290": 12, "5476": 12, "cn5o197b0023": 12, "mogunong": 12, "626186": 12, "255": 12, "10468": 12, "g088299e27986n": 12, "299000": 12, "986000": 12, "171": 12, "5623": 12, "549": 12, "cn5o197b0020": 12, "yare": 12, "627542": 12, "496": 12, "3096272": 12, "717": 12, "627570": 12, "017": 12, "10469": 12, "g088302e28008n": 12, "302000": 12, "008000": 12, "283": 12, "5477": 12, "cn5o197b0021": 12, "627882": 12, "258": 12, "3098849": 12, "454": 12, "729": 12, "10470": 12, "g088308e27981n": 12, "308000": 12, "981000": 12, "625": 12, "5258": 12, "3156": 12, "629527": 12, "753": 12, "3096004": 12, "759": 12, "251": 12, "968": 12, "271": 12, "976": 12, "apr": 12, "fontsiz": 12, "lake1": 12, "lake2": 12, "lake1_asf": 12, "lake2_asf": 12, "234e": 12, "242e": 12, "1e": 12, "098e": 12, "103x": 12, "26y": 12, "51coordin": 12, "623415": 12, "623445": 12, "623475": 12, "623505": 12, "623535": 12, "623565": 12, "623595": 12, "623625": 12, "623655": 12, "623685": 12, "623715": 12, "623745": 12, "623775": 12, "623805": 12, "623835": 12, "623865": 12, "623895": 12, "623925": 12, "623955": 12, "623985": 12, "624015": 12, "624045": 12, "624075": 12, "624105": 12, "624135": 12, "624165": 12, "3099675": 12, "3099645": 12, "3099615": 12, "3099585": 12, "3099555": 12, "3099525": 12, "3099495": 12, "3099465": 12, "3099435": 12, "3099405": 12, "3099375": 12, "3099345": 12, "3099315": 12, "3099285": 12, "3099255": 12, "3099225": 12, "3099195": 12, "3099165": 12, "3099135": 12, "3099105": 12, "3099075": 12, "3099045": 12, "3099015": 12, "3098985": 12, "3098955": 12, "3098925": 12, "3098895": 12, "3098865": 12, "3098835": 12, "3098805": 12, "3098775": 12, "3098745": 12, "3098715": 12, "3098685": 12, "3098655": 12, "3098625": 12, "3098595": 12, "3098565": 12, "3098535": 12, "3098505": 12, "3098475": 12, "3098445": 12, "3098415": 12, "3098385": 12, "3098355": 12, "3098325": 12, "3098295": 12, "3098265": 12, "3098235": 12, "3098205": 12, "3098175": 12, "623400": 12, "3099690": 12, "533": 12, "linewidth": 12, "alpha": 12, "legend_el": 12, "lw": 12, "runtimewarn": 12, "divid": 12, "func": 12, "_execute_task": 12, "cach": 12, "arg": 12, "tempfil": 13, "adlf": 13, "yml": 13, "repo": 13, "reload": 13, "reload_ext": 13, "cpython": 13, "compil": 13, "clang": 13, "darwin": 13, "x86_64": 13, "processor": 13, "i386": 13, "cpu": 13, "architectur": 13, "64bit": 13, "anyon": 13, "earthdata": 13, "login": 13}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"acknowledg": 0, "microsoft": [1, 8], "planetari": [1, 8], "comput": [1, 8, 13], "sentinel": [1, 7], "1": [1, 7, 11], "rtc": [1, 5, 10, 12], "imageri": 1, "learn": [1, 5, 7, 10, 11], "goal": [1, 5, 7, 10], "other": [1, 5, 7, 10, 12], "us": [1, 4, 5, 6, 7, 10, 12], "resourc": [1, 5, 7, 10, 12], "stac": 1, "item": 1, "read": [1, 5, 6, 7, 10, 12], "data": [1, 5, 7, 8, 10, 11, 12, 13], "xarrai": [1, 6], "retriev": 1, "sourc": [1, 10], "granul": [1, 7, 10], "id": [1, 7, 10], "wrap": [1, 5, 6], "up": [1, 5, 6, 10], "refer": 2, "summari": 3, "appendix": 4, "thing": 4, "i": 4, "tri": 4, "didn": 4, "t": 4, "work": 4, "out": 4, "might": 4, "still": 4, "xr": [4, 6, 7], "open_mfdataset": [4, 6, 7], "asf": [5, 7], "process": [5, 8], "inspect": 5, "access": [5, 7, 8, 11], "softwar": [5, 6, 7, 10, 12, 13], "setup": [5, 6, 7, 10, 12], "prepar": [5, 10, 12], "util": [5, 7, 10, 12], "function": [5, 7, 10, 12], "layov": 5, "shadow": 5, "mask": 5, "quick": [5, 7], "visual": [5, 7, 10], "look": [5, 7], "backscatt": [5, 10], "variabl": 5, "handl": [5, 7, 10], "duplic": 5, "time": [5, 10, 12], "step": [5, 10], "approach": [6, 7], "organ": [6, 7, 8, 11], "file": 6, "path": 6, "an": 6, "exampl": [6, 12], "complic": 6, "chunk": [6, 7], "clip": [6, 7, 12], "stack": 6, "aoi": 6, "rioxarrai": 6, "gdal": 7, "vrt": 7, "On": 7, "pro": 7, "con": 7, "virtual": 7, "raster": 7, "format": 7, "vector": [7, 12], "creat": 7, "object": [7, 11], "extract": [7, 10], "metadata": 7, "take": [7, 10], "merg": 7, "add": 7, "anoth": 7, "non": 7, "dimension": 7, "coordin": 7, "slc": 7, "from": [7, 8, 10], "readm": 7, "construct": 7, "orbit": 7, "direct": 7, "coord": 7, "nodata": 7, "valu": 7, "next": 7, "clean": 8, "download": 8, "alaska": 8, "satellit": 8, "facil": 8, "dataset": [9, 10, 11], "comparison": [9, 10, 11], "preliminari": [9, 11], "analysi": [9, 11, 12], "overview": [10, 11], "dem": 10, "common": 10, "subset": 10, "onli": 10, "individu": 10, "averag": 10, "over": 10, "spatial": 10, "resolut": 10, "differ": 10, "break": 10, "asc": 10, "desc": 10, "pass": 10, "introduct": 11, "tutori": 11, "outlin": 11, "chapter": 11, "2": 11, "appli": 12, "seri": 12, "lake": 12, "extent": 12, "environ": 13}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 6, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinxcontrib.bibtex": 9, "sphinx": 56}}) \ No newline at end of file