flight_collection module
Collection of Data to Science flights associated with a project.
Source code in d2spy/models/flight_collection.py
filter_by_date(start_date, end_date)
¶
Returns list of flights with at least one flight within the date range.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
start_date |
date
|
Starting date for the flight acquisition date range. |
required |
end_date |
date
|
Ending date for the flight acquisition date range. |
required |
Returns:
Type | Description |
---|---|
FlightCollection
|
List[Flight]: List of flights with a flight within the date range. |