voxcity 0.6.20__tar.gz → 0.6.22__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.
Potentially problematic release.
This version of voxcity might be problematic. Click here for more details.
- {voxcity-0.6.20 → voxcity-0.6.22}/PKG-INFO +2 -2
- {voxcity-0.6.20 → voxcity-0.6.22}/README.md +1 -1
- {voxcity-0.6.20 → voxcity-0.6.22}/pyproject.toml +1 -1
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/exporter/obj.py +1405 -1405
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/generator.py +1301 -1305
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/utils/visualization.py +2575 -2691
- {voxcity-0.6.20 → voxcity-0.6.22}/AUTHORS.rst +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/LICENSE +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/__init__.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/downloader/__init__.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/downloader/citygml.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/downloader/eubucco.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/downloader/gee.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/downloader/mbfp.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/downloader/oemj.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/downloader/osm.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/downloader/overture.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/downloader/utils.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/exporter/__init__.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/exporter/cityles.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/exporter/envimet.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/exporter/magicavoxel.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/exporter/netcdf.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/geoprocessor/__init__.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/geoprocessor/draw.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/geoprocessor/grid.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/geoprocessor/mesh.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/geoprocessor/network.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/geoprocessor/polygon.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/geoprocessor/utils.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/simulator/__init__.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/simulator/solar.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/simulator/utils.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/simulator/view.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/utils/__init__.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/utils/lc.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/utils/material.py +0 -0
- {voxcity-0.6.20 → voxcity-0.6.22}/src/voxcity/utils/weather.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: voxcity
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.22
|
|
4
4
|
Summary: voxcity is an easy and one-stop tool to output 3d city models for microclimate simulation by integrating multiple geospatial open-data
|
|
5
5
|
License: MIT
|
|
6
6
|
License-File: AUTHORS.rst
|
|
@@ -129,7 +129,7 @@ Make sure you have Python 3.12 installed. Install voxcity with:
|
|
|
129
129
|
```bash
|
|
130
130
|
conda create --name voxcity python=3.12
|
|
131
131
|
conda activate voxcity
|
|
132
|
-
conda install -c conda-forge gdal
|
|
132
|
+
conda install -c conda-forge gdal timezonefinder
|
|
133
133
|
pip install voxcity
|
|
134
134
|
```
|
|
135
135
|
|
|
@@ -67,7 +67,7 @@ Make sure you have Python 3.12 installed. Install voxcity with:
|
|
|
67
67
|
```bash
|
|
68
68
|
conda create --name voxcity python=3.12
|
|
69
69
|
conda activate voxcity
|
|
70
|
-
conda install -c conda-forge gdal
|
|
70
|
+
conda install -c conda-forge gdal timezonefinder
|
|
71
71
|
pip install voxcity
|
|
72
72
|
```
|
|
73
73
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "voxcity"
|
|
3
|
-
version = "0.6.
|
|
3
|
+
version = "0.6.22"
|
|
4
4
|
description = "voxcity is an easy and one-stop tool to output 3d city models for microclimate simulation by integrating multiple geospatial open-data"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = "MIT"
|