Source code for s1ard.search

import os
import re
import pandas as pd
from pathlib import Path
from dateutil.parser import parse as dateparse
from packaging.version import Version
from pystac_client import Client
from pystac_client.stac_api_io import StacApiIO
from spatialist.vector import Vector
from shapely.geometry import shape
from pyroSAR import identify_many
from cesard.ancillary import date_to_utc, buffer_time
from cesard.search import asf_select
import logging

log = logging.getLogger('s1ard')


[docs] class STACArchive(object): """ Search for scenes in a SpatioTemporal Asset Catalog. Scenes are expected to be unpacked with a folder suffix .SAFE. The interface is kept consistent with :class:`~s1ard.search.ASFArchive`, :class:`~s1ard.search.STACParquetArchive` and :class:`pyroSAR.drivers.Archive`. Parameters ---------- url: str the catalog URL collections: str or list[str] the catalog collection(s) to be searched timeout: int the allowed timeout in seconds max_retries: int or None the number of times to retry requests. Set to None to disable retries. See Also -------- pystac_client.Client.open pystac_client.stac_api_io.StacApiIO """ def __init__(self, url, collections, timeout=60, max_retries=20): self.url = url self.timeout = timeout self.max_tries = max_retries self._open_catalog() if isinstance(collections, str): self.collections = [collections] elif isinstance(collections, list): self.collections = collections else: raise TypeError("'collections' must be of type str or list") def __enter__(self): return self def __exit__(self, exc_type, exc_val, exc_tb): self.close() def _filter_duplicates(self, values): tmp = sorted(values, key=lambda x: os.path.basename(x[-2])) pattern = '([0-9A-Z_]{16})_([0-9T]{15})_([0-9T]{15})' keep = [] i = 0 while i < len(tmp): group = [tmp[i]] base = os.path.basename(tmp[i][-2]) match1 = re.search(pattern, base).groups() j = i + 1 while j < len(tmp): base = os.path.basename(tmp[j][-2]) match2 = re.search(pattern, base).groups() if match1 == match2: group.append(tmp[j]) j += 1 else: break if len(group) > 1: tproc = [x[-1] for x in group] keep.append(group[tproc.index(max(tproc))]) else: keep.append(group[0]) i = j return keep def _open_catalog(self): stac_api_io = StacApiIO(max_retries=self.max_tries) self.catalog = Client.open(url=self.url, stac_io=stac_api_io, timeout=self.timeout)
[docs] def close(self): del self.catalog
[docs] def select(self, sensor=None, product=None, acquisition_mode=None, mindate=None, maxdate=None, frameNumber=None, vectorobject=None, date_strict=True, check_exist=True, return_value="scene"): """ Select scenes from the catalog. Duplicates (same acquisition time) are filtered by returning only the last processed product. Used STAC property keys: - platform - start_datetime - end_datetime - created - sar:instrument_mode - sar:product_type - s1:datatake (custom) Parameters ---------- sensor: str or list[str] or None S1A | S1B | S1C | S1D product: str or list[str] or None GRD | SLC acquisition_mode: str or list[str] or None IW | EW | SM mindate: str or datetime.datetime or None the minimum acquisition date; timezone-unaware dates are interpreted as UTC. maxdate: str or datetime.datetime or None the maximum acquisition date; timezone-unaware dates are interpreted as UTC. frameNumber: int or str or list[int or str] or None the data take ID in decimal (int) or hexadecimal (str) representation. Requires custom STAC key `s1:datatake`. vectorobject: spatialist.vector.Vector or None a geometry with which the scenes need to overlap. The object may only contain one feature. date_strict: bool treat dates as strict limits or also allow flexible limits to incorporate scenes whose acquisition period overlaps with the defined limit? - strict: start >= mindate & stop <= maxdate - not strict: stop >= mindate & start <= maxdate check_exist: bool check whether found files exist locally? return_value: str or List[str] the query return value(s). Options: - acquisition_mode: the sensor's acquisition mode, e.g., IW, EW, SM - frameNumber: the frame or datatake number - geometry_wkb: the scene's footprint geometry formatted as WKB - geometry_wkt: the scene's footprint geometry formatted as WKT - mindate: the acquisition start datetime in UTC formatted as YYYYmmddTHHMMSS - maxdate: the acquisition end datetime in UTC formatted as YYYYmmddTHHMMSS - product: the product type, e.g., SLC, GRD - scene: the scene's storage location path (default) - sensor: the satellite platform, e.g., S1A or S1B Returns ------- list or list[tuple] If a single return_value is specified: list of values If multiple return_values are specified: list of tuples containing the requested values See Also -------- pystac_client.Client.search """ pars = locals() del pars['date_strict'] del pars['check_exist'] del pars['return_value'] del pars['self'] if isinstance(return_value, str): return_values = [return_value] else: return_values = return_value lookup = {'product': 'sar:product_type', 'acquisition_mode': 'sar:instrument_mode', 'mindate': 'start_datetime', 'maxdate': 'end_datetime', 'sensor': 'platform', 'frameNumber': 's1:datatake'} lookup_platform = { 'S1A': 'sentinel-1a', 'S1B': 'sentinel-1b', 'S1C': 'sentinel-1c', 'S1D': 'sentinel-1Dd' } lookup_platform_reverse = {value: key for key, value in lookup_platform.items()} args = {'datetime': [None, None]} flt = {'op': 'and', 'args': []} for key in pars.keys(): val = pars[key] if val is None: continue if key in ['mindate', 'maxdate']: val = date_to_utc(val, str_format='%Y-%m-%dT%H:%M:%SZ') if key == 'mindate': args['datetime'][0] = val if date_strict: arg = {'op': '>=', 'args': [{'property': 'start_datetime'}, val]} else: arg = {'op': '>=', 'args': [{'property': 'end_datetime'}, val]} flt['args'].append(arg) elif key == 'maxdate': args['datetime'][1] = val if date_strict: arg = {'op': '<=', 'args': [{'property': 'end_datetime'}, val]} else: arg = {'op': '<=', 'args': [{'property': 'start_datetime'}, val]} flt['args'].append(arg) elif key == 'vectorobject': if isinstance(val, Vector): if val.nfeatures > 1: raise RuntimeError("'vectorobject' may only contain one feature") with val.clone() as vec: vec.reproject(4326) feat = vec.getFeatureByIndex(0) json = feat.ExportToJson(as_object=True)['geometry'] feat = None args['intersects'] = json else: raise TypeError('argument vectorobject must be of type spatialist.vector.Vector') else: if isinstance(val, (str, int)): val = [val] val_format = [] for v in val: if key == 'sensor': v = lookup_platform[v] if key == 'frameNumber' and isinstance(v, int): v = '{:06X}'.format(v) # convert to hexadecimal val_format.append(v) if len(val_format) == 1: arg = {'op': '=', 'args': [{'property': lookup[key]}, val_format[0]]} else: arg = {'op': 'in', 'args': [{'property': lookup[key]}, val_format]} flt['args'].append(arg) if len(flt['args']) == 0: flt = None if args['datetime'] == [None, None]: args['datetime'] = None result = self.catalog.search(collections=self.collections, filter=flt, max_items=None, **args) result = list(result.items()) out = [] for item in result: assets = item.assets ref = assets[list(assets.keys())[0]] href = ref.href scene = href[:re.search(r'\.SAFE', href).end()] scene = re.sub('^file://', '', scene) if Path(scene).exists(): scene = os.path.realpath(scene) else: if check_exist: raise RuntimeError('scene does not exist locally:', scene) # prepare return values values = [] for key in return_values: if key == "scene": values.append(scene) elif key in lookup.keys(): value = item.properties[lookup[key]] if key in ['mindate', 'maxdate']: value = dateparse(value).strftime('%Y%m%dT%H%M%S') if key == 'sensor': value = lookup_platform_reverse[value] values.append(value) # reverse coordinate order to be consistent with ASF return elif key == "geometry_wkt": values.append(shape(item.geometry).wkt) elif key == "geometry_wkb": values.append(shape(item.geometry).wkb) else: raise ValueError(f"Invalid return value: {key}") values.append(scene) created = dateparse(item.properties['created']) values.append(created) out.append(values) out = self._filter_duplicates(out) def reduce(i): o = i[:-2] return o[0] if len(o) == 1 else tuple(o) out = [reduce(x) for x in out] return out
[docs] class STACParquetArchive(object): """ Search for scenes in STAC geoparquet dump. Scenes are expected to be unpacked with a folder suffix .SAFE. The interface is kept consistent with :class:`~s1ard.search.ASFArchive`, :class:`~s1ard.search.STACArchive` and :class:`pyroSAR.drivers.Archive`. Parameters ---------- files: str the file search pattern, e.g. `/path/to/*parquet` """ def __init__(self, files): self.files = files def __enter__(self): return self def __exit__(self, exc_type, exc_val, exc_tb): return @staticmethod def _filter_antimeridian(df): # The geometry of scenes crossing the antimeridian is stored as multipolygon. out = df[df["geometry_wkt"].str.startswith("POLYGON")] if len(out) < len(df): log.debug(f'removed {len(df) - len(out)} ' f'scene(s) crossing the antimeridian') return out @staticmethod def _filter_duplicates(values: pd.DataFrame) -> pd.DataFrame: """ Filter duplicate entries from the search result based on slicing semantics, product type and processing history. The filtering logic distinguishes between three different slicing regimes for applying deduplication: 1. Unsliced datatakes - `slice_number` is missing / NA - These datatakes are treated as single, indivisible units. - No deduplication is currently applied (future logic may use acquisition-time overlap instead). - example: S1C_003EAB 2025-04-19 2. NRT slicing (near–real-time slicing) - `slice_number == 0` and `total_slices == 0` - NRT products are kept unless the same datatake is later processed with proper slicing, in which case obsolete NRT products are removed. 3. Regular slicing - `slice_number` is defined and not part of the NRT case - True slicing where each slice is a distinct logical product. - If multiple products exist for the same slice, the one having the dominant product type and processed last is kept. Parameters ---------- values: Search result table containing at least the following columns: - sensor - frameNumber - slice_number - total_slices - processing_date Returns ------- Filtered DataFrame with obsolete duplicate rows removed. """ dt_dtype = values["processing_date"].dtype ####################################################################### # add the product type as separate column, e.g. 'S1A_IW_GRDH_1SDV' # it can happen that multiple product types are present in a datatake: # e.g. S1A_IW_GRDH_1SDV and S1A_IW_GRDH_1SVH in S1A_03250 (2014-10-12) def product_type(scene: pd.Series) -> pd.Series: return scene.map(lambda s: Path(s).name[:16]) values["_product_type"] = product_type(values["scene"]) ####################################################################### # Classify each row into one of the slicing regimes. nrt_sliced = (values["slice_number"] == 0) & (values["total_slices"] == 0) unsliced = values["slice_number"].isna() # Example: S1C 03EAB (2025-04-19) sliced = ~(nrt_sliced | unsliced) ####################################################################### # Define grouping keys: # - datatake_keys: Identify a datatake independent of slicing # - dup_keys: Identify a specific slice of a datatake datatake_keys = ["sensor", "frameNumber"] dup_keys = ["sensor", "frameNumber", "slice_number", "total_slices"] # total_slices is included as deduplication key because some datatakes # are split and slice_number and total_slices reset at the split. # Example: S1C 05429 (2025-05-28) ####################################################################### # determine the dominant product type values["_dominant_product_type"] = ( values.loc[sliced] .groupby(datatake_keys)["_product_type"] .transform(lambda s: s.value_counts().idxmax()) ) # is the product type compatible with the dominant one? type_compatible = ( values["_product_type"] == values["_dominant_product_type"] ) ####################################################################### # Determine whether a datatake ever has proper slicing. # This is used to decide whether NRT products should be considered # obsolete (i.e. superseded by later properly sliced processing). # The result is a boolean Series aligned to the full DataFrame index. has_proper_slices = ( values.assign(_sliced=sliced) .groupby(datatake_keys)["_sliced"] .transform("any") .reindex(values.index) ) ####################################################################### # For datatakes with proper slicing, compute the most recent # processing date of any sliced product belonging to that datatake. # This is later used to decide whether an NRT product is obsolete # relative to a newer sliced processing. # Preallocating the Series with the correct datetime dtype avoids # timezone-related assignment issues. latest_sliced_per_dt = pd.Series(pd.NaT, index=values.index, dtype=dt_dtype) latest_sliced_per_dt.loc[sliced] = ( values.loc[sliced] .groupby(datatake_keys)["processing_date"] .transform("max") ) ####################################################################### # Identify NRT products to drop. # An NRT product is dropped if: # - it is an NRT slice # - the same datatake also has proper slicing # # Note: it can be that the NRT slicing was processed last. In this case the # products with the regular slicing are kept. Example: S1A_031E00. drop_nrt = nrt_sliced & has_proper_slices ####################################################################### # Prepare helper Series for deduplicating properly sliced data. # - `latest`: Holds the most recent processing date per slice # - `has_duplicate`: Flags slice groups that appear more than once # Both Series are preallocated to the full index to guarantee # alignment-safe boolean logic. latest = pd.Series(pd.NaT, index=values.index, dtype=dt_dtype) has_duplicate = pd.Series(False, index=values.index) ####################################################################### # For properly sliced data, compute the most recent processing # date per (sensor, frameNumber, slice_number). latest.loc[sliced] = ( values.loc[sliced] .groupby(dup_keys)["processing_date"] .transform("max") ) ####################################################################### # Identify slice groups that actually contain duplicates. # Only slices that appear more than once are candidates for # deduplication; unique slices are always kept. has_duplicate.loc[sliced] = ( values.loc[sliced] .groupby(dup_keys)["processing_date"] .transform("size") .gt(1) ) ####################################################################### # Drop sliced products where: # - the product is properly sliced # - the slice has duplicates # - the processing is NOT the most recent one for that slice # - the product type is not the dominant one best_idx = ( values.loc[sliced & type_compatible] .sort_values("processing_date") .groupby(dup_keys) .tail(1) .index ) drop_sliced = ( sliced & has_duplicate & ~values.index.isin(best_idx) ) ####################################################################### # Summary logging # Datatakes affected by obsolete NRT products nrt_affected = ( values.loc[drop_nrt, datatake_keys] .drop_duplicates() ) nrt_affected = [f"{r.sensor}_{r.frameNumber}" for r in nrt_affected.itertuples(index=False)] if len(nrt_affected) > 0: log.debug(f'datatakes affected by NRT slicing: {nrt_affected}') # Datatakes affected by slice deduplication sliced_affected = ( values.loc[drop_sliced, datatake_keys] .drop_duplicates() ) sliced_affected = [f"{r.sensor}_{r.frameNumber}" for r in sliced_affected.itertuples(index=False)] if len(sliced_affected) > 0: print('regularly sliced datatakes affected by duplication:', sliced_affected) ####################################################################### # Combine both deletion rules (obsolete NRT + slice duplicates) # and remove all marked rows in one bulk operation. to_drop = values.index[drop_nrt | drop_sliced] out = values.drop(index=to_drop) log.debug(f"removed {len(to_drop)} duplicate(s)") return out
[docs] def close(self): pass
[docs] def select(self, sensor=None, product=None, acquisition_mode=None, mindate=None, maxdate=None, frameNumber=None, vectorobject=None, date_strict=True, return_value='scene', filter_antimeridian=True, filter_duplicates=True): """ Select scenes from a STAC catalog's geoparquet dump. Used STAC property keys: - platform - start_datetime - end_datetime - sar:instrument_mode - sar:product_type - s1:datatake (custom) - s1:slice_number (custom) - s1:total_slices (custom) - s1:processing_date (custom) Parameters ---------- sensor: str or list[str] or None S1A | S1B | S1C | S1D product: str or list[str] or None GRD | SLC acquisition_mode: str or list[str] or None IW | EW | SM mindate: str or datetime.datetime or None the minimum acquisition date; timezone-unaware dates are interpreted as UTC. maxdate: str or datetime.datetime or None the maximum acquisition date; timezone-unaware dates are interpreted as UTC. frameNumber: int or str or list[int or str] or None the data take ID in decimal (int) or hexadecimal (str) representation. Requires custom STAC key `s1:datatake`. vectorobject: spatialist.vector.Vector or None a geometry with which the scenes need to overlap date_strict: bool treat dates as strict limits or also allow flexible limits to incorporate scenes whose acquisition period overlaps with the defined limit? - strict: start >= mindate & stop <= maxdate - not strict: stop >= mindate & start <= maxdate return_value: str or List[str] the query return value(s). Options: - acquisition_mode: the sensor's acquisition mode, e.g., IW, EW, SM - frameNumber: the frame or datatake number - geometry_wkb: the scene's footprint geometry formatted as WKB - geometry_wkt: the scene's footprint geometry formatted as WKT - mindate: the acquisition start datetime in UTC formatted as YYYYmmddTHHMMSS - maxdate: the acquisition end datetime in UTC formatted as YYYYmmddTHHMMSS - product: the product type, e.g., SLC, GRD - scene: the scene's storage location path (default) - sensor: the satellite platform, e.g., S1A or S1B - slice_number: the slice number (position) in the datatake - total_slices: the number of slices (products) in the datatake - processing_date: the processing datetime in UTC formatted as YYYYmmddTHHMMSS filter_antimeridian: bool remove scenes crossing the antimeridian filter_duplicates: bool Sentinel-1 scenes are often reprocessed. With this, duplicates can be filtered out. Returns ------- List[str] or List[tuple[str]] the selected return value(s). Depending on whether a single or multiple values have been defined for `return_value`, the returned list will contain strings or tuples. See Also -------- stac_geoparquet.arrow.to_parquet duckdb.query """ pars = locals() del pars['self'] del pars['date_strict'] del pars['return_value'] del pars['filter_antimeridian'] del pars['filter_duplicates'] try: import duckdb except ImportError: raise ImportError("this method requires 'duckdb>=1.1.1' to be installed") ddb_version = Version(duckdb.__version__) ddb_version_req = Version('1.1.1') if ddb_version < ddb_version_req: raise ImportError("duckdb version must be >= 1.1.1") duckdb.install_extension('spatial') duckdb.load_extension('spatial') lookup = { 'product': 'sar:product_type', 'acquisition_mode': 'sar:instrument_mode', 'mindate': 'start_datetime', 'maxdate': 'end_datetime', 'sensor': 'platform', 'frameNumber': 's1:datatake', 'slice_number': 's1:slice_number', 'total_slices': 's1:total_slices', 'processing_date': 's1:processing_date' } lookup_platform = {'S1A': 'sentinel-1a', 'S1B': 'sentinel-1b', 'S1C': 'sentinel-1c', 'S1D': 'sentinel-1d'} return_value_mapping = { "geometry_wkb": "ST_AsWKB(geometry)", "geometry_wkt": "ST_AsText(geometry)", "mindate": f"STRFTIME({lookup['mindate']} AT TIME ZONE 'UTC', '%Y%m%dT%H%M%S')", "maxdate": f"STRFTIME({lookup['maxdate']} AT TIME ZONE 'UTC', '%Y%m%dT%H%M%S')", "scene": "replace(json_extract_string(assets::json, '$.folder.href'), 'file://', '')" } for k, v in lookup.items(): if k not in return_value_mapping: return_value_mapping[k] = f"\"{lookup[k]}\"" return_values = return_value if isinstance(return_value, list) else [return_value] for return_value in return_values: if return_value not in return_value_mapping: raise ValueError(f"unsupported return value '{return_value}'.\n" f"supported options: {list(return_value_mapping.keys())}") return_values_search = return_values.copy() for key in ['geometry_wkt', 'processing_date', 'slice_number', 'total_slices', 'sensor', 'frameNumber', 'scene']: if key not in return_values: return_values_search.append(key) terms = [] for key in pars.keys(): val = pars[key] if val is None: continue if key in ['mindate', 'maxdate']: val = date_to_utc(val, str_format='%Y-%m-%dT%H:%M:%SZ') if key == 'mindate': if date_strict: terms.append(f'"start_datetime" >= \'{val}\'') else: terms.append(f'"end_datetime" >= \'{val}\'') elif key == 'maxdate': if date_strict: terms.append(f'"end_datetime" <= \'{val}\'') else: terms.append(f'"start_datetime" <= \'{val}\'') elif key == 'vectorobject': if isinstance(val, Vector): if val.nfeatures > 1: raise RuntimeError("'vectorobject' may only contain one feature") with val.clone() as tmp: tmp.reproject(4326) wkt = tmp.convert2wkt(set3D=False)[0] terms.append(f'ST_Intersects(geometry, ' f'ST_GeomFromText(\'{wkt}\'))') else: raise TypeError('argument vectorobject must be of type spatialist.vector.Vector') else: if isinstance(val, (str, int)): val = [val] val_format = [] for v in val: if key == 'sensor': v = lookup_platform[v] if key == 'frameNumber' and isinstance(v, int): v = '{:06X}'.format(v) # convert to hexadecimal val_format.append(v) if len(val_format) == 1: subterm = f'"{lookup[key]}" = \'{val_format[0]}\'' else: subterm = f'"{lookup[key]}" IN {tuple(val_format)}' terms.append(subterm) sql_where = ' AND '.join(terms) sql_return_value = ", ".join([f'{return_value_mapping[x]} as {x}' for x in return_values_search]) sql_query = f""" SELECT {sql_return_value} FROM '{self.files}' WHERE {sql_where} """ result = duckdb.query(sql_query).df() lookup_platform_rev = {value: key for key, value in lookup_platform.items()} result.replace(to_replace={'sensor': lookup_platform_rev}, inplace=True) # Ensure `processing_date` is a proper datetime dtype. result["processing_date"] = pd.to_datetime(result["processing_date"]) if filter_antimeridian: result = self._filter_antimeridian(result) if filter_duplicates: result = self._filter_duplicates(result) # reduce the return values to those defined by the user result = result[return_values] # return the result if len(return_values) == 1: return list(result.iloc[:, 0]) else: return list(result.itertuples(index=False, name=None))
[docs] def collect_neighbors(archive, scene, stac_check_exist=True): """ Collect a scene's neighboring acquisitions in a data take. Parameters ---------- archive: pyroSAR.drivers.Archive or STACArchive or STACParquetArchive or ASFArchive an open scene archive connection scene: pyroSAR.drivers.ID the Sentinel-1 scene to be checked stac_check_exist: bool if `archive` is of type :class:`STACArchive`, check the local existence of the scenes? Returns ------- list[str] the filenames/URLs of the neighboring scenes """ start, stop = buffer_time(scene.start, scene.stop, seconds=2) kwargs = {'mindate': start, 'maxdate': stop, 'date_strict': False, 'sensor': scene.sensor, 'product': scene.product, 'acquisition_mode': scene.acquisition_mode, 'return_value': ['scene', 'mindate', 'maxdate']} if isinstance(archive, STACArchive): kwargs['check_exist'] = stac_check_exist selection = archive.select(**kwargs) neighbors = [x for x in selection if x[1] != scene.start] if len(neighbors) > 2: # more than two neighbors can exist if multiple versions of the # datatake with different slicing exist. start_ref = dateparse(scene.start) stop_ref = dateparse(scene.stop) start_diff = [] stop_diff = [] for neighbor, start, stop in neighbors: start_diff.append(abs(start_ref - dateparse(stop))) stop_diff.append(abs(stop_ref - dateparse(start))) predecessor = neighbors[start_diff.index(min(start_diff))] successor = neighbors[stop_diff.index(min(stop_diff))] neighbors = [predecessor, successor] neighbors = [x[0] for x in neighbors] for i, neighbor in enumerate(neighbors): log.debug(f'neighbor {i + 1}/{len(neighbors)}: {neighbor}') return neighbors
[docs] def check_acquisition_completeness(archive, scenes): """ Check presence of neighboring acquisitions. Check that for each scene a predecessor and successor can be queried from the database unless the scene is at the start or end of the data take. This ensures that no scene that could be covering an area of interest is missed during processing. In case a scene is suspected to be missing, the Alaska Satellite Facility (ASF) online catalog is cross-checked. An error will only be raised if the locally missing scene is present in the ASF catalog. It may happen that a neighbor is missing and this error is not raised if the scene is also missing on ASF. Parameters ---------- archive: pyroSAR.drivers.Archive or STACArchive an open scene archive connection scenes: list[pyroSAR.drivers.ID] a list of scenes Returns ------- Raises ------ RuntimeError See Also -------- s1ard.search.asf_select """ messages = [] for scene in scenes: log.debug(f'checking acquisition completeness for scene {scene.scene}') slice = scene.meta['sliceNumber'] n_slices = scene.meta['totalSlices'] groupsize = 3 has_successor = True has_predecessor = True start, stop = buffer_time(scene.start, scene.stop, seconds=2) ref = None if slice == 0 or n_slices == 0: # NRT slicing mode ref = asf_select(sensor=scene.sensor, product=scene.product, acquisition_mode=scene.acquisition_mode, mindate=start, maxdate=stop, return_value='scene') if len(ref) > 0: ref = [os.path.basename(x).replace('.zip', '.SAFE') for x in ref] match = [re.search(scene.pattern, x).groupdict() for x in ref] ref_start_min = min([x['start'] for x in match]) ref_stop_max = max([x['stop'] for x in match]) if ref_start_min == scene.start: groupsize -= 1 has_predecessor = False if ref_stop_max == scene.stop: groupsize -= 1 has_successor = False else: # don't assume neighbors if no products could be found of ASF has_successor = has_predecessor = False else: if slice == 1: # first slice in the data take groupsize -= 1 has_predecessor = False if slice == n_slices: # last slice in the data take groupsize -= 1 has_successor = False # Do another database selection to get the scene in question as well as its potential # predecessor and successor by adding an acquisition time buffer of two seconds. group = archive.select(sensor=scene.sensor, product=scene.product, acquisition_mode=scene.acquisition_mode, mindate=start, maxdate=stop, date_strict=False) group = identify_many(group) # if the number of selected scenes is lower than the expected group size, # check whether the predecessor, the successor or both are missing by # cross-checking with the ASF database. if len(group) < groupsize: if ref is None: ref = asf_select(sensor=scene.sensor, product=scene.product, acquisition_mode=scene.acquisition_mode, mindate=start, maxdate=stop, return_value='scene') if len(ref) > 0: ref = [os.path.basename(x).replace('.zip', '.SAFE') for x in ref] match = [re.search(scene.pattern, x).groupdict() for x in ref] ref_start_min = min([x['start'] for x in match]) ref_stop_max = max([x['stop'] for x in match]) start_min = min([x.start for x in group]) stop_max = max([x.stop for x in group]) missing = [] if ref_start_min < start < start_min and has_predecessor: missing.append('predecessor') if stop_max < stop < ref_stop_max and has_successor: missing.append('successor') if len(missing) > 0: base = os.path.basename(scene.scene) messages.append(f'{" and ".join(missing)} acquisition for scene {base}') if len(messages) != 0: text = '\n - '.join(messages) raise RuntimeError(f'missing the following scenes:\n - {text}')