pycontrails 0.42.0__tar.gz → 0.42.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pycontrails might be problematic. Click here for more details.
- {pycontrails-0.42.0 → pycontrails-0.42.2}/.github/workflows/test.yaml +1 -1
- {pycontrails-0.42.0 → pycontrails-0.42.2}/CHANGELOG.md +29 -1
- {pycontrails-0.42.0/pycontrails.egg-info → pycontrails-0.42.2}/PKG-INFO +2 -1
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/_static/pycontrails.bib +18 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/examples/ACCF.ipynb +2 -2
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/examples/CoCiP.ipynb +12 -12
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/examples/ECMWF.ipynb +80 -106
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/examples/Flight.ipynb +4 -4
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/examples/ISSR.ipynb +6 -22
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/examples/Meteorology.ipynb +91 -107
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/examples/SAC.ipynb +5 -21
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/examples/airports.ipynb +9 -23
- pycontrails-0.42.2/docs/examples/flightplan.ipynb +130 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/examples.rst +6 -0
- pycontrails-0.42.2/docs/tutorials/CoCiP.ipynb +1531 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/_version.py +2 -2
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/cache.py +4 -6
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/datalib.py +5 -2
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/fleet.py +59 -7
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/flight.py +175 -49
- pycontrails-0.42.2/pycontrails/core/flightplan.py +238 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/interpolation.py +11 -15
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/met.py +5 -5
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/models.py +4 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/rgi_cython.c +104 -104
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/vector.py +17 -12
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/datalib/ecmwf/common.py +14 -19
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/ext/bada/__init__.py +6 -6
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/ext/cirium/__init__.py +2 -2
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocip/cocip.py +37 -39
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocip/cocip_params.py +37 -30
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocip/cocip_uncertainty.py +47 -58
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocip/radiative_forcing.py +220 -193
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocip/wake_vortex.py +96 -91
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/humidity_scaling.py +265 -8
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/issr.py +1 -1
- pycontrails-0.42.2/pycontrails/models/quantiles/era5_ensemble_quantiles.npy +0 -0
- pycontrails-0.42.2/pycontrails/models/quantiles/iagos_quantiles.npy +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/sac.py +2 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/physics/geo.py +2 -1
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/utils/json.py +3 -3
- {pycontrails-0.42.0 → pycontrails-0.42.2/pycontrails.egg-info}/PKG-INFO +2 -1
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails.egg-info/SOURCES.txt +5 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails.egg-info/requires.txt +4 -6
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pyproject.toml +7 -6
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/conftest.py +14 -20
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_cocip.py +0 -4
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_cocip_uncertainty.py +3 -7
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_dtypes.py +1 -7
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_flight.py +20 -4
- pycontrails-0.42.2/tests/unit/test_flightplan.py +87 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_humidity_scaling.py +10 -7
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_interpolation.py +2 -2
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_sac_issr.py +1 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_vector.py +1 -1
- pycontrails-0.42.0/docs/tutorials/CoCiP.ipynb +0 -1526
- {pycontrails-0.42.0 → pycontrails-0.42.2}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/.github/pull_request_template.md +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/.github/workflows/benchmark.yaml +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/.github/workflows/docs.yaml +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/.github/workflows/doctest.yaml +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/.github/workflows/release.yaml +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/.gitignore +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/.pre-commit-config.yaml +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/.zenodo.json +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/CONTRIBUTING.md +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/LICENSE +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/Makefile +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/NOTICE +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/README.md +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/RELEASE.md +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/_static/css/style.css +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/_static/img/favicon.png +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/api.rst +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/changelog.rst +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/conf.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/contributing.rst +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/develop.rst +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/examples/Cache.ipynb +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/examples/flight.csv +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/index.rst +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/install.rst +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/literature.rst +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/tutorials/flight.csv +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/docs/tutorials.rst +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/__init__.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/__init__.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/airports.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/coordinates.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/fuel.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/met_var.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/polygon.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/core/rgi_cython.pyx +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/datalib/__init__.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/datalib/ecmwf/__init__.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/datalib/ecmwf/era5.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/datalib/ecmwf/hres.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/datalib/ecmwf/ifs.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/datalib/ecmwf/variables.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/datalib/gfs/__init__.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/datalib/gfs/gfs.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/datalib/gfs/variables.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/datalib/spire/__init__.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/datalib/spire/spire.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/__init__.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/accf.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/aircraft_performance.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocip/__init__.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocip/contrail_properties.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocip/output/__init__.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocip/output/flight_summary.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocip/output/grid_cirrus.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocip/radiative_heating.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocip/wind_shear.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocipgrid/__init__.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocipgrid/cocip_grid.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocipgrid/cocip_grid_params.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/cocipgrid/cocip_time_handling.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/emissions/__init__.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/emissions/black_carbon.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/emissions/emissions.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/emissions/ffm2.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/emissions/static/edb-gaseous-v28c-engines.csv +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/emissions/static/edb-nvpm-v28c-engines.csv +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/pcc.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/pcr.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/models/tau_cirrus.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/physics/__init__.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/physics/constants.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/physics/jet.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/physics/thermo.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/physics/units.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/py.typed +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/utils/__init__.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/utils/iteration.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/utils/synthetic_flight.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/utils/temp.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails/utils/types.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails.egg-info/dependency_links.txt +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/pycontrails.egg-info/top_level.txt +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/setup.cfg +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/setup.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/__init__.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/_deprecated.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/benchmark/cocip/Makefile +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/benchmark/cocip/README.md +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/benchmark/cocip/benchmark.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/benchmark/cocip/compare.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/benchmark/cocip/data.md +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/benchmark/cocip/output.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/benchmark/cocip/review.ipynb +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/benchmark/cocip-fortran/README.md +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/benchmark/north-atlantic-study/.gcloudignore +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/benchmark/north-atlantic-study/README.md +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/benchmark/north-atlantic-study/support.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/benchmark/north-atlantic-study/validate.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/fixtures/cocip-met.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/fixtures/cocip-met2.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/fixtures/ecmwf-met.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/fixtures/gfs-met.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/__init__.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/NOAA_Solar_Calculations_day.csv +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/cocip-contrail-output.json +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/cocip-contrail-output2.json +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/cocip-flight-output.json +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/cocip-flight-output2.json +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/cocip-flight-statistics.json +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/cocip-output-contrail-edges.json +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/cocip-output-grid-cirrus-summary.json +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/flight-cocip2.csv +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/flight-meridian.csv +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/flight-metadata.json +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/flight-spire-data-cleaning.pq +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/flight.csv +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/met-accf-pl.nc +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/met-accf-sl.nc +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/met-ecmwf-pl.nc +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/met-ecmwf-sl.nc +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/met-era5-cocip1.nc +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/met-era5-cocip2.nc +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/met-gfs.nc +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/polygon-bug.nc +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/rad-era5-cocip1.nc +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/rad-era5-cocip2.nc +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/static/rad-gfs.nc +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_accf.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_airports.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_cache.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_cocip_grid.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_cocip_grid_parity.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_cocip_radiative_forcing.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_coordinates.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_datalib.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_ecmwf.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_emissions.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_fleet.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_fuel.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_geo.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_gfs.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_grid_to_netcdf.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_init.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_met.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_met_cache.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_models.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_pcc.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_polygons.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_spire.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_tau_cirrus.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_thermo_sac.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_units.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_utils.py +0 -0
- {pycontrails-0.42.0 → pycontrails-0.42.2}/tests/unit/test_zarr.py +0 -0
|
@@ -87,7 +87,7 @@ jobs:
|
|
|
87
87
|
- name: Install pycontrails (dev)
|
|
88
88
|
run: |
|
|
89
89
|
pip install -U pip wheel
|
|
90
|
-
pip install -e .[dev,docs,ecmwf,gcp,gfs,jupyter,vis,zarr] --verbose
|
|
90
|
+
pip install -e .[dev,docs,ecmwf,gcp,gfs,jupyter,pwlf,vis,zarr] --verbose
|
|
91
91
|
|
|
92
92
|
# In latest-windows, redirecting stdout to a file uses utf-16 encoding
|
|
93
93
|
# This gives an error when ssh tries to read the key
|
|
@@ -1,6 +1,35 @@
|
|
|
1
1
|
|
|
2
2
|
# Changelog
|
|
3
3
|
|
|
4
|
+
## v0.42.1
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
- Add new `HistogramMatchingWithEckel` experimental humidity scaling model. This is still a work in progress.
|
|
9
|
+
- Add new `Flight.fit_altitude` method which uses piecewise linear fitting to smooth a flight profile.
|
|
10
|
+
- Add new `pycontrails.core.flightplan` module for parsing ATC flight plans between string and dictionary representations.
|
|
11
|
+
- Add new [airports](docs/examples/airports.ipynb) and [flightplan](docs/examples/flightplan.ipynb) examples.
|
|
12
|
+
|
|
13
|
+
### Breaking changes
|
|
14
|
+
|
|
15
|
+
- No longer attach empty fields "sdr", "rsr", "olr", "rf_sw", "rf_lw", "rf_net" onto the `source` parameter in `Cocip.eval` when the flight doesn't generate any persistent contrails.
|
|
16
|
+
- Remove params `humidity_scaling`, `rhi_adj_uncertainty`, and `rhi_boost_exponent_uncertainty` from `CocipUncertaintyParams`.
|
|
17
|
+
- Change the default value for `parallel` from True to False in `xr.open_mfdataset`. This can be overridden by setting the `xr_kwargs` parameter in `ERA5.open_metdataset`.
|
|
18
|
+
|
|
19
|
+
### Fixes
|
|
20
|
+
|
|
21
|
+
- Fix a unit test (`test_dtypes.py::test_issr_sac_grid_output`) that occasionally hangs. There may be another test in `test_ecmwf.py` that suffers from the same issue.
|
|
22
|
+
- Fix issue encountered in `Cocip.eval` when concatenating contrails with inconsistent values for `_out_of_bounds`. This is only relevant when running the model with the experimental parameter `interpolation_use_indices=True`.
|
|
23
|
+
- Add a `Fleet.max_distance_gap` property. The previous property on the `Flight` class was not applicable to `Fleet` instances.
|
|
24
|
+
- Fix warning in `Flight` class to correctly suggest adding kwarg `drop_duplicated_times`.
|
|
25
|
+
- Fix an issue in the `VectorDataset` constructor with a `data` parameter of type `pd.DataFrame`. Previously, time data was rewritten to the underlying DataFrame. This could cause copy-on-write issues if the DataFrame was a view of another DataFrame. This is now avoided.
|
|
26
|
+
|
|
27
|
+
### Internals
|
|
28
|
+
|
|
29
|
+
- When possible, replace type hints `np.ndarray` -> `np.typing.NDArray[np.float_]` in the `cocip`, `cocip_params`, `cocip_uncertainty`, `radiative_forcing`, and `wake_vortex` modules.
|
|
30
|
+
- Slight performance enhancements in the `radiative_forcing` module.
|
|
31
|
+
- Change the default value of `u_wind` and `v_wind` from None to 0 in `Flight.segment_true_airspeed`. This makes more sense semantically.
|
|
32
|
+
|
|
4
33
|
## v0.42.0
|
|
5
34
|
|
|
6
35
|
Phase 1 of the Spire datalib, which contains functions to identify unique flight trajectories from the raw Spire ADS-B data.
|
|
@@ -46,7 +75,6 @@ Improve polygon algorithms.
|
|
|
46
75
|
#### Fixes
|
|
47
76
|
|
|
48
77
|
- Use [oldest-supported-numpy](https://pypi.org/project/oldest-supported-numpy/) for building pycontrails wheels. This allows pycontrails to be compatible with environments that use old versions of numpy. The [pycontrails v0.40.0 wheels](https://pypi.org/project/pycontrails/0.40.0/#files) are not compatible with numpy 1.22.
|
|
49
|
-
- Fix a unit test (`test_dtypes.py::test_issr_sac_grid_output`) that occasionally hangs.
|
|
50
78
|
|
|
51
79
|
## v0.40.0
|
|
52
80
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pycontrails
|
|
3
|
-
Version: 0.42.
|
|
3
|
+
Version: 0.42.2
|
|
4
4
|
Summary: Python library for modeling aviation climate impacts
|
|
5
5
|
Author-email: Breakthrough Energy <py@contrails.org>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -32,6 +32,7 @@ Provides-Extra: gcp
|
|
|
32
32
|
Provides-Extra: gfs
|
|
33
33
|
Provides-Extra: jupyter
|
|
34
34
|
Provides-Extra: open3d
|
|
35
|
+
Provides-Extra: pwlf
|
|
35
36
|
Provides-Extra: vis
|
|
36
37
|
Provides-Extra: zarr
|
|
37
38
|
License-File: LICENSE
|
|
@@ -148,6 +148,24 @@
|
|
|
148
148
|
keywords = {Science / Light,Technology \& Engineering / Manufacturing,Technology \& Engineering / Mechanical,Technology \& Engineering / Power Resources / General}
|
|
149
149
|
}
|
|
150
150
|
|
|
151
|
+
@article{eckelCalibratedProbabilisticQuantitative1998,
|
|
152
|
+
title = {Calibrated {{Probabilistic Quantitative Precipitation Forecasts Based}} on {{theMRF Ensemble}}},
|
|
153
|
+
author = {Eckel, F. Anthony and Walters, Michael K.},
|
|
154
|
+
year = {1998},
|
|
155
|
+
month = dec,
|
|
156
|
+
journal = {Weather and Forecasting},
|
|
157
|
+
volume = {13},
|
|
158
|
+
number = {4},
|
|
159
|
+
pages = {1132--1147},
|
|
160
|
+
publisher = {{American Meteorological Society}},
|
|
161
|
+
issn = {1520-0434, 0882-8156},
|
|
162
|
+
doi = {10.1175/1520-0434(1998)013<1132:CPQPFB>2.0.CO;2},
|
|
163
|
+
urldate = {2023-05-12},
|
|
164
|
+
abstract = {Abstract Probabilistic quantitative precipitation forecasts (PQPFs) based on the National Centers for Environmental Prediction Medium-Range Forecast (MRF) ensemble currently perform below their full potential quality (i.e., accuracy and reliability). This unfulfilled potential is due to the MRF ensemble being adversely affected by systematic errors that arise from an imperfect forecast model and less than optimum ensemble initial perturbations. This research sought to construct a calibration to account for these systematic errors and thus produce higher quality PQPFs. The main tool of the calibration was the verification rank histogram, which can be used to interpret and adjust an ensemble forecast. Using a large training dataset, many histograms were created, each characterized by a different forecast lead time and level of ensemble variability. These results were processed into probability surfaces, providing detailed information on performance of the ensemble as part of the calibration scheme. Improvement of the calibrated PQPF over the current uncalibrated PQPF was examined using a separate, large forecasting dataset, with climatological PQPF as the baseline. While the calibration technique noticeably improved the quality of PQPF and extended predictability by about 1 day, its usefulness was bounded by the intrinsic predictability limits of cumulative precipitation. Predictability was found to be dependent upon the precipitation category. For significant levels of precipitation (high thresholds), the calibration designed in this research was found to be useful only for short-range PQPFs. For low precipitation thresholds, the calibrated PQPF did prove to be of value in the medium range.},
|
|
165
|
+
chapter = {Weather and Forecasting},
|
|
166
|
+
langid = {english}
|
|
167
|
+
}
|
|
168
|
+
|
|
151
169
|
@misc{eurocontrolUSERMANUALBASE2010,
|
|
152
170
|
title = {{{USER MANUAL FOR THE BASE OF Aircraft DATA}} ({{BADA}}) {{REVISION}} 3.8},
|
|
153
171
|
author = {Eurocontrol},
|
|
@@ -102,8 +102,8 @@
|
|
|
102
102
|
" variables=[\"surface_solar_downward_radiation\", \"top_net_thermal_radiation\"],\n",
|
|
103
103
|
")\n",
|
|
104
104
|
"\n",
|
|
105
|
-
"pl = era5_pl.open_metdataset(
|
|
106
|
-
"sl = era5_sl.open_metdataset(
|
|
105
|
+
"pl = era5_pl.open_metdataset()\n",
|
|
106
|
+
"sl = era5_sl.open_metdataset()"
|
|
107
107
|
]
|
|
108
108
|
},
|
|
109
109
|
{
|