This release is a pre-release and may not be stable for production use.
XMAS-Core
Model, encode, migrate and store XPlanung, XTrasse and XWärmeplan data. XMAS-Core represents the
application schemas as Pydantic models and is meant as a library for other
applications to build on; the xmas CLI exposes the same operations on the command line.
Supported appschemas:
- XPlanung 4.1, 5.4, 6.0, 6.1
- XTrasse 2.0, 2.1
- XWärmeplan 0.9
The UML model of each appschema is the single source of truth. Every schema version is generated from it into a Pydantic module that also records each class's and property's UML metadata: stereotype, type name, unit of measure and association ends. Everything else is driven by that metadata, not by per-class code. The GML and JSON-FG codecs encode and decode any class generically. The database stores every schema in one generic table, and the navigable roles it follows are derived from the associations. Migration and style rules are checked against the schemas when they load. A new schema version starts as generated code, not hand-written classes.
Features
- Reading and writing GML and JSON-FG, from files, stdin, URLs or a WFS.
- Storing plans in PostgreSQL/PostGIS, with Alembic-managed schemas and several tenant schemas served from one process.
- Migrating XPlanung documents to a later version, several hops in one call, with a per-feature report of what could not be carried over.
- Adding style properties (stylesheetId, schriftinhalt) to XPlanung presentational objects based on defined rules.
Installation
From PyPI (Python 3.14):
pip install xmas-core
GDAL and its Python bindings are required; the GDAL system library and Python package versions must match.
With Pixi, which brings GDAL along:
git clone https://gitlab.opencode.de/xleitstelle/xmas-core.git
cd xmas-core
pixi install -e prod
As a container: images are in the container registry (see usage).
Quickstart
xmas convert input.gml output.json # GML -> JSON-FG
xmas convert xplan41.gml xplan61.gml --to 6.1 --report issues.json
xmas db create-schema postgresql://user@host/db
xmas convert input.gml postgresql://user@host/db # GML -> PostGIS
From Python:
from xmas_core import codec
from xmas_core.processing.transform import migrate
collection = codec.read("xplan41.gml")
result = migrate(collection, "6.1")
More in the how-to guides.
Development
With Pixi installed:
git clone https://gitlab.opencode.de/xleitstelle/xmas-core.git
cd xmas-core
pixi run dev # environment + pre-commit hooks
pixi run test # full suite with coverage
pixi run test tests/path.py::test_name # one test
pixi run test -m db # by marker (see pyproject.toml)
pixi run docs-serve # documentation preview
DB tests start their own PostGIS container (podman or Docker).
The design is documented in the module docstrings; for architecture and workflows see the Developer Guide.
License
The code in this repository is licensed under the EUPL-1.2+
© XLeitstelle, 2025-2026
Release files for xmas-core 2.0.0rc2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| xmas_core-2.0.0rc2.tar.gz | 734.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| xmas_core-2.0.0rc2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.5 MB
Release files / xmas_core-2.0.0rc2.tar.gz
| Download URL | xmas_core-2.0.0rc2.tar.gz |
|---|---|
| Size | 734.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
679f3e4fe51dd144bb82fe21cc597f6ea3b1219abce99648cc8693482098ce0f
|
|
BLAKE2b-256 checksum How to use checksums |
dbd74effba30fad5cd172d212c92cc32370f82402f6fa5e7f6cc152eca31dd6e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / xmas_core-2.0.0rc2-py3-none-any.whl
| Download URL | xmas_core-2.0.0rc2-py3-none-any.whl |
|---|---|
| Size | 779.3 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
7a50baf964c7a05bf91e4ae2664fda077b37d50814995671c2555c80c46aa73e
|
|
BLAKE2b-256 checksum How to use checksums |
e2bb8591acbf06ee63312fa1a049dab1506631baafe8851966b014f7ca647c8e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
uv/0.12.19 {"installer":{"name":"uv","version":"0.12.19","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|