Skip to content

Releases: ASFHyP3/asf-enumeration

asf-enumeration v0.4.0

10 Oct 20:19
69dd813

Choose a tag to compare

Added

  • Add support for Sentinel-1C.

asf-enumeration v0.3.0

13 Aug 00:02
66d5abf

Choose a tag to compare

Added

  • Add property Sentinel1Acquisition.frame_coverage
  • Add min_frame_coverage parameter to aria_s1_gunw.get_acquisitions to filter by frame overlap

asf-enumeration v0.2.0

29 Jul 22:34
bd46e52

Choose a tag to compare

Added

  • Added a new function aria_s1_gunw.get_product for getting an ARIA product if it exists:
    get_product(
        reference_date: datetime.date | str, secondary_date: datetime.date | str, frame_id: int
    ) -> asf.ASFProduct | None
    

Changed

  • The interface for aria_s1_gunw.product_exists has changed from:
    product_exists(frame: int | AriaFrame, reference_date: datetime.date, secondary_date: datetime.date) -> bool
    
    to:
    product_exists(reference_date: datetime.date | str, secondary_date: datetime.date | str, frame_id: int) -> bool
    
    Fixes #10

Fixed

  • aria_s1_gunw.AriaFrame.does_intersect now returns a bool rather than a numpy.bool so as to match the return type annotation.

asf-enumeration v0.1.0

27 Jun 22:15
e3bcbe1

Choose a tag to compare

Added

  • asf_enumeration module
    • contains aria_s1_gunw module
      • AriaFrame, Sentinel1Acquisition, get_frames, get_frame, get_acquisitions, get_acquisition, product_exists