No project description provided
Project description
OTLMOW-ModelBuilder
Summary
The main use case of otlmow-modelbuilder is to provide create the class model of otlmow_model, by reading in a OTL SQLite or subset.
OTLMOW Project
This project aims to implement the Flemish data standard OTL (https://wegenenverkeer.data.vlaanderen.be/) in Python. It is split into different packages to reduce compatibility issues
- otlmow_model
- otlmow_modelbuilder (you are currently looking at this package)
- otlmow_converter
- otlmow_template
- otlmow_postenmapping
- otlmow_davie
Installation and requirements
OTLMOW-ModelBuilder has one dependency besides the standard Python libraries: rdflib. It will be automatically installed when installing this library. Currently, you need at least Python version 3.6 to use this library.
To install the OTL MOW project into your Python project, use pip to install it:
pip install otlmow_modelbuilder
To upgrade an existing installation use:
pip install otlmow_modelbuilder --upgrade
Usage
In order to create a model, the ModelBuilder requires two Path parameters:
- otl_subset_location: the location of OTL SQLite file that is used to build the model with (this can be a subset)
- directory: the location where the model will be created
Note that the given directory will be emptied if needed.
Additionally, it is possible to also add the location of the Geometry Artefact. If used, the classes will inherit from the various geometry type classes to add validation to the property 'geometry'.
logging.basicConfig(level=logging.INFO, format='%(message)s')
current_dir = Path(__file__).parent
otl_subset_path = Path(current_dir / 'InputFiles' / 'OTL 2.6.db')
GA_file_path = Path(current_dir / 'InputFiles' / 'Geometrie_Artefact_2.6.db')
model_directory = Path(current_dir.parent.parent / 'OTLMOW-Model/otlmow_model')
ModelBuilder.build_otl_datamodel(otl_subset_location=otl_subset_path,
geometry_artefact_location=GA_file_path,
directory=model_directory)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for otlmow_modelbuilder-0.10-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bfe084a7303fe0aae712f428fd9a5eb417e08b9eb6357dec8bd6d5321d411c0b |
|
MD5 | 2629cbb139c5c93799f9e43910b2b4e8 |
|
BLAKE2b-256 | 0e8d29fe95914d5c8203bcb25f995295e93d955e52384506a9ac7b4b36e7b90e |