pyrocb 1.18.1__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.
- pyrocb-1.18.1/.github/workflows/deploy-docs.yaml +32 -0
- pyrocb-1.18.1/.github/workflows/package-and-publish.yaml +34 -0
- pyrocb-1.18.1/.github/workflows/tag-and-release.yaml +26 -0
- pyrocb-1.18.1/LICENSE +128 -0
- pyrocb-1.18.1/PKG-INFO +97 -0
- pyrocb-1.18.1/README.md +76 -0
- pyrocb-1.18.1/docs/source/releases/1.14.1/1.14.1-remove-release-note-index.yaml +11 -0
- pyrocb-1.18.1/docs/source/releases/1.14.1/1.14.1-standard-sync-files.yaml +27 -0
- pyrocb-1.18.1/docs/source/releases/1.14.2/1.14.2-release-note.yaml +18 -0
- pyrocb-1.18.1/docs/source/releases/1.14.2/38-resolve-satpy-scene-load-for-mask-variable-in-abi-l2-netcdf-files.yaml +10 -0
- pyrocb-1.18.1/docs/source/releases/1.14.2/NRT-All-PCB-Detects.yaml +18 -0
- pyrocb-1.18.1/docs/source/releases/1.14.2/add-ahi-fire-reader.yaml +13 -0
- pyrocb-1.18.1/docs/source/releases/1.14.2/split-window.yaml +13 -0
- pyrocb-1.18.1/docs/source/releases/1.14.5/1.14.5-release-note.yaml +18 -0
- pyrocb-1.18.1/docs/source/releases/1.14.5/add-note-to-not-use-pyrocb-var-map-as-example.yaml +65 -0
- pyrocb-1.18.1/docs/source/releases/1.14.5/fix-test-interfaces-error.yaml +126 -0
- pyrocb-1.18.1/docs/source/releases/1.15.1/1.15.1-open-source-upload.yaml +7 -0
- pyrocb-1.18.1/docs/source/releases/1.15.2/1.15.2-matplotlib-image-updates.yaml +25 -0
- pyrocb-1.18.1/docs/source/releases/1.15.2/1.15.2-release-note.yaml +17 -0
- pyrocb-1.18.1/docs/source/releases/1.15.2/42-expand-pyrocb-area-definition-padding.yaml +12 -0
- pyrocb-1.18.1/docs/source/releases/1.15.2/detection-differencing.yaml +39 -0
- pyrocb-1.18.1/docs/source/releases/1.15.2/jthompson-patch-1.yaml +12 -0
- pyrocb-1.18.1/docs/source/releases/1.15.2/pytest-based-integration-tests.yaml +21 -0
- pyrocb-1.18.1/docs/source/releases/1.16.2/1.16.2-update-geostationary-test-data-locations.yaml +47 -0
- pyrocb-1.18.1/docs/source/releases/1.16.3/1.16.3-release-note.yaml +17 -0
- pyrocb-1.18.1/docs/source/releases/1.16.3/add-uninterpolated-ahi-fire-product.yaml +12 -0
- pyrocb-1.18.1/docs/source/releases/1.16.3/correct-ahi-fire-reader-typo.yaml +13 -0
- pyrocb-1.18.1/docs/source/releases/1.17.2/1.17.2-open-source-upload.yaml +7 -0
- pyrocb-1.18.1/docs/source/releases/1.18.0/1.18.0-patch-add-missing-pcb-test-sectors.yaml +22 -0
- pyrocb-1.18.1/docs/source/releases/1.18.0/1.18.0-patch-internal-standard-sync-updates.yaml +17 -0
- pyrocb-1.18.1/docs/source/releases/1.18.0/1.18.0-release-note.yaml +17 -0
- pyrocb-1.18.1/docs/source/releases/1.18.1/1.18.1-open-source-upload.yaml +7 -0
- pyrocb-1.18.1/docs/source/releases/1.18.1/1.18.1-patch-os-update-readme.yaml +12 -0
- pyrocb-1.18.1/pyproject.toml +41 -0
- pyrocb-1.18.1/pyrocb/__init__.py +14 -0
- pyrocb-1.18.1/pyrocb/_version.py +7 -0
- pyrocb-1.18.1/pyrocb/plugins/__init__.py +4 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/__init__.py +4 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/algorithms/__init__.py +4 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/algorithms/diff_10um_11um.py +55 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/algorithms/diff_10um_12um.py +55 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/algorithms/diff_11um_12um.py +57 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/algorithms/diff_11um_13um.py +55 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/algorithms/diff_4um_11um.py +55 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/algorithms/pyrocb.py +500 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/algorithms/pyrocb_nucaps.py +52 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/colormappers/__init__.py +4 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/colormappers/current_fires.py +80 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/colormappers/diff_10um_11um.py +96 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/colormappers/diff_10um_12um.py +96 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/colormappers/diff_11um_12um.py +94 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/colormappers/diff_11um_13um.py +89 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/colormappers/diff_4um_11um.py +90 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/colormappers/intense_pyrocb.py +82 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/colormappers/old_fires.py +81 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/colormappers/pyrocb_11um.py +104 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/colormappers/pyrocb_blue_vis.py +100 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/colormappers/pyrocb_ir_gray.py +70 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/colormappers/pyrocb_red_vis.py +100 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/output_formatters/__init__.py +4 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/output_formatters/pyrocb.py +288 -0
- pyrocb-1.18.1/pyrocb/plugins/modules/readers/ahi_l2_fire_csv.py +243 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/feature_annotators/pyrocb.yaml +21 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/gridline_annotators/pyrocb.yaml +17 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/product_defaults/pyrocb/PyroCb-BT.yaml +31 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/product_defaults/pyrocb/PyroCb-Fire.yaml +29 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/product_defaults/pyrocb/PyroCb-High-LCL.yaml +31 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/product_defaults/pyrocb/PyroCb-Standard-NUCAPS.yaml +32 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/product_defaults/pyrocb/PyroCb-Standard.yaml +32 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/product_defaults/pyrocb/Window-Diff-10um-11um.yaml +29 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/product_defaults/pyrocb/Window-Diff-10um-12um.yaml +29 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/product_defaults/pyrocb/Window-Diff-11um-12um.yaml +29 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/product_defaults/pyrocb/Window-Diff-11um-13um.yaml +29 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/product_defaults/pyrocb/Window-Diff-4um-11um.yaml +29 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/products/abi.yaml +133 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/products/ahi.yaml +60 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/products/geo_nucaps.yaml +13 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/products/nucaps.yaml +18 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/sectors/static/NUCAPSCalNev.yaml +29 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/sectors/static/PCBTestAustralia.yaml +29 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/sectors/static/PCBTestAustraliaZoom.yaml +29 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/sectors/static/PCBTestFourCorners.yaml +29 -0
- pyrocb-1.18.1/pyrocb/plugins/yaml/sectors/static/PCBTestPacificNW.yaml +29 -0
- pyrocb-1.18.1/tests/conftest.py +52 -0
- pyrocb-1.18.1/tests/integration_tests/test_pyrocb.py +253 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
name: Deploy docs
|
|
2
|
+
|
|
3
|
+
# 1. Tag and Release - on merge of v*-version-release
|
|
4
|
+
# * Tag current version
|
|
5
|
+
# * Release just tagged version
|
|
6
|
+
# 2. Package and Publish - on published release (from #1)
|
|
7
|
+
# * Build wheel
|
|
8
|
+
# * Publish to pypi
|
|
9
|
+
# 3. Deploy docs - on published release (from #1)
|
|
10
|
+
# * pip install geoips
|
|
11
|
+
# * pip install plugin repo
|
|
12
|
+
# * build docs with geoips/docs/build_docs.sh
|
|
13
|
+
# * deploy docs with geoips/docs/deploy_pages.sh
|
|
14
|
+
|
|
15
|
+
on:
|
|
16
|
+
# Triggers the workflow on published release
|
|
17
|
+
release:
|
|
18
|
+
types:
|
|
19
|
+
- published
|
|
20
|
+
# Allows run of this workflow manually from the Actions tab
|
|
21
|
+
# Must be merged to default before it will be available to manually run.
|
|
22
|
+
workflow_dispatch:
|
|
23
|
+
|
|
24
|
+
jobs:
|
|
25
|
+
deploy-docs:
|
|
26
|
+
name: Deploy docs
|
|
27
|
+
# You do not appear to be able to use variables in the "uses" field.
|
|
28
|
+
uses: NRLMMD-GEOIPS/geoips_ci/.github/workflows/reusable-deploy-docs.yaml@main
|
|
29
|
+
permissions:
|
|
30
|
+
contents: write
|
|
31
|
+
secrets:
|
|
32
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
name: Package/publish
|
|
2
|
+
|
|
3
|
+
# 1. Tag and Release - on merge of v*-version-release
|
|
4
|
+
# * Tag current version
|
|
5
|
+
# * Release just tagged version
|
|
6
|
+
# 2. Package and Publish - on published release (from #1)
|
|
7
|
+
# * Build wheel
|
|
8
|
+
# * Publish to pypi
|
|
9
|
+
# 3. Deploy docs - on published release (from #1)
|
|
10
|
+
# * pip install geoips
|
|
11
|
+
# * pip install plugin repo
|
|
12
|
+
# * build docs with geoips/docs/build_docs.sh
|
|
13
|
+
# * deploy docs with geoips/docs/deploy_pages.sh
|
|
14
|
+
|
|
15
|
+
on:
|
|
16
|
+
# triggers the workflow on published release
|
|
17
|
+
release:
|
|
18
|
+
types:
|
|
19
|
+
- published
|
|
20
|
+
# allows run of this workflow manually from the actions tab
|
|
21
|
+
# must be merged to default before it will be available to manually run.
|
|
22
|
+
workflow_dispatch:
|
|
23
|
+
|
|
24
|
+
jobs:
|
|
25
|
+
package-publish:
|
|
26
|
+
name: Package/publish
|
|
27
|
+
# You do not appear to be able to use variables in the "uses" field.
|
|
28
|
+
uses: NRLMMD-GEOIPS/geoips_ci/.github/workflows/reusable-package-and-publish.yaml@main
|
|
29
|
+
permissions:
|
|
30
|
+
contents: read
|
|
31
|
+
secrets:
|
|
32
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
33
|
+
pypi_user: ${{ secrets.PYPI_USER }}
|
|
34
|
+
pypi_password: ${{ secrets.PYPI_PASSWORD }}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
name: Tag/release
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
# Triggers the workflow when pull request closed (either closed
|
|
5
|
+
# as non-planned, or actually approved and merged.)
|
|
6
|
+
pull_request:
|
|
7
|
+
types:
|
|
8
|
+
- closed
|
|
9
|
+
# You do not appear to be able to use variables in triggers
|
|
10
|
+
branch: main
|
|
11
|
+
# Allows run of this workflow manually from the Actions tab
|
|
12
|
+
# Must be merged to default branch before it will be available
|
|
13
|
+
# to manually run.
|
|
14
|
+
workflow_dispatch:
|
|
15
|
+
|
|
16
|
+
jobs:
|
|
17
|
+
tag-release:
|
|
18
|
+
name: Tag/release
|
|
19
|
+
# You do not appear to be able to use variables in the "uses" field.
|
|
20
|
+
uses: NRLMMD-GEOIPS/geoips_ci/.github/workflows/reusable-tag-and-release.yaml@main
|
|
21
|
+
# Only run this if the pull request was merged, not just closed.
|
|
22
|
+
if: github.event.pull_request.merged == true
|
|
23
|
+
permissions:
|
|
24
|
+
contents: write
|
|
25
|
+
secrets:
|
|
26
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
pyrocb-1.18.1/LICENSE
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
NRL OPEN LICENSE AGREEMENT
|
|
2
|
+
|
|
3
|
+
1. Scope and Applicability: This Agreement applies to Computer Software that
|
|
4
|
+
is made available under this Agreement. By using, modifying, or disseminating
|
|
5
|
+
the Computer Software, You accept the terms and conditions in this Agreement.
|
|
6
|
+
Use, modification, and dissemination of the Computer Software is permitted
|
|
7
|
+
only in accordance with the terms and conditions of this Agreement. No other
|
|
8
|
+
rights or licenses to the Computer Software are granted. Unauthorized use,
|
|
9
|
+
sale, conveyance, disposition, or modification of a Computer Software may
|
|
10
|
+
result in civil penalties and/or criminal penalties under 18 U.S.C. § 641.
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
2. For purposes of this Agreement, the following definitions apply:
|
|
14
|
+
|
|
15
|
+
a. “Computer software” means computer programs, source code, source code
|
|
16
|
+
listings, object code listings, design details, algorithms, processes,
|
|
17
|
+
flow charts, formulae, and related material that would enable the software
|
|
18
|
+
to be reproduced, recreated, or recompiled.
|
|
19
|
+
|
|
20
|
+
b. “Derivative work” is a work based upon some or all of the Computer Software.
|
|
21
|
+
|
|
22
|
+
c. “Unlimited rights” means rights to use, modify, reproduce, release,
|
|
23
|
+
perform, display, or disclose, in whole or in part, in any manner and for
|
|
24
|
+
any purpose whatsoever, and to have or authorize others to do so.
|
|
25
|
+
|
|
26
|
+
d. “You” means yourself and any corporation, company, association, firm,
|
|
27
|
+
partnership, society, and joint stock company to which you are an employee,
|
|
28
|
+
volunteer, or an independent contractor performing services therefor.
|
|
29
|
+
|
|
30
|
+
3. Use and Distribution License: The Government of the United States of
|
|
31
|
+
America (“Government”) hereby authorizes You to use and modify the Computer
|
|
32
|
+
Software for any purpose. The Government hereby authorizes You to
|
|
33
|
+
redistribute the Computer Software, but only under the terms of this
|
|
34
|
+
Agreement. You agree that any modifications to and derivative works of the
|
|
35
|
+
Computer Software generated by You shall be distributed only under the terms
|
|
36
|
+
of this Agreement. You shall provide a copy of this Agreement with any
|
|
37
|
+
distribution of the Computer Software, or any modification to and derivative
|
|
38
|
+
works of the Computer Software.
|
|
39
|
+
|
|
40
|
+
4. Ownership: All Computer Software is property of the Government and under
|
|
41
|
+
the custody and administration of the U.S. Naval Research Laboratory (NRL).
|
|
42
|
+
Nothing in the Agreement shall be construed to constitute a sale, assignment,
|
|
43
|
+
or transfer of ownership to You of the Computer Software.
|
|
44
|
+
|
|
45
|
+
5. Markings: You shall not remove any copyright notices, disclaimers, notices
|
|
46
|
+
of Government sponsorship and license rights, third-party licenses, and any
|
|
47
|
+
other identifications, contained in the Computer Software or provided in a
|
|
48
|
+
file accompanying the Computer Software, such as a license file.
|
|
49
|
+
|
|
50
|
+
6. Header File Required: For source code provided under this Agreement, the
|
|
51
|
+
header of each source file shall contain the following statement:
|
|
52
|
+
|
|
53
|
+
!#######################################################################
|
|
54
|
+
|
|
55
|
+
THIS SOURCE CODE IS PROPERTY OF THE GOVERNMENT OF THE UNITED STATES OF
|
|
56
|
+
AMERICA. BY USING, MODIFYING, OR DISSEMINATING THIS SOURCE CODE, YOU ACCEPT
|
|
57
|
+
THE TERMS AND CONDITIONS IN THE NRL OPEN LICENSE AGREEMENT. USE, MODIFICATION,
|
|
58
|
+
AND DISSEMINATION ARE PERMITTED ONLY IN ACCORDANCE WITH THE TERMS AND
|
|
59
|
+
CONDITIONS OF THE NRL OPEN LICENSE AGREEMENT. NO OTHER RIGHTS OR LICENSES
|
|
60
|
+
ARE GRANTED. UNAUTHORIZED USE, SALE, CONVEYANCE, DISPOSITION, OR MODIFICATION
|
|
61
|
+
OF THIS SOURCE CODE MAY RESULT IN CIVIL PENALTIES AND/OR CRIMINAL PENALTIES
|
|
62
|
+
UNDER 18 U.S.C. § 641.
|
|
63
|
+
|
|
64
|
+
!########################################################################
|
|
65
|
+
|
|
66
|
+
7. Government Rights: In consideration of making the Computer Software
|
|
67
|
+
available to You, You irrevocably grant the Government, at no cost, unlimited
|
|
68
|
+
rights in any and all modifications to, and derivative works of, the Computer
|
|
69
|
+
Software. Upon request, You shall deliver to NRL, or another Federal component
|
|
70
|
+
or agency as NRL may designate, all modifications to and derivative works of
|
|
71
|
+
the Computer Software generated by You or that are in Your possession.
|
|
72
|
+
|
|
73
|
+
8. ALL MATERIAL IS PROVIDED “AS IS” AND WITHOUT ANY REPRESENTATION OR
|
|
74
|
+
WARRANTY, EXPRESS OR IMPLIED, INCLUDING WITHOUT ANY PARTICULAR PURPOSE
|
|
75
|
+
OR ANY WARRANTIES OF ACCURACY OR COMPLETENESS OR ANY WARRANTIES THAT THE
|
|
76
|
+
USE OF THE COMPUTER SOFTWARE WILL NOT INFRINGE OR VIOLATE ANY PATENT OR
|
|
77
|
+
OTHER PROPRIETARY RIGHTS OF ANY THIRD PARTY (WHETHER DIRECTLY OR INDIRECTLY).
|
|
78
|
+
|
|
79
|
+
9. Notice: You shall provide prominent notice on any derivative work of the
|
|
80
|
+
Computer Software, or in a file accompanying the Computer Software, that the
|
|
81
|
+
Computer Software was developed in part or in whole by NRL.
|
|
82
|
+
|
|
83
|
+
10. No Support. The Computer Software(s) is provided without any support or
|
|
84
|
+
maintenance, and without any obligation to provide modifications,
|
|
85
|
+
improvements, enhancements, or updates thereto. No oral or written
|
|
86
|
+
information or advice given by Federal employees shall create a warranty
|
|
87
|
+
or in any way modify this Agreement.
|
|
88
|
+
|
|
89
|
+
11. Export Control: This Agreement does not authorize any disclosure, export,
|
|
90
|
+
or deemed export of technical information, articles, or services, nor does it
|
|
91
|
+
authorize or approve the use of any exemption to the export licensing
|
|
92
|
+
requirements of the International Traffic in Arms Regulations (“ITAR”) or the
|
|
93
|
+
Export Administration Regulations (“EAR”). You shall ensure full compliance
|
|
94
|
+
with all applicable requirements and restrictions established in law and
|
|
95
|
+
regulation pertaining to United States export controls including the Arms
|
|
96
|
+
Export Control Act, the International Traffic in Arms Regulations, the Export
|
|
97
|
+
Control Reform Act, the Export Administration Regulations, and the Atomic
|
|
98
|
+
Energy Act.
|
|
99
|
+
|
|
100
|
+
12. Termination: The Government, either through NRL or another Federal
|
|
101
|
+
component or agency, may terminate this Agreement at any time. The Government
|
|
102
|
+
rights under Section 7 shall survive termination.
|
|
103
|
+
|
|
104
|
+
13. Liability: You shall be solely liable for all claims and/or damages which
|
|
105
|
+
may arise from Your use, storage or disposal of the Computer Software under
|
|
106
|
+
this Agreement. Nothing in this Agreement shall be construed as a waiver of
|
|
107
|
+
the sovereign immunity of the United States.
|
|
108
|
+
|
|
109
|
+
14. Indemnification: You agree on behalf of Yourself, and any successors in
|
|
110
|
+
interest or assignees of You, to hold harmless and indemnify the United States
|
|
111
|
+
from any claim for damages or injury to any person or property arising out of
|
|
112
|
+
the provision of the Computer Software. This will include any costs relating
|
|
113
|
+
to infringing a third party’s intellectual property rights.
|
|
114
|
+
|
|
115
|
+
15. Governing Law & Jurisdiction. If a dispute, controversy, or claim relating
|
|
116
|
+
to this Agreement shall arise, You agree to first attempt to settle such
|
|
117
|
+
matter through informal dispute resolution. If any such matter cannot be
|
|
118
|
+
resolved informally, applicable U.S. Federal laws shall govern this Agreement
|
|
119
|
+
for all purposes.
|
|
120
|
+
|
|
121
|
+
16. No Government Endorsement: You shall not make or include any statements
|
|
122
|
+
that imply NRL or another component or agency of the Federal Government
|
|
123
|
+
endorses You, Your work, or any product or service You offer.
|
|
124
|
+
|
|
125
|
+
17. Severability. If any provision or term of this Agreement is held to be
|
|
126
|
+
invalid by a court of competent jurisdiction, then such provision or term
|
|
127
|
+
will be enforced to the maximum extent possible and the remaining terms of
|
|
128
|
+
this Agreement will continue in full force and effect.
|
pyrocb-1.18.1/PKG-INFO
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pyrocb
|
|
3
|
+
Version: 1.18.1
|
|
4
|
+
Summary: PyroCb GeoIPS Plugin Package
|
|
5
|
+
License: LICENSE
|
|
6
|
+
License-File: LICENSE
|
|
7
|
+
Requires-Python: >=3.9
|
|
8
|
+
Classifier: License :: Other/Proprietary License
|
|
9
|
+
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
16
|
+
Requires-Dist: metpy
|
|
17
|
+
Requires-Dist: satpy (>=0.49.0)
|
|
18
|
+
Project-URL: Repository, https://github.com/NRLMMD-GEOIPS/pyrocb
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
|
|
21
|
+
# # # This source code is subject to the license referenced at
|
|
22
|
+
# # # https://github.com/NRLMMD-GEOIPS.
|
|
23
|
+
|
|
24
|
+
PyroCb GeoIPS Plugin
|
|
25
|
+
==========================
|
|
26
|
+
|
|
27
|
+
The pyrocb package is a GeoIPS-compatible plugin, intended to be used within
|
|
28
|
+
the GeoIPS ecosystem. Please see the
|
|
29
|
+
[GeoIPS Documentation](https://github.com/NRLMMD-GEOIPS/geoips#readme) for
|
|
30
|
+
more information on the GeoIPS plugin architecture and base infrastructure.
|
|
31
|
+
|
|
32
|
+
Package Overview
|
|
33
|
+
-----------------
|
|
34
|
+
|
|
35
|
+
The pyrocb plugin provides the capability for identifying and plotting pyrocumulonimbus using GOES ABI data.
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
System Requirements
|
|
39
|
+
---------------------
|
|
40
|
+
|
|
41
|
+
* geoips >= 1.18.0
|
|
42
|
+
* Test data repos contained in $GEOIPS_TESTDATA_DIR for tests to pass.
|
|
43
|
+
* test_data_pyrocb
|
|
44
|
+
* test_data_nucaps
|
|
45
|
+
* test_data_ahi
|
|
46
|
+
* data fusion
|
|
47
|
+
* geoips_nucaps
|
|
48
|
+
* metpy
|
|
49
|
+
|
|
50
|
+
Installation Guide
|
|
51
|
+
==================
|
|
52
|
+
|
|
53
|
+
This installation guide has installation steps specific to installing this plugin, including
|
|
54
|
+
the base geoips conda install if not already installed.
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
IF REQUIRED: Install and test base geoips conda environment
|
|
58
|
+
------------------------------------------------------------
|
|
59
|
+
If GeoIPS Base is not yet installed, follow the
|
|
60
|
+
[installation instructions](https://github.com/NRLMMD-GEOIPS/geoips#installation)
|
|
61
|
+
within the geoips source repo documentation:
|
|
62
|
+
|
|
63
|
+
Install pyrocb package and dependencies
|
|
64
|
+
---------------------------------------
|
|
65
|
+
```bash
|
|
66
|
+
# Ensure GeoIPS Python environment is enabled.
|
|
67
|
+
|
|
68
|
+
# Install pyrocb and geoips plugin package dependencies
|
|
69
|
+
git clone https://github.com/NRLMMD-GEOIPS/data_fusion $GEOIPS_PACKAGES_DIR/data_fusion
|
|
70
|
+
git clone https://github.com/NRLMMD-GEOIPS/geoips_nucaps $GEOIPS_PACKAGES_DIR/geoips_nucaps
|
|
71
|
+
git clone https://github.com/NRLMMD-GEOIPS/pyrocb $GEOIPS_PACKAGES_DIR/pyrocb
|
|
72
|
+
pip install -e $GEOIPS_PACKAGES_DIR/data_fusion
|
|
73
|
+
pip install -e $GEOIPS_PACKAGES_DIR/geoips_nucaps
|
|
74
|
+
pip install -e $GEOIPS_PACKAGES_DIR/pyrocb
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
Test pyrocb installation
|
|
78
|
+
------------------------
|
|
79
|
+
```bash
|
|
80
|
+
# Ensure GeoIPS Python environment is enabled.
|
|
81
|
+
|
|
82
|
+
# Install required test data repositories.
|
|
83
|
+
geoips config install test_data_pyrocb
|
|
84
|
+
geoips config install test_data_nucaps
|
|
85
|
+
geoips config install test_data_ahi
|
|
86
|
+
|
|
87
|
+
# Test all functionality
|
|
88
|
+
cd $GEOIPS_PACKAGES_DIR/pyrocb
|
|
89
|
+
pytest
|
|
90
|
+
|
|
91
|
+
# Individual direct test calls, for reference
|
|
92
|
+
$GEOIPS_PACKAGES_DIR/pyrocb/tests/scripts/abi.sh PyroCb-Standard PCBCalNev
|
|
93
|
+
$GEOIPS_PACKAGES_DIR/pyrocb/tests/scripts/abi.sh PyroCb-Standard PCBFourCorners
|
|
94
|
+
$GEOIPS_PACKAGES_DIR/pyrocb/tests/scripts/abi_nucaps.sh PyroCb-Standard-NUCAPS PCBCalNev
|
|
95
|
+
$GEOIPS_PACKAGES_DIR/pyrocb/tests/scripts/abi_nucaps.sh PyroCb-Standard-NUCAPS PCBFourCorners
|
|
96
|
+
```
|
|
97
|
+
|
pyrocb-1.18.1/README.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# # # This source code is subject to the license referenced at
|
|
2
|
+
# # # https://github.com/NRLMMD-GEOIPS.
|
|
3
|
+
|
|
4
|
+
PyroCb GeoIPS Plugin
|
|
5
|
+
==========================
|
|
6
|
+
|
|
7
|
+
The pyrocb package is a GeoIPS-compatible plugin, intended to be used within
|
|
8
|
+
the GeoIPS ecosystem. Please see the
|
|
9
|
+
[GeoIPS Documentation](https://github.com/NRLMMD-GEOIPS/geoips#readme) for
|
|
10
|
+
more information on the GeoIPS plugin architecture and base infrastructure.
|
|
11
|
+
|
|
12
|
+
Package Overview
|
|
13
|
+
-----------------
|
|
14
|
+
|
|
15
|
+
The pyrocb plugin provides the capability for identifying and plotting pyrocumulonimbus using GOES ABI data.
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
System Requirements
|
|
19
|
+
---------------------
|
|
20
|
+
|
|
21
|
+
* geoips >= 1.18.0
|
|
22
|
+
* Test data repos contained in $GEOIPS_TESTDATA_DIR for tests to pass.
|
|
23
|
+
* test_data_pyrocb
|
|
24
|
+
* test_data_nucaps
|
|
25
|
+
* test_data_ahi
|
|
26
|
+
* data fusion
|
|
27
|
+
* geoips_nucaps
|
|
28
|
+
* metpy
|
|
29
|
+
|
|
30
|
+
Installation Guide
|
|
31
|
+
==================
|
|
32
|
+
|
|
33
|
+
This installation guide has installation steps specific to installing this plugin, including
|
|
34
|
+
the base geoips conda install if not already installed.
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
IF REQUIRED: Install and test base geoips conda environment
|
|
38
|
+
------------------------------------------------------------
|
|
39
|
+
If GeoIPS Base is not yet installed, follow the
|
|
40
|
+
[installation instructions](https://github.com/NRLMMD-GEOIPS/geoips#installation)
|
|
41
|
+
within the geoips source repo documentation:
|
|
42
|
+
|
|
43
|
+
Install pyrocb package and dependencies
|
|
44
|
+
---------------------------------------
|
|
45
|
+
```bash
|
|
46
|
+
# Ensure GeoIPS Python environment is enabled.
|
|
47
|
+
|
|
48
|
+
# Install pyrocb and geoips plugin package dependencies
|
|
49
|
+
git clone https://github.com/NRLMMD-GEOIPS/data_fusion $GEOIPS_PACKAGES_DIR/data_fusion
|
|
50
|
+
git clone https://github.com/NRLMMD-GEOIPS/geoips_nucaps $GEOIPS_PACKAGES_DIR/geoips_nucaps
|
|
51
|
+
git clone https://github.com/NRLMMD-GEOIPS/pyrocb $GEOIPS_PACKAGES_DIR/pyrocb
|
|
52
|
+
pip install -e $GEOIPS_PACKAGES_DIR/data_fusion
|
|
53
|
+
pip install -e $GEOIPS_PACKAGES_DIR/geoips_nucaps
|
|
54
|
+
pip install -e $GEOIPS_PACKAGES_DIR/pyrocb
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
Test pyrocb installation
|
|
58
|
+
------------------------
|
|
59
|
+
```bash
|
|
60
|
+
# Ensure GeoIPS Python environment is enabled.
|
|
61
|
+
|
|
62
|
+
# Install required test data repositories.
|
|
63
|
+
geoips config install test_data_pyrocb
|
|
64
|
+
geoips config install test_data_nucaps
|
|
65
|
+
geoips config install test_data_ahi
|
|
66
|
+
|
|
67
|
+
# Test all functionality
|
|
68
|
+
cd $GEOIPS_PACKAGES_DIR/pyrocb
|
|
69
|
+
pytest
|
|
70
|
+
|
|
71
|
+
# Individual direct test calls, for reference
|
|
72
|
+
$GEOIPS_PACKAGES_DIR/pyrocb/tests/scripts/abi.sh PyroCb-Standard PCBCalNev
|
|
73
|
+
$GEOIPS_PACKAGES_DIR/pyrocb/tests/scripts/abi.sh PyroCb-Standard PCBFourCorners
|
|
74
|
+
$GEOIPS_PACKAGES_DIR/pyrocb/tests/scripts/abi_nucaps.sh PyroCb-Standard-NUCAPS PCBCalNev
|
|
75
|
+
$GEOIPS_PACKAGES_DIR/pyrocb/tests/scripts/abi_nucaps.sh PyroCb-Standard-NUCAPS PCBFourCorners
|
|
76
|
+
```
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
documentation:
|
|
2
|
+
- title: "Updating to standard sync files"
|
|
3
|
+
description: |
|
|
4
|
+
*From GEOIPS#562: 2024-09-24, 1.14.1 updates*
|
|
5
|
+
|
|
6
|
+
Standard files copied from geoips_ci/sync directory.
|
|
7
|
+
files:
|
|
8
|
+
modified:
|
|
9
|
+
- .github/release.yml
|
|
10
|
+
- .gitignore
|
|
11
|
+
- CHANGELOG.rst
|
|
12
|
+
added:
|
|
13
|
+
- .flake8
|
|
14
|
+
- .github/workflows/brassy-notes.yaml
|
|
15
|
+
- .github/workflows/codeql.yaml
|
|
16
|
+
- .github/workflows/deploy-docs.yaml
|
|
17
|
+
- .github/workflows/lint.yaml
|
|
18
|
+
- .github/workflows/package-and-publish.yaml
|
|
19
|
+
- .github/workflows/proper-release-note-edits.yaml
|
|
20
|
+
- .github/workflows/tag-and-release.yaml
|
|
21
|
+
- CODE_OF_CONDUCT.md
|
|
22
|
+
- DISTRIBUTION
|
|
23
|
+
- SECURITY.md
|
|
24
|
+
- bandit.yml
|
|
25
|
+
- pytest.ini
|
|
26
|
+
related-issue:
|
|
27
|
+
number: 562
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
documentation:
|
|
2
|
+
- title: Add release note for version 1.14.2
|
|
3
|
+
description: |
|
|
4
|
+
Release note on release branch to force tag/release, package/publish,
|
|
5
|
+
and deploy docs.
|
|
6
|
+
|
|
7
|
+
Additionally add any updated files from geoips_ci/sync
|
|
8
|
+
files:
|
|
9
|
+
added:
|
|
10
|
+
- docs/source/releases/latest/1.14.2-release-note.yaml
|
|
11
|
+
modified:
|
|
12
|
+
- geoips_ci/sync updated files
|
|
13
|
+
date:
|
|
14
|
+
start: 2024-11-21
|
|
15
|
+
finish: 2024-11-21
|
|
16
|
+
related-issue:
|
|
17
|
+
number: 715
|
|
18
|
+
internal: GEOIPS#715 - 1.14.2 updates
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
enhancement:
|
|
2
|
+
- description: |
|
|
3
|
+
Improve visualization of pyrocb warning product to prepare for near-realtime
|
|
4
|
+
demonstration. This includes: clustering the past hour of fire pixels, updating
|
|
5
|
+
the colormap labels and ticks for the fire colormappers, and reducing the
|
|
6
|
+
threshold number of pixels for analyzing a fire.
|
|
7
|
+
Also removes the radii circles from the standard pyrocb product, where they
|
|
8
|
+
are not needed.
|
|
9
|
+
files:
|
|
10
|
+
modified:
|
|
11
|
+
- 'pyrocb/plugins/modules/algorithms/pyrocb.py'
|
|
12
|
+
- 'pyrocb/plugins/modules/colormappers/current_fires.py'
|
|
13
|
+
- 'pyrocb/plugins/modules/colormappers/old_fires.py'
|
|
14
|
+
- 'pyrocb/plugins/modules/output_formatters/pyrocb.py'
|
|
15
|
+
- 'pyrocb/plugins/yaml/products/abi.yaml'
|
|
16
|
+
- 'tests/outputs/goes16/PyroCb-Standard_pyrocb/20180613.220040.goes-16.abi.PyroCb-Standard.PCBTestFourCorners.100p00.noaa.1p0.png'
|
|
17
|
+
- 'tests/outputs/goes17/PyroCb-Standard_pyrocb/20200905.225031.goes-17.abi.PyroCb-Standard.NUCAPSCalNev.100p00.noaa.1p0.png'
|
|
18
|
+
title: 'Improve near-realtime readiness of pyrocb warning product'
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
enhancement:
|
|
2
|
+
- title: 'Add AHI Fire Reader'
|
|
3
|
+
description: |
|
|
4
|
+
Add reader for CSV files for AHI Level 2 fire data so that pyroCb
|
|
5
|
+
processing can be done for Australia.
|
|
6
|
+
files:
|
|
7
|
+
added:
|
|
8
|
+
- 'pyrocb/plugins/modules/readers/ahi_l2_fire_csv.py'
|
|
9
|
+
- 'tests/outputs/himawari8/PyroCb-Standard_pyrocb/20200405.000000.himawari-8.ahi.PyroCb-Standard.PCBAustralia.100p00.jma.4p0.png'
|
|
10
|
+
- 'tests/outputs/himawari8/PyroCb-Standard_pyrocb/20200405.000000.himawari-8.ahi.PyroCb-Standard.PCBAustraliaZoom.100p00.jma.1p0.png'
|
|
11
|
+
modified:
|
|
12
|
+
- 'tests/scripts/ahi.sh'
|
|
13
|
+
- 'tests/test_all.sh'
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
enhancement:
|
|
2
|
+
- description: |
|
|
3
|
+
Add a product for the IR Window brightness temperature difference, and
|
|
4
|
+
add a modified Infrared product that uses the pyroCb 11 um colorbar.
|
|
5
|
+
files:
|
|
6
|
+
added:
|
|
7
|
+
- 'pyrocb/plugins/modules/algorithms/ir_window_diff.py'
|
|
8
|
+
- 'pyrocb/plugins/modules/colormappers/ir_window_diff.py'
|
|
9
|
+
- 'pyrocb/plugins/yaml/product_defaults/pyrocb/IR-Window-Diff.yaml'
|
|
10
|
+
- 'tests/scripts/ir_window_diff.sh'
|
|
11
|
+
modified:
|
|
12
|
+
- 'pyrocb/plugins/yaml/products/abi.yaml'
|
|
13
|
+
title: 'Add BT Difference and Modified Infrared Product'
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
documentation:
|
|
2
|
+
- title: Add release note for version 1.14.5
|
|
3
|
+
description: |
|
|
4
|
+
Release note on release branch to force tag/release, package/publish,
|
|
5
|
+
and deploy docs.
|
|
6
|
+
|
|
7
|
+
Additionally add any updated files from geoips_ci/sync
|
|
8
|
+
files:
|
|
9
|
+
added:
|
|
10
|
+
- docs/source/releases/latest/1.14.5-release-note.yaml
|
|
11
|
+
modified:
|
|
12
|
+
- geoips_ci/sync updated files
|
|
13
|
+
date:
|
|
14
|
+
start: 2025-02-27
|
|
15
|
+
finish: 2025-02-27
|
|
16
|
+
related-issue:
|
|
17
|
+
number: 753
|
|
18
|
+
internal: GEOIPS#753 - 1.14.5 updates
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
documentation:
|
|
2
|
+
- title: 'Note pyrocb var_map should not be used as example'
|
|
3
|
+
description: |
|
|
4
|
+
This implementation goes about variable mapping in a very round about way.
|
|
5
|
+
Make a note that the windbarbs_dmw.py
|
|
6
|
+
algorithm and the DMW products are a much more reasonable example for variable
|
|
7
|
+
mapping
|
|
8
|
+
geoips/plugins/yaml/products/abi.yaml#L147
|
|
9
|
+
geoips/plugins/modules/algorithms/pressure_winds/windbarbs_dmw.py#L35
|
|
10
|
+
|
|
11
|
+
Note this is ONLY adding comments. No functional changes.
|
|
12
|
+
files:
|
|
13
|
+
deleted:
|
|
14
|
+
- ''
|
|
15
|
+
moved:
|
|
16
|
+
- ''
|
|
17
|
+
added:
|
|
18
|
+
- ''
|
|
19
|
+
modified:
|
|
20
|
+
- 'pyrocb/plugins/yaml/products/abi.yaml'
|
|
21
|
+
- 'pyrocb/plugins/yaml/products/ahi.yaml'
|
|
22
|
+
- 'pyrocb/plugins/yaml/product_defaults/pyrocb/PyroCb-Standard.yaml'
|
|
23
|
+
- 'pyrocb/plugins/yaml/product_defaults/pyrocb/PyroCb-Standard-NUCAPS.yaml'
|
|
24
|
+
- 'pyrocb/plugins/yaml/product_defaults/pyrocb/PyroCb-HighLCL.yaml'
|
|
25
|
+
- 'pyrocb/plugins/yaml/product_defaults/pyrocb/PyroCb-BT.yaml'
|
|
26
|
+
- 'pyrocb/plugins/yaml/product_defaults/pyrocb/PyroCb-Fire.yaml'
|
|
27
|
+
- 'pyrocb/plugins/modules/algorithms/pyrocb.py'
|
|
28
|
+
related-issue:
|
|
29
|
+
number: null
|
|
30
|
+
repo_url: ''
|
|
31
|
+
date:
|
|
32
|
+
start: 2025-01-06
|
|
33
|
+
finish: 2025-01-06
|
|
34
|
+
enhancement:
|
|
35
|
+
- title: ''
|
|
36
|
+
description: ''
|
|
37
|
+
files:
|
|
38
|
+
deleted:
|
|
39
|
+
- ''
|
|
40
|
+
moved:
|
|
41
|
+
- ''
|
|
42
|
+
added:
|
|
43
|
+
- ''
|
|
44
|
+
modified:
|
|
45
|
+
- ''
|
|
46
|
+
related-issue:
|
|
47
|
+
number: null
|
|
48
|
+
repo_url: ''
|
|
49
|
+
date:
|
|
50
|
+
start: null
|
|
51
|
+
finish: null
|
|
52
|
+
deprecation:
|
|
53
|
+
- title: ''
|
|
54
|
+
description: ''
|
|
55
|
+
files:
|
|
56
|
+
deleted:
|
|
57
|
+
- ''
|
|
58
|
+
moved:
|
|
59
|
+
- ''
|
|
60
|
+
added:
|
|
61
|
+
- ''
|
|
62
|
+
modified:
|
|
63
|
+
- ''
|
|
64
|
+
related-issue:
|
|
65
|
+
number: null
|