level1c4pps 0.2.38__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.
- level1c4pps-0.2.38/.bumpversion.cfg +4 -0
- level1c4pps-0.2.38/.coveragerc +14 -0
- level1c4pps-0.2.38/.git_archival.txt +4 -0
- level1c4pps-0.2.38/.gitattributes +1 -0
- level1c4pps-0.2.38/.github/ISSUE_TEMPLATE.md +19 -0
- level1c4pps-0.2.38/.github/PULL_REQUEST_TEMPLATE.md +7 -0
- level1c4pps-0.2.38/.github/workflows/ci.yaml +91 -0
- level1c4pps-0.2.38/.github/workflows/deploy-sdist.yaml +25 -0
- level1c4pps-0.2.38/.gitignore +7 -0
- level1c4pps-0.2.38/.landscape.yaml +11 -0
- level1c4pps-0.2.38/.stickler.yml +3 -0
- level1c4pps-0.2.38/AUTHORS.md +12 -0
- level1c4pps-0.2.38/CHANGELOG.md +191 -0
- level1c4pps-0.2.38/LICENSE.txt +674 -0
- level1c4pps-0.2.38/PKG-INFO +39 -0
- level1c4pps-0.2.38/README.md +20 -0
- level1c4pps-0.2.38/RELEASING.md +51 -0
- level1c4pps-0.2.38/bin/avhrr2pps.py +44 -0
- level1c4pps-0.2.38/bin/eumgacfdr2pps.py +58 -0
- level1c4pps-0.2.38/bin/gac2pps.py +69 -0
- level1c4pps-0.2.38/bin/isccpng2pps.py +55 -0
- level1c4pps-0.2.38/bin/mersi22pps.py +45 -0
- level1c4pps-0.2.38/bin/mersi2pps.py +45 -0
- level1c4pps-0.2.38/bin/metimage2pps.py +56 -0
- level1c4pps-0.2.38/bin/modis2pps.py +51 -0
- level1c4pps-0.2.38/bin/seviri2pps.py +68 -0
- level1c4pps-0.2.38/bin/slstr2pps.py +51 -0
- level1c4pps-0.2.38/bin/vgac2pps.py +60 -0
- level1c4pps-0.2.38/bin/viirs2pps.py +57 -0
- level1c4pps-0.2.38/continuous_integration/environment.yaml +20 -0
- level1c4pps-0.2.38/level1c4pps/__init__.py +602 -0
- level1c4pps-0.2.38/level1c4pps/avhrr2pps_lib.py +132 -0
- level1c4pps-0.2.38/level1c4pps/calibration_coefs.py +204 -0
- level1c4pps-0.2.38/level1c4pps/eumgacfdr2pps_lib.py +247 -0
- level1c4pps-0.2.38/level1c4pps/gac2pps_lib.py +168 -0
- level1c4pps-0.2.38/level1c4pps/isccpng2pps_lib.py +276 -0
- level1c4pps-0.2.38/level1c4pps/mersi2pps_lib.py +133 -0
- level1c4pps-0.2.38/level1c4pps/metimage2pps_lib.py +178 -0
- level1c4pps-0.2.38/level1c4pps/modis2pps_lib.py +156 -0
- level1c4pps-0.2.38/level1c4pps/seviri2pps_lib.py +687 -0
- level1c4pps-0.2.38/level1c4pps/slstr2pps_lib.py +140 -0
- level1c4pps-0.2.38/level1c4pps/tests/AVHRR-GAC_FDR_1C_N06_19810330T042358Z_19810330T060903Z_R_O_20200101T000000Z_0100.nc +0 -0
- level1c4pps-0.2.38/level1c4pps/tests/NSS.GHRR.TN.D80003.S1147.E1332.B0630506.GC +0 -0
- level1c4pps-0.2.38/level1c4pps/tests/TIR_calib_MSG2_IR_039.json +1 -0
- level1c4pps-0.2.38/level1c4pps/tests/TIR_calib_MSG2_IR_087.json +1 -0
- level1c4pps-0.2.38/level1c4pps/tests/TIR_calib_MSG2_IR_097.json +1 -0
- level1c4pps-0.2.38/level1c4pps/tests/TIR_calib_MSG2_IR_108.json +1 -0
- level1c4pps-0.2.38/level1c4pps/tests/TIR_calib_MSG2_IR_120.json +1 -0
- level1c4pps-0.2.38/level1c4pps/tests/TIR_calib_MSG2_IR_134.json +1 -0
- level1c4pps-0.2.38/level1c4pps/tests/TIR_calib_MSG2_WV_062.json +1 -0
- level1c4pps-0.2.38/level1c4pps/tests/TIR_calib_MSG2_WV_073.json +1 -0
- level1c4pps-0.2.38/level1c4pps/tests/TLE_tirosn.txt +2 -0
- level1c4pps-0.2.38/level1c4pps/tests/VGAC_VJ102MOD_A2018305_1042_n004946_K005.nc +0 -0
- level1c4pps-0.2.38/level1c4pps/tests/VGAC_VNPP02MOD_A2012365_2304_n06095_K005.nc +0 -0
- level1c4pps-0.2.38/level1c4pps/tests/__init__.py +48 -0
- level1c4pps-0.2.38/level1c4pps/tests/test_angles.py +119 -0
- level1c4pps-0.2.38/level1c4pps/tests/test_avhrr2pps.py +114 -0
- level1c4pps-0.2.38/level1c4pps/tests/test_eumgacfdr2pps.py +136 -0
- level1c4pps-0.2.38/level1c4pps/tests/test_gac2pps.py +179 -0
- level1c4pps-0.2.38/level1c4pps/tests/test_init.py +55 -0
- level1c4pps-0.2.38/level1c4pps/tests/test_mersi2pps.py +120 -0
- level1c4pps-0.2.38/level1c4pps/tests/test_modis2pps.py +114 -0
- level1c4pps-0.2.38/level1c4pps/tests/test_seviri2pps.py +713 -0
- level1c4pps-0.2.38/level1c4pps/tests/test_slstr2pps.py +98 -0
- level1c4pps-0.2.38/level1c4pps/tests/test_vgac2pps.py +234 -0
- level1c4pps-0.2.38/level1c4pps/tests/test_viirs2pps.py +101 -0
- level1c4pps-0.2.38/level1c4pps/vgac2pps_lib.py +857 -0
- level1c4pps-0.2.38/level1c4pps/viirs2pps_lib.py +181 -0
- level1c4pps-0.2.38/level1c4pps.egg-info/PKG-INFO +39 -0
- level1c4pps-0.2.38/level1c4pps.egg-info/SOURCES.txt +75 -0
- level1c4pps-0.2.38/level1c4pps.egg-info/dependency_links.txt +1 -0
- level1c4pps-0.2.38/level1c4pps.egg-info/not-zip-safe +1 -0
- level1c4pps-0.2.38/level1c4pps.egg-info/requires.txt +11 -0
- level1c4pps-0.2.38/level1c4pps.egg-info/top_level.txt +1 -0
- level1c4pps-0.2.38/setup.cfg +17 -0
- level1c4pps-0.2.38/setup.py +83 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.git_archival.txt export-subst
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
#### Code Sample, a minimal, complete, and verifiable piece of code
|
|
2
|
+
|
|
3
|
+
```python
|
|
4
|
+
# Your code here
|
|
5
|
+
|
|
6
|
+
```
|
|
7
|
+
#### Problem description
|
|
8
|
+
|
|
9
|
+
[this should also explain **why** the current behaviour is a problem and why the
|
|
10
|
+
expected output is a better solution.]
|
|
11
|
+
|
|
12
|
+
#### Expected Output
|
|
13
|
+
|
|
14
|
+
#### Actual Result, Traceback if applicable
|
|
15
|
+
|
|
16
|
+
#### Versions of Python, package at hand and relevant dependencies
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
Thank you for reporting an issue !
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<!-- Describe what your PR does, and why -->
|
|
2
|
+
|
|
3
|
+
- [ ] Closes #xxxx <!-- remove if there is no corresponding issue
|
|
4
|
+
- [ ] Tests added <!-- for all bug fixes or enhancements -->
|
|
5
|
+
- [ ] Tests passed: Passes ``pytest level1c4pps`` <!-- for all non-documentation changes) -->
|
|
6
|
+
- [ ] Passes ``flake8`` <!-- remove if you did not edit any Python files -->
|
|
7
|
+
- [ ] Add your name to `AUTHORS.md` if not there already
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on: [push, pull_request]
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
test:
|
|
7
|
+
runs-on: ${{ matrix.os }}
|
|
8
|
+
continue-on-error: ${{ matrix.experimental }}
|
|
9
|
+
strategy:
|
|
10
|
+
fail-fast: true
|
|
11
|
+
matrix:
|
|
12
|
+
os: ["ubuntu-latest", "macos-latest"]
|
|
13
|
+
python-version: ["3.9", "3.11", "3.12"]
|
|
14
|
+
experimental: [false]
|
|
15
|
+
include:
|
|
16
|
+
- python-version: "3.13"
|
|
17
|
+
os: "ubuntu-latest"
|
|
18
|
+
experimental: true
|
|
19
|
+
|
|
20
|
+
env:
|
|
21
|
+
PYTHON_VERSION: ${{ matrix.python-version }}
|
|
22
|
+
OS: ${{ matrix.os }}
|
|
23
|
+
UNSTABLE: ${{ matrix.experimental }}
|
|
24
|
+
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
|
|
25
|
+
|
|
26
|
+
steps:
|
|
27
|
+
- name: Checkout source
|
|
28
|
+
uses: actions/checkout@v3
|
|
29
|
+
|
|
30
|
+
- name: Setup Conda Environment
|
|
31
|
+
uses: conda-incubator/setup-miniconda@v3
|
|
32
|
+
with:
|
|
33
|
+
miniforge-version: latest
|
|
34
|
+
python-version: ${{ matrix.python-version }}
|
|
35
|
+
environment-file: continuous_integration/environment.yaml
|
|
36
|
+
activate-environment: test-environment
|
|
37
|
+
channels: conda-forge
|
|
38
|
+
conda-remove-defaults: true
|
|
39
|
+
channel-priority: strict
|
|
40
|
+
|
|
41
|
+
- name: Install unstable dependencies
|
|
42
|
+
if: matrix.experimental == true
|
|
43
|
+
shell: bash -l {0}
|
|
44
|
+
run: |
|
|
45
|
+
python -m pip install \
|
|
46
|
+
-f https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com \
|
|
47
|
+
--no-deps --pre --upgrade \
|
|
48
|
+
dask \
|
|
49
|
+
numpy \
|
|
50
|
+
xarray \
|
|
51
|
+
h5netcdf; \
|
|
52
|
+
python -m pip install \
|
|
53
|
+
--no-deps --upgrade \
|
|
54
|
+
git+https://github.com/pytroll/pyspectral \
|
|
55
|
+
git+https://github.com/pytroll/trollsift \
|
|
56
|
+
git+https://github.com/pytroll/satpy \
|
|
57
|
+
git+https://github.com/pytroll/pyorbital;
|
|
58
|
+
|
|
59
|
+
- name: Install level1c4pps
|
|
60
|
+
shell: bash -l {0}
|
|
61
|
+
run: |
|
|
62
|
+
pip install --no-deps -e .
|
|
63
|
+
|
|
64
|
+
- name: Run unit tests
|
|
65
|
+
shell: bash -l {0}
|
|
66
|
+
run: |
|
|
67
|
+
pytest --cov=level1c4pps level1c4pps/tests --cov-report=xml --cov-report=
|
|
68
|
+
|
|
69
|
+
- name: Upload unittest coverage to Codecov
|
|
70
|
+
uses: codecov/codecov-action@v3
|
|
71
|
+
with:
|
|
72
|
+
flags: unittests
|
|
73
|
+
file: ./coverage.xml
|
|
74
|
+
env_vars: OS,PYTHON_VERSION,UNSTABLE
|
|
75
|
+
fail_ci_if_error: false
|
|
76
|
+
|
|
77
|
+
- name: Coveralls Parallel
|
|
78
|
+
uses: AndreMiras/coveralls-python-action@develop
|
|
79
|
+
with:
|
|
80
|
+
flag-name: run-${{ matrix.test_number }}
|
|
81
|
+
parallel: true
|
|
82
|
+
if: runner.os == 'Linux'
|
|
83
|
+
|
|
84
|
+
coveralls:
|
|
85
|
+
needs: [test]
|
|
86
|
+
runs-on: ubuntu-latest
|
|
87
|
+
steps:
|
|
88
|
+
- name: Coveralls Finished
|
|
89
|
+
uses: AndreMiras/coveralls-python-action@develop
|
|
90
|
+
with:
|
|
91
|
+
parallel-finished: true
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
name: Deploy sdist
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types:
|
|
6
|
+
- published
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
test:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
|
|
12
|
+
steps:
|
|
13
|
+
- name: Checkout source
|
|
14
|
+
uses: actions/checkout@v2
|
|
15
|
+
|
|
16
|
+
- name: Create sdist
|
|
17
|
+
shell: bash -l {0}
|
|
18
|
+
run: python setup.py sdist
|
|
19
|
+
|
|
20
|
+
- name: Publish package to PyPI
|
|
21
|
+
if: github.event.action == 'published'
|
|
22
|
+
uses: pypa/gh-action-pypi-publish@v1.13.0
|
|
23
|
+
with:
|
|
24
|
+
user: __token__
|
|
25
|
+
password: ${{ secrets.pypi_password }}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Project Contributors
|
|
2
|
+
|
|
3
|
+
- [Nina Håkansson] (https://github.com/ninahakansson)
|
|
4
|
+
- [Bengt Rydberg] (BengtRydberg)](https://github.com/BengtRydberg)
|
|
5
|
+
- [Sara Hörnquist] (shornqui)](https://github.com/shornqui)
|
|
6
|
+
- [Inderpreet Kaur] (https://github.com/ikaur17)
|
|
7
|
+
- [Salomon Eliasson] (https://github.com/salomoneliassonSMHI)
|
|
8
|
+
- [Erik Johansson] (https://github.com/smhi-erik)
|
|
9
|
+
- [Stephan Finkensieper] (https://github.com/sfinkens)
|
|
10
|
+
- [Adam Dybbroe (adybbroe)] (https://github.com/adybbroe)
|
|
11
|
+
- [Martin Raspaud (mraspaud)] (https://github.com/mraspaud)
|
|
12
|
+
- [Panu Lahtinen (pnuu)] (https://github.com/pnuu)
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
## Version <0.2.38> (2025/11/26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Pull Requests Merged
|
|
5
|
+
|
|
6
|
+
* [PR 119](https://github.com/foua-pps/level1c4pps/pull/119) - Handle 2 channel isccpng, by [@ninahakansson](https://github.com/ninahakansson)
|
|
7
|
+
* [PR 117](https://github.com/foua-pps/level1c4pps/pull/117) - Allow setting platform_name from commandline for METimage, by [@ninahakansson](https://github.com/ninahakansson)
|
|
8
|
+
* [PR 116](https://github.com/foua-pps/level1c4pps/pull/116) - Bump pypa/gh-action-pypi-publish from 1.4.1 to 1.13.0 in /.github/workflows, by [@dependabot[bot]](https://github.com/apps/dependabot)
|
|
9
|
+
* [PR 82](https://github.com/foua-pps/level1c4pps/pull/82) - Isccpg ng, by [@ninahakansson](https://github.com/ninahakansson)
|
|
10
|
+
|
|
11
|
+
In this release 4 pull requests were closed.
|
|
12
|
+
|
|
13
|
+
## Version <0.2.37> (2025/03/28)
|
|
14
|
+
|
|
15
|
+
### Issues Closed
|
|
16
|
+
|
|
17
|
+
* [Issue 98](https://github.com/foua-pps/level1c4pps/issues/98) - Include new EUMETSAT IR calibration for SEVIRI ([PR 105](https://github.com/foua-pps/level1c4pps/pull/105) by [@ninahakansson](https://github.com/ninahakansson))
|
|
18
|
+
|
|
19
|
+
In this release 1 issue was closed.
|
|
20
|
+
|
|
21
|
+
### Pull Requests Merged
|
|
22
|
+
|
|
23
|
+
* [PR 110](https://github.com/foua-pps/level1c4pps/pull/110) - Fix platform names for NOAA20 and NOAA21, by [@ninahakansson](https://github.com/ninahakansson)
|
|
24
|
+
* [PR 109](https://github.com/foua-pps/level1c4pps/pull/109) - Interpolate broken timestamps, by [@ninahakansson](https://github.com/ninahakansson)
|
|
25
|
+
* [PR 106](https://github.com/foua-pps/level1c4pps/pull/106) - better dependecy handling, by [@BengtRydberg](https://github.com/BengtRydberg)
|
|
26
|
+
* [PR 105](https://github.com/foua-pps/level1c4pps/pull/105) - SEVIRI IR calibration, by [@ninahakansson](https://github.com/ninahakansson) ([98](https://github.com/foua-pps/level1c4pps/issues/98))
|
|
27
|
+
|
|
28
|
+
In this release 4 pull requests were closed.
|
|
29
|
+
|
|
30
|
+
## Version <0.2.36> (2025/01/30)
|
|
31
|
+
|
|
32
|
+
### Issues Closed
|
|
33
|
+
|
|
34
|
+
* [Issue 107](https://github.com/foua-pps/level1c4pps/issues/107) - VIIRS compact reflectances not sun normalized ([PR 108](https://github.com/foua-pps/level1c4pps/pull/108) by [@ninahakansson](https://github.com/ninahakansson))
|
|
35
|
+
|
|
36
|
+
In this release 1 issue was closed.
|
|
37
|
+
|
|
38
|
+
### Pull Requests Merged
|
|
39
|
+
|
|
40
|
+
* [PR 108](https://github.com/foua-pps/level1c4pps/pull/108) - Fix sunz normalization for viirs_compact, by [@ninahakansson](https://github.com/ninahakansson) ([107](https://github.com/foua-pps/level1c4pps/issues/107))
|
|
41
|
+
* [PR 104](https://github.com/foua-pps/level1c4pps/pull/104) - Fix warnings from boa, by [@ninahakansson](https://github.com/ninahakansson)
|
|
42
|
+
* [PR 103](https://github.com/foua-pps/level1c4pps/pull/103) - Fix github tests, by [@ninahakansson](https://github.com/ninahakansson)
|
|
43
|
+
|
|
44
|
+
In this release 3 pull requests were closed.
|
|
45
|
+
|
|
46
|
+
## Version <0.2.35> (2024/12/16)
|
|
47
|
+
|
|
48
|
+
### Issues Closed
|
|
49
|
+
|
|
50
|
+
* [Issue 94](https://github.com/foua-pps/level1c4pps/issues/94) - VGAC sun-earth distance correction attribute is set wrong ([PR 102](https://github.com/foua-pps/level1c4pps/pull/102) by [@ninahakansson](https://github.com/ninahakansson))
|
|
51
|
+
* [Issue 93](https://github.com/foua-pps/level1c4pps/issues/93) - VGAC time unit is in microseconds not milliseconds ([PR 96](https://github.com/foua-pps/level1c4pps/pull/96) by [@BengtRydberg](https://github.com/BengtRydberg))
|
|
52
|
+
* [Issue 79](https://github.com/foua-pps/level1c4pps/issues/79) - Satpy doesn't support Python 3.8 anymore
|
|
53
|
+
|
|
54
|
+
In this release 3 issues were closed.
|
|
55
|
+
|
|
56
|
+
### Pull Requests Merged
|
|
57
|
+
|
|
58
|
+
* [PR 102](https://github.com/foua-pps/level1c4pps/pull/102) - Fix VGAC sun earth distance applied attribute, by [@ninahakansson](https://github.com/ninahakansson) ([94](https://github.com/foua-pps/level1c4pps/issues/94))
|
|
59
|
+
* [PR 100](https://github.com/foua-pps/level1c4pps/pull/100) - Sbaf n nv4, by [@salomoneliassonSMHI](https://github.com/salomoneliassonSMHI)
|
|
60
|
+
* [PR 99](https://github.com/foua-pps/level1c4pps/pull/99) - Add fix for sun_earth_distance_correction_factor, by [@ninahakansson](https://github.com/ninahakansson)
|
|
61
|
+
* [PR 97](https://github.com/foua-pps/level1c4pps/pull/97) - Sbaf nn, by [@salomoneliassonSMHI](https://github.com/salomoneliassonSMHI)
|
|
62
|
+
* [PR 96](https://github.com/foua-pps/level1c4pps/pull/96) - vgac time units, by [@BengtRydberg](https://github.com/BengtRydberg) ([93](https://github.com/foua-pps/level1c4pps/issues/93))
|
|
63
|
+
* [PR 95](https://github.com/foua-pps/level1c4pps/pull/95) - vgac cli bugfix, by [@BengtRydberg](https://github.com/BengtRydberg)
|
|
64
|
+
* [PR 92](https://github.com/foua-pps/level1c4pps/pull/92) - removed check for pygac and numpy2.0 gac2pps_lib.py, by [@ikaur17](https://github.com/ikaur17)
|
|
65
|
+
* [PR 91](https://github.com/foua-pps/level1c4pps/pull/91) - adding support for handling mersi3 data, by [@BengtRydberg](https://github.com/BengtRydberg)
|
|
66
|
+
* [PR 90](https://github.com/foua-pps/level1c4pps/pull/90) - Adding v3 SBAFs, by [@salomoneliassonSMHI](https://github.com/salomoneliassonSMHI)
|
|
67
|
+
|
|
68
|
+
In this release 9 pull requests were closed.
|
|
69
|
+
|
|
70
|
+
## Version <0.2.34> (2024/08/29)
|
|
71
|
+
|
|
72
|
+
### Issues Closed
|
|
73
|
+
|
|
74
|
+
* [Issue 89](https://github.com/foua-pps/level1c4pps/issues/89) - sqlite import issue while running metimage2pps.py
|
|
75
|
+
|
|
76
|
+
In this release 1 issue was closed.
|
|
77
|
+
|
|
78
|
+
### Pull Requests Merged
|
|
79
|
+
|
|
80
|
+
* [PR 88](https://github.com/foua-pps/level1c4pps/pull/88) - Handle some broken time information in VGAC files, by [@ninahakansson](https://github.com/ninahakansson)
|
|
81
|
+
* [PR 87](https://github.com/foua-pps/level1c4pps/pull/87) - Split VGAC files at midnight, by [@ninahakansson](https://github.com/ninahakansson)
|
|
82
|
+
* [PR 86](https://github.com/foua-pps/level1c4pps/pull/86) - Use importlib to get version, by [@ninahakansson](https://github.com/ninahakansson)
|
|
83
|
+
* [PR 77](https://github.com/foua-pps/level1c4pps/pull/77) - VGAC converter, by [@ninahakansson](https://github.com/ninahakansson)
|
|
84
|
+
|
|
85
|
+
In this release 4 pull requests were closed.
|
|
86
|
+
|
|
87
|
+
## Version <v.0.2.33> (2024/03/11)
|
|
88
|
+
|
|
89
|
+
* [Issue 74](https://github.com/foua-pps/level1c4pps/issues/74) - Problem saving gac data with satpy > 0.37 ([PR 78](https://github.com/foua-pps/level1c4pps/pull/78) by [@pnuu](https://github.com/pnuu))
|
|
90
|
+
* [Issue 30](https://github.com/foua-pps/level1c4pps/issues/30) - Bug for AVHRR eps l1b using satpy 0.20.0 and numpy=1.16
|
|
91
|
+
|
|
92
|
+
In this release 2 issues were closed.
|
|
93
|
+
|
|
94
|
+
### Pull Requests Merged
|
|
95
|
+
|
|
96
|
+
* [PR 85](https://github.com/foua-pps/level1c4pps/pull/85) - Adapt viirs2pps also to viirs_compact, by [@ninahakansson](https://github.com/ninahakansson)
|
|
97
|
+
* [PR 84](https://github.com/foua-pps/level1c4pps/pull/84) - Return the filename for metimage, by [@ninahakansson](https://github.com/ninahakansson)
|
|
98
|
+
* [PR 81](https://github.com/foua-pps/level1c4pps/pull/81) - Update MSG-4 visible calibration coefficients, by [@sfinkens](https://github.com/sfinkens)
|
|
99
|
+
* [PR 80](https://github.com/foua-pps/level1c4pps/pull/80) - Add azimuth angles for SEVIRI, by [@ninahakansson](https://github.com/ninahakansson)
|
|
100
|
+
* [PR 78](https://github.com/foua-pps/level1c4pps/pull/78) - Adjust Satpy version limit, by [@pnuu](https://github.com/pnuu) ([74](https://github.com/foua-pps/level1c4pps/issues/74))
|
|
101
|
+
* [PR 76](https://github.com/foua-pps/level1c4pps/pull/76) - Remove etuptools_scm_git_archive, by [@ninahakansson](https://github.com/ninahakansson)
|
|
102
|
+
|
|
103
|
+
In this release 6 pull requests were closed.
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
## Version <v.0.2.32> (2023/02/15)
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
### Pull Requests Merged
|
|
110
|
+
|
|
111
|
+
* [PR 75](https://github.com/foua-pps/level1c4pps/pull/75) - Pyspectral 1.7.2 and satpy <= 0.37 for gac data, by [@ninahakansson](https://github.com/ninahakansson)
|
|
112
|
+
|
|
113
|
+
In this release 1 pull request was closed.
|
|
114
|
+
|
|
115
|
+
## Version <v.0.2.31> (2023/01/19)
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Pull Requests Merged
|
|
119
|
+
|
|
120
|
+
* [PR 73](https://github.com/foua-pps/level1c4pps/pull/73) - Fixing channel unit, by [@ninahakansson](https://github.com/ninahakansson)
|
|
121
|
+
* [PR 72](https://github.com/foua-pps/level1c4pps/pull/72) - Read also channel 7.3µm MERSI2, by [@ninahakansson](https://github.com/ninahakansson)
|
|
122
|
+
* [PR 71](https://github.com/foua-pps/level1c4pps/pull/71) - Add clipping for SEVIRI calibration coefficients, by [@sfinkens](https://github.com/sfinkens)
|
|
123
|
+
|
|
124
|
+
In this release 3 pull requests were closed.
|
|
125
|
+
|
|
126
|
+
## Version <v.0.2.30> (2022/04/29)
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
### Pull Requests Merged
|
|
130
|
+
|
|
131
|
+
* [PR 70](https://github.com/foua-pps/level1c4pps/pull/70) - Usage ch r22, by [@shornqui](https://github.com/shornqui)
|
|
132
|
+
|
|
133
|
+
In this release 1 pull request was closed.
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
## Version <v.0.2.29> (2022/03/03)
|
|
137
|
+
|
|
138
|
+
### Issues Closed
|
|
139
|
+
|
|
140
|
+
* [Issue 68](https://github.com/foua-pps/level1c4pps/issues/68) - FOr AVHRR data missing ch3a/b gives no image5 dataset
|
|
141
|
+
|
|
142
|
+
In this release 1 issue was closed.
|
|
143
|
+
|
|
144
|
+
## Version <v.0.2.28> (2022/01/27)
|
|
145
|
+
|
|
146
|
+
### Issues Closed
|
|
147
|
+
|
|
148
|
+
* [Issue 65](https://github.com/foua-pps/level1c4pps/issues/65) - Missmatch in orbitnumber in netcdf filename and posttroll message tag 'orbit_number' VIIRS when using level 1c runner in pytroll pps runner
|
|
149
|
+
* [Issue 51](https://github.com/foua-pps/level1c4pps/issues/51) - Seviri2pps fails with h5netcdf backend
|
|
150
|
+
|
|
151
|
+
In this release 4 issues were closed.
|
|
152
|
+
|
|
153
|
+
### Pull Requests Merged
|
|
154
|
+
|
|
155
|
+
#### Bugs fixed
|
|
156
|
+
|
|
157
|
+
In this release 1 pull request was closed.
|
|
158
|
+
|
|
159
|
+
## Version <v0.2.27> (2021/06/21)
|
|
160
|
+
|
|
161
|
+
### Issues Closed
|
|
162
|
+
|
|
163
|
+
* [Issue 63](https://github.com/foua-pps/level1c4pps/issues/63) - New satpy wavelength attribute format not supported by PPS-2021
|
|
164
|
+
* [Issue 40](https://github.com/foua-pps/level1c4pps/issues/40) - Use satpy to rotate SEVIRI image
|
|
165
|
+
|
|
166
|
+
In this release 2 issues were closed.
|
|
167
|
+
|
|
168
|
+
### Pull Requests Merged
|
|
169
|
+
|
|
170
|
+
#### Bugs fixed
|
|
171
|
+
|
|
172
|
+
* [PR 61](https://github.com/foua-pps/level1c4pps/pull/61) - Updates for next pypi release
|
|
173
|
+
|
|
174
|
+
In this release 1 pull request was closed.
|
|
175
|
+
|
|
176
|
+
###############################################################################
|
|
177
|
+
## Version <v0.2.26> (2021/05/20)
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
### Pull Requests Merged
|
|
181
|
+
|
|
182
|
+
#### Features addeded
|
|
183
|
+
|
|
184
|
+
* [PR 60](https://github.com/foua-pps/level1c4pps/pull/60) - Add support for github-ci and prepare releasing on PyPi
|
|
185
|
+
|
|
186
|
+
In this release 1 pull request was closed.
|
|
187
|
+
|
|
188
|
+
###############################################################################
|
|
189
|
+
|
|
190
|
+
## Version <v0.2.25> (2021/05/19)
|
|
191
|
+
|