oex 0.2.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. oex-0.2.0/CHANGELOG.md +65 -0
  2. oex-0.2.0/LICENSE +674 -0
  3. oex-0.2.0/PKG-INFO +132 -0
  4. oex-0.2.0/README.md +92 -0
  5. oex-0.2.0/pyproject.toml +126 -0
  6. oex-0.2.0/src/oex/__init__.py +32 -0
  7. oex-0.2.0/src/oex/boundary.py +120 -0
  8. oex-0.2.0/src/oex/cli.py +207 -0
  9. oex-0.2.0/src/oex/config/__init__.py +35 -0
  10. oex-0.2.0/src/oex/config/loader.py +118 -0
  11. oex-0.2.0/src/oex/config/schema.py +143 -0
  12. oex-0.2.0/src/oex/defaults/__init__.py +1 -0
  13. oex-0.2.0/src/oex/defaults/base.yaml +372 -0
  14. oex-0.2.0/src/oex/duckdb_session.py +56 -0
  15. oex-0.2.0/src/oex/exporter.py +366 -0
  16. oex-0.2.0/src/oex/hdx_publisher.py +108 -0
  17. oex-0.2.0/src/oex/logging_setup.py +29 -0
  18. oex-0.2.0/src/oex/metadata.py +160 -0
  19. oex-0.2.0/src/oex/osm/__init__.py +7 -0
  20. oex-0.2.0/src/oex/osm/build_cache.py +129 -0
  21. oex-0.2.0/src/oex/osm/fetch_planet.py +103 -0
  22. oex-0.2.0/src/oex/osm/geofabrik.py +110 -0
  23. oex-0.2.0/src/oex/osm/runner.py +225 -0
  24. oex-0.2.0/src/oex/overture/__init__.py +5 -0
  25. oex-0.2.0/src/oex/overture/runner.py +101 -0
  26. oex-0.2.0/src/oex/py.typed +0 -0
  27. oex-0.2.0/src/oex/sources/__init__.py +10 -0
  28. oex-0.2.0/src/oex/sources/base.py +37 -0
  29. oex-0.2.0/src/oex/sql.py +59 -0
  30. oex-0.2.0/src/oex/system.py +19 -0
  31. oex-0.2.0/src/oex/writers.py +120 -0
  32. oex-0.2.0/src/oex/zip_bundle.py +56 -0
  33. oex-0.2.0/tests/conftest.py +58 -0
  34. oex-0.2.0/tests/test_boundary.py +47 -0
  35. oex-0.2.0/tests/test_bundled_schemas.py +112 -0
  36. oex-0.2.0/tests/test_categories_file.py +86 -0
  37. oex-0.2.0/tests/test_config.py +91 -0
  38. oex-0.2.0/tests/test_engine_dispatch.py +140 -0
  39. oex-0.2.0/tests/test_geofabrik.py +111 -0
  40. oex-0.2.0/tests/test_metadata.py +74 -0
  41. oex-0.2.0/tests/test_osm_integration.py +185 -0
  42. oex-0.2.0/tests/test_overture_integration.py +108 -0
  43. oex-0.2.0/tests/test_sql.py +35 -0
  44. oex-0.2.0/tests/test_writers.py +93 -0
  45. oex-0.2.0/tests/test_zip_bundle.py +32 -0
oex-0.2.0/CHANGELOG.md ADDED
@@ -0,0 +1,65 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ This project follows [Conventional Commits](https://www.conventionalcommits.org/)
6
+ and is auto-managed by [commitizen](https://commitizen-tools.github.io/commitizen/).
7
+
8
+ ## 0.2.0 (2026-05-07)
9
+
10
+ ### Feat
11
+
12
+ - **osm**: adds osm as support and refactors entire setup with modern python deps
13
+
14
+ ### Fix
15
+
16
+ - **config**: adds config dataset inside CONFIG class
17
+ - **license**: fixes license url not being parsed issue
18
+
19
+ ## 0.1.1 (2025-03-30)
20
+
21
+ ### Fix
22
+
23
+ - **lcs**: adds layer creation option and fixes encoding issue
24
+
25
+ ## 0.1.0 (2025-03-30)
26
+
27
+ ### Feat
28
+
29
+ - **readme**: add default Python example for Overture2HDX configuration
30
+
31
+ ### Fix
32
+
33
+ - **encode**: fixes bug on encoding and adds more attributes to datasets
34
+
35
+ ## 0.0.6 (2025-03-30)
36
+
37
+ ### Fix
38
+
39
+ - **file**: fixes bug on file too large
40
+ - **yaml**: fixes bug with categories in tphub
41
+
42
+ ## 0.0.5 (2025-03-30)
43
+
44
+ ### Fix
45
+
46
+ - **schema**: adds default schema and fixes issues with license
47
+ - **license**: adds license info in yaml
48
+
49
+ ## 0.0.4 (2025-03-30)
50
+
51
+ ### Fix
52
+
53
+ - **category**: adds category to hdx exports and fixes bug on shapefile generation
54
+
55
+ ## 0.0.3 (2024-11-08)
56
+
57
+ ### Fix
58
+
59
+ - **doc-generation**: fix for readme doc link to package
60
+
61
+ ## 0.0.2 (2024-11-08)
62
+
63
+ ### Fix
64
+
65
+ - **config**: config fix