plans 1.1.0.post1.dev0__py3-none-any.whl
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.
- plans/__init__.py +41 -0
- plans/analyst.py +3092 -0
- plans/config.py +103 -0
- plans/data/.gitkeep +2 -0
- plans/data/fields.csv +61 -0
- plans/data/files.csv +26 -0
- plans/data/tools.csv +2 -0
- plans/datasets/__init__.py +42 -0
- plans/datasets/chrono.py +540 -0
- plans/datasets/core.py +6224 -0
- plans/datasets/spatial.py +1298 -0
- plans/geo.py +1397 -0
- plans/hydrology/__init__.py +42 -0
- plans/hydrology/core.py +723 -0
- plans/hydrology/downscaled.py +1024 -0
- plans/hydrology/upscaled.py +3890 -0
- plans/parsers/__init__.py +40 -0
- plans/parsers/flare.py +484 -0
- plans/parsers/inmet.py +587 -0
- plans/parsers/snirh.py +219 -0
- plans/project.py +964 -0
- plans/qutils.py +3648 -0
- plans/root.py +2256 -0
- plans/tools/__init__.py +0 -0
- plans/tools/analysis_climate_series_lulc.py +231 -0
- plans/tools/analysis_dto.py +193 -0
- plans/tools/analysis_lulc_parameters.py +269 -0
- plans/tools/analysis_lulc_series.py +220 -0
- plans/tools/analysis_soils_parameters.py +253 -0
- plans/tools/core.py +559 -0
- plans/tools/demo.py +168 -0
- plans/viewer.py +414 -0
- plans-1.1.0.post1.dev0.dist-info/METADATA +120 -0
- plans-1.1.0.post1.dev0.dist-info/RECORD +37 -0
- plans-1.1.0.post1.dev0.dist-info/WHEEL +5 -0
- plans-1.1.0.post1.dev0.dist-info/licenses/LICENSE +674 -0
- plans-1.1.0.post1.dev0.dist-info/top_level.txt +1 -0
plans/__init__.py
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2025 The Project Authors
|
|
4
|
+
# See pyproject.toml for authors/maintainers.
|
|
5
|
+
# See LICENSE for license details.
|
|
6
|
+
"""
|
|
7
|
+
{Short package description (1-3 sentences)}
|
|
8
|
+
todo docstring
|
|
9
|
+
|
|
10
|
+
Features
|
|
11
|
+
--------
|
|
12
|
+
todo docstring
|
|
13
|
+
|
|
14
|
+
* {feature 1}
|
|
15
|
+
* {feature 2}
|
|
16
|
+
* {feature 3}
|
|
17
|
+
* {etc}
|
|
18
|
+
|
|
19
|
+
Overview
|
|
20
|
+
--------
|
|
21
|
+
todo docstring
|
|
22
|
+
{Overview description}
|
|
23
|
+
|
|
24
|
+
Examples
|
|
25
|
+
--------
|
|
26
|
+
todo docstring
|
|
27
|
+
{Examples in rST}
|
|
28
|
+
|
|
29
|
+
Print a message
|
|
30
|
+
|
|
31
|
+
.. code-block:: python
|
|
32
|
+
|
|
33
|
+
# print message
|
|
34
|
+
print("Hello world!")
|
|
35
|
+
# [Output] >> 'Hello world!'
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
"""
|
|
39
|
+
# EXPOSE MODULES FROM PACKAGE
|
|
40
|
+
# ***********************************************************************
|
|
41
|
+
from plans.project import Project, new_project, load_project
|