firedataforge 0.1.0__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.
@@ -0,0 +1,219 @@
1
+ datasets/
2
+ cache/
3
+ output/
4
+ benchmark/cache_backup
5
+ benchmark/logs
6
+ benchmark/out
7
+ benchmark/benchmark_driver.log
8
+ benchmark/results.jsonl
9
+ events.txt
10
+
11
+ .claude
12
+
13
+ # Byte-compiled / optimized / DLL files
14
+ __pycache__/
15
+ *.py[codz]
16
+ *$py.class
17
+
18
+ # C extensions
19
+ *.so
20
+
21
+ # Distribution / packaging
22
+ .Python
23
+ build/
24
+ develop-eggs/
25
+ dist/
26
+ downloads/
27
+ eggs/
28
+ .eggs/
29
+ lib/
30
+ lib64/
31
+ parts/
32
+ sdist/
33
+ var/
34
+ wheels/
35
+ share/python-wheels/
36
+ *.egg-info/
37
+ .installed.cfg
38
+ *.egg
39
+ MANIFEST
40
+
41
+ # PyInstaller
42
+ # Usually these files are written by a python script from a template
43
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
44
+ *.manifest
45
+ *.spec
46
+
47
+ # Installer logs
48
+ pip-log.txt
49
+ pip-delete-this-directory.txt
50
+
51
+ # Unit test / coverage reports
52
+ htmlcov/
53
+ .tox/
54
+ .nox/
55
+ .coverage
56
+ .coverage.*
57
+ .cache
58
+ nosetests.xml
59
+ coverage.xml
60
+ *.cover
61
+ *.py.cover
62
+ .hypothesis/
63
+ .pytest_cache/
64
+ cover/
65
+
66
+ # Translations
67
+ *.mo
68
+ *.pot
69
+
70
+ # Django stuff:
71
+ *.log
72
+ local_settings.py
73
+ db.sqlite3
74
+ db.sqlite3-journal
75
+
76
+ # Flask stuff:
77
+ instance/
78
+ .webassets-cache
79
+
80
+ # Scrapy stuff:
81
+ .scrapy
82
+
83
+ # Sphinx documentation
84
+ docs/_build/
85
+
86
+ # PyBuilder
87
+ .pybuilder/
88
+ target/
89
+
90
+ # Jupyter Notebook
91
+ .ipynb_checkpoints
92
+
93
+ # IPython
94
+ profile_default/
95
+ ipython_config.py
96
+
97
+ # pyenv
98
+ # For a library or package, you might want to ignore these files since the code is
99
+ # intended to run in multiple environments; otherwise, check them in:
100
+ # .python-version
101
+
102
+ # pipenv
103
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
104
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
105
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
106
+ # install all needed dependencies.
107
+ #Pipfile.lock
108
+
109
+ # UV
110
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
111
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
112
+ # commonly ignored for libraries.
113
+ #uv.lock
114
+
115
+ # poetry
116
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
117
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
118
+ # commonly ignored for libraries.
119
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
120
+ #poetry.lock
121
+ #poetry.toml
122
+
123
+ # pdm
124
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
125
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
126
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
127
+ #pdm.lock
128
+ #pdm.toml
129
+ .pdm-python
130
+ .pdm-build/
131
+
132
+ # pixi
133
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
134
+ #pixi.lock
135
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
136
+ # in the .venv directory. It is recommended not to include this directory in version control.
137
+ .pixi
138
+
139
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
140
+ __pypackages__/
141
+
142
+ # Celery stuff
143
+ celerybeat-schedule
144
+ celerybeat.pid
145
+
146
+ # SageMath parsed files
147
+ *.sage.py
148
+
149
+ # Environments
150
+ .env
151
+ # .envrc
152
+ .venv
153
+ env/
154
+ venv/
155
+ ENV/
156
+ env.bak/
157
+ venv.bak/
158
+
159
+ # Spyder project settings
160
+ .spyderproject
161
+ .spyproject
162
+
163
+ # Rope project settings
164
+ .ropeproject
165
+
166
+ # mkdocs documentation
167
+ /site
168
+
169
+ # mypy
170
+ .mypy_cache/
171
+ .dmypy.json
172
+ dmypy.json
173
+
174
+ # Pyre type checker
175
+ .pyre/
176
+
177
+ # pytype static type analyzer
178
+ .pytype/
179
+
180
+ # Cython debug symbols
181
+ cython_debug/
182
+
183
+ # PyCharm
184
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
185
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
186
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
187
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
188
+ #.idea/
189
+
190
+ # Abstra
191
+ # Abstra is an AI-powered process automation framework.
192
+ # Ignore directories containing user credentials, local state, and settings.
193
+ # Learn more at https://abstra.io/docs
194
+ .abstra/
195
+
196
+ # Visual Studio Code
197
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
198
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
199
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
200
+ # you could uncomment the following to ignore the entire vscode folder
201
+ # .vscode/
202
+
203
+ # Ruff stuff:
204
+ .ruff_cache/
205
+
206
+ # PyPI configuration file
207
+ .pypirc
208
+
209
+ # Cursor
210
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
211
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
212
+ # refer to https://docs.cursor.com/context/ignore-files
213
+ .cursorignore
214
+ .cursorindexingignore
215
+
216
+ # Marimo
217
+ marimo/_static/
218
+ marimo/_lsp/
219
+ __marimo__/
@@ -0,0 +1,78 @@
1
+ cff-version: 1.2.0
2
+ message: "If you use FireDataForge, please cite the article in 'preferred-citation'."
3
+ title: FireDataForge
4
+ type: software
5
+ version: 0.1.0
6
+ doi: 10.5281/zenodo.20743742
7
+ url: https://doi.org/10.5281/zenodo.20743742
8
+ license: MIT
9
+ repository-code: https://github.com/xiazeyu/FireDataForge
10
+ authors:
11
+ - family-names: Xia
12
+ given-names: Zeyu
13
+ orcid: "https://orcid.org/0000-0003-0234-5857"
14
+ affiliation: University of Virginia
15
+ - family-names: Chen
16
+ given-names: Lexie
17
+ orcid: "https://orcid.org/0009-0004-6682-1474"
18
+ affiliation: University of Virginia
19
+ - family-names: Liu
20
+ given-names: Ye
21
+ orcid: "https://orcid.org/0000-0003-2601-7970"
22
+ affiliation: Pacific Northwest National Laboratory
23
+ - family-names: Huang
24
+ given-names: Huilin
25
+ orcid: "https://orcid.org/0000-0002-7328-6738"
26
+ affiliation: University of Virginia
27
+ preferred-citation:
28
+ type: article
29
+ title: "FireDataForge: A Unified Framework for Multi-Source Wildfire Data Retrieval and Integration"
30
+ doi: 10.48550/arXiv.2606.21198
31
+ url: "https://doi.org/10.48550/arXiv.2606.21198"
32
+ journal: "arXiv"
33
+ year: 2026
34
+ month: 6
35
+ notes: "arXiv:2606.21198 [cs.CE]"
36
+ authors:
37
+ - family-names: Xia
38
+ given-names: Zeyu
39
+ orcid: "https://orcid.org/0000-0003-0234-5857"
40
+ affiliation: University of Virginia
41
+ - family-names: Chen
42
+ given-names: Lexie
43
+ orcid: "https://orcid.org/0009-0004-6682-1474"
44
+ affiliation: University of Virginia
45
+ - family-names: Liu
46
+ given-names: Ye
47
+ orcid: "https://orcid.org/0000-0003-2601-7970"
48
+ affiliation: Pacific Northwest National Laboratory
49
+ - family-names: Huang
50
+ given-names: Huilin
51
+ orcid: "https://orcid.org/0000-0002-7328-6738"
52
+ affiliation: University of Virginia
53
+ references:
54
+ - type: dataset
55
+ title: "FireDataForge: example and reproducibility bundle"
56
+ doi: 10.5281/zenodo.20743743
57
+ version: "1.0.0"
58
+ year: 2026
59
+ publisher:
60
+ name: Zenodo
61
+ url: "https://doi.org/10.5281/zenodo.20743743"
62
+ authors:
63
+ - family-names: Xia
64
+ given-names: Zeyu
65
+ orcid: "https://orcid.org/0000-0003-0234-5857"
66
+ affiliation: University of Virginia
67
+ - family-names: Chen
68
+ given-names: Lexie
69
+ orcid: "https://orcid.org/0009-0004-6682-1474"
70
+ affiliation: University of Virginia
71
+ - family-names: Liu
72
+ given-names: Ye
73
+ orcid: "https://orcid.org/0000-0003-2601-7970"
74
+ affiliation: Pacific Northwest National Laboratory
75
+ - family-names: Huang
76
+ given-names: Huilin
77
+ orcid: "https://orcid.org/0000-0002-7328-6738"
78
+ affiliation: University of Virginia
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Zeyu Xia
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.