Skip to main content

No project description provided

Project description

OTLMOW-ModelBuilder

PyPI otlmow-modelbuilder-downloads Unittests PyPI - Python Version GitHub issues coverage

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

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


Download files

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

Source Distribution

otlmow_modelbuilder-0.13.tar.gz (59.5 kB view hashes)

Uploaded Source

Built Distribution

otlmow_modelbuilder-0.13-py3-none-any.whl (58.6 kB view hashes)

Uploaded Python 3

Supported by

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