Skip to main content

A Python package for integrating OpenGMS geographic model services.

Project description

PyGeoModel

PyGeoModel is a Python package for integrating OpenGMS geographic model services into Python-based urban data science workflows. It provides programmatic access to model-service discovery, metadata inspection, service invocation, and result management. For exploratory notebook-based analysis, PyGeoModel also provides an optional Jupyter interface built on the same core API.

Installation

pip install PyGeoModel

Use the package in Python with:

from pygeomodel import GeoModeler

Core API

from pygeomodel import GeoModeler

modeler = GeoModeler()

models = modeler.search_models("photovoltaic")
model = modeler.get_model("Roof Photovoltaic Carbon Emission Reduction Potential Assessment Model")

print(model.description)
print(model.inputs)
print(model.outputs)

Model services can be invoked programmatically:

result = modeler.invoke(
    "Roof Photovoltaic Carbon Emission Reduction Potential Assessment Model",
    params={
        "system_efficiency": 0.8,
        "start_time": "2018-01",
        "end_time": "2018-12",
        "roof_vector_path": "data/rooftops.zip",
    },
)

saved_files = result.save(output_dir="data/result/live_run")

The model configuration is recorded directly in the Python cell through the explicit params dictionary, while TaskResult.save() stores the downloadable model outputs for subsequent analysis.

Notebook Interface

modeler.show_models()
modeler.invoke_model("Roof Photovoltaic Carbon Emission Reduction Potential Assessment Model")

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.

Recommendation and Q&A Records

recommendation = modeler.suggest_model(return_result=True)
recommendation.to_json("recommendation_record.json")

answer = modeler.ask_model(
    "Roof Photovoltaic Carbon Emission Reduction Potential Assessment Model",
    "What input data are required?",
)

The recommendation service automatically builds notebook/data context and calls the configured recommendation workflow. Q&A uses OpenGMS model metadata and an OpenAI-compatible web-enabled model. The main notebook workflow is designed to run out of the box for demonstration use.

Relation to OpenGMS

OpenGMS provides the model-service platform and online execution infrastructure. PyGeoModel is a Python client package that exposes OpenGMS model-service discovery, metadata inspection, task invocation, and result management to Python and notebook workflows.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pygeomodel-1.0.11.tar.gz (3.9 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pygeomodel-1.0.11-py3-none-any.whl (4.1 MB view details)

Uploaded Python 3

File details

Details for the file pygeomodel-1.0.11.tar.gz.

File metadata

  • Download URL: pygeomodel-1.0.11.tar.gz
  • Upload date:
  • Size: 3.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.6

File hashes

Hashes for pygeomodel-1.0.11.tar.gz
Algorithm Hash digest
SHA256 07d164c14ad753ac21a477a10929b42558099b5bf251f97e8363c4a92abcbf07
MD5 d1e0b295ed3eb53e1abf707cec04d387
BLAKE2b-256 c48ede5392262dfafae90f5742ed14549047f77072354d05f61ad5bcec1ffce0

See more details on using hashes here.

File details

Details for the file pygeomodel-1.0.11-py3-none-any.whl.

File metadata

  • Download URL: pygeomodel-1.0.11-py3-none-any.whl
  • Upload date:
  • Size: 4.1 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.6

File hashes

Hashes for pygeomodel-1.0.11-py3-none-any.whl
Algorithm Hash digest
SHA256 adf8539d8f440f2f14a25332a8f5890d678e109dd89247858438353dd45ecaaa
MD5 3e8cec627540adb344213dea43d5ed16
BLAKE2b-256 c40e7b44c03f3b8285702d4de97994a857e3dff45043406ecfa0b5ed45ed6626

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page