Coverage for src/overturetoosm/__init__.py: 100%
9 statements
« prev ^ index » next coverage.py v7.6.0, created at 2024-07-28 10:12 -0400
« prev ^ index » next coverage.py v7.6.0, created at 2024-07-28 10:12 -0400
1"""`overturetoosm` is a Python package to convert objects tagged in the
2Overture schema for use in OSM. Only Overture's `places` and `buildings`
3layers are currently supported.
4"""
6# SPDX-FileCopyrightText: 2024-present Will <wahubsch@gmail.com>
7#
8# SPDX-License-Identifier: MIT
10from .places import process_place
11from .buildings import process_building
12from .utils import process_geojson
13from . import places
14from . import buildings
15from . import objects
16from . import utils
17from . import resources
19__all__ = [
20 "process_place",
21 "process_building",
22 "process_geojson",
23 "places",
24 "buildings",
25 "objects",
26 "utils",
27 "resources",
28]