PyGeoModel 1.0.11__tar.gz → 1.0.12__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.
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/PKG-INFO +3 -4
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/PyGeoModel.egg-info/PKG-INFO +3 -4
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/README.md +2 -3
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/pygeomodel/__init__.py +1 -1
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/setup.py +1 -1
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/LICENSE +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/MANIFEST.in +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/PyGeoModel.egg-info/SOURCES.txt +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/PyGeoModel.egg-info/dependency_links.txt +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/PyGeoModel.egg-info/requires.txt +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/PyGeoModel.egg-info/top_level.txt +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/ogmsServer2/__init__.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/ogmsServer2/base.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/ogmsServer2/constants.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/ogmsServer2/openModel.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/ogmsServer2/openUtils/__init__.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/ogmsServer2/openUtils/exceptions.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/ogmsServer2/openUtils/http_client.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/ogmsServer2/openUtils/mdlUtils.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/ogmsServer2/openUtils/parameterValidator.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/ogmsServer2/openUtils/stateManager.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/pygeomodel/client.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/pygeomodel/config.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/pygeomodel/consensus.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/pygeomodel/context.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/pygeomodel/data/__init__.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/pygeomodel/data/computeModel.json +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/pygeomodel/data/modelContext.txt +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/pygeomodel/modeler.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/pygeomodel/models.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/pygeomodel/notebook.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/pygeomodel/qa.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/pygeomodel/recommendation.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/pygeomodel/results.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/scripts.py +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/setup.cfg +0 -0
- {pygeomodel-1.0.11 → pygeomodel-1.0.12}/tests/test_core_api.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyGeoModel
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.12
|
|
4
4
|
Summary: A Python package for integrating OpenGMS geographic model services.
|
|
5
5
|
Home-page: https://github.com/MpLebron/PyGeoModel
|
|
6
6
|
Author: Peilong Ma
|
|
@@ -101,11 +101,10 @@ modeler.invoke_model("Roof Photovoltaic Carbon Emission Reduction Potential Asse
|
|
|
101
101
|
|
|
102
102
|
The notebook interface renders model search, metadata inspection, parameter entry, task execution, and output display. It uses the same `search_models()`, `get_model()`, and `invoke()` functions as the programmatic API so GUI operations can be converted into explicit Python parameters and saved model outputs when needed.
|
|
103
103
|
|
|
104
|
-
## Recommendation and Q&A
|
|
104
|
+
## Recommendation and Q&A
|
|
105
105
|
|
|
106
106
|
```python
|
|
107
|
-
recommendation = modeler.suggest_model(
|
|
108
|
-
recommendation.to_json("recommendation_record.json")
|
|
107
|
+
recommendation = modeler.suggest_model()
|
|
109
108
|
|
|
110
109
|
answer = modeler.ask_model(
|
|
111
110
|
"Roof Photovoltaic Carbon Emission Reduction Potential Assessment Model",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyGeoModel
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.12
|
|
4
4
|
Summary: A Python package for integrating OpenGMS geographic model services.
|
|
5
5
|
Home-page: https://github.com/MpLebron/PyGeoModel
|
|
6
6
|
Author: Peilong Ma
|
|
@@ -101,11 +101,10 @@ modeler.invoke_model("Roof Photovoltaic Carbon Emission Reduction Potential Asse
|
|
|
101
101
|
|
|
102
102
|
The notebook interface renders model search, metadata inspection, parameter entry, task execution, and output display. It uses the same `search_models()`, `get_model()`, and `invoke()` functions as the programmatic API so GUI operations can be converted into explicit Python parameters and saved model outputs when needed.
|
|
103
103
|
|
|
104
|
-
## Recommendation and Q&A
|
|
104
|
+
## Recommendation and Q&A
|
|
105
105
|
|
|
106
106
|
```python
|
|
107
|
-
recommendation = modeler.suggest_model(
|
|
108
|
-
recommendation.to_json("recommendation_record.json")
|
|
107
|
+
recommendation = modeler.suggest_model()
|
|
109
108
|
|
|
110
109
|
answer = modeler.ask_model(
|
|
111
110
|
"Roof Photovoltaic Carbon Emission Reduction Potential Assessment Model",
|
|
@@ -56,11 +56,10 @@ modeler.invoke_model("Roof Photovoltaic Carbon Emission Reduction Potential Asse
|
|
|
56
56
|
|
|
57
57
|
The notebook interface renders model search, metadata inspection, parameter entry, task execution, and output display. It uses the same `search_models()`, `get_model()`, and `invoke()` functions as the programmatic API so GUI operations can be converted into explicit Python parameters and saved model outputs when needed.
|
|
58
58
|
|
|
59
|
-
## Recommendation and Q&A
|
|
59
|
+
## Recommendation and Q&A
|
|
60
60
|
|
|
61
61
|
```python
|
|
62
|
-
recommendation = modeler.suggest_model(
|
|
63
|
-
recommendation.to_json("recommendation_record.json")
|
|
62
|
+
recommendation = modeler.suggest_model()
|
|
64
63
|
|
|
65
64
|
answer = modeler.ask_model(
|
|
66
65
|
"Roof Photovoltaic Carbon Emission Reduction Potential Assessment Model",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|