voxcity 1.0.2__py3-none-any.whl → 1.0.15__py3-none-any.whl
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.
- voxcity/downloader/ocean.py +559 -0
- voxcity/generator/api.py +6 -0
- voxcity/generator/grids.py +45 -32
- voxcity/generator/pipeline.py +327 -27
- voxcity/geoprocessor/draw.py +14 -8
- voxcity/geoprocessor/raster/__init__.py +2 -0
- voxcity/geoprocessor/raster/core.py +31 -0
- voxcity/geoprocessor/raster/landcover.py +173 -49
- voxcity/geoprocessor/raster/raster.py +1 -1
- voxcity/models.py +2 -0
- voxcity/simulator/solar/__init__.py +13 -0
- voxcity/simulator_gpu/__init__.py +90 -0
- voxcity/simulator_gpu/core.py +322 -0
- voxcity/simulator_gpu/domain.py +36 -0
- voxcity/simulator_gpu/init_taichi.py +154 -0
- voxcity/simulator_gpu/raytracing.py +776 -0
- voxcity/simulator_gpu/solar/__init__.py +222 -0
- voxcity/simulator_gpu/solar/core.py +66 -0
- voxcity/simulator_gpu/solar/csf.py +1249 -0
- voxcity/simulator_gpu/solar/domain.py +618 -0
- voxcity/simulator_gpu/solar/epw.py +421 -0
- voxcity/simulator_gpu/solar/integration.py +4322 -0
- voxcity/simulator_gpu/solar/mask.py +459 -0
- voxcity/simulator_gpu/solar/radiation.py +3019 -0
- voxcity/simulator_gpu/solar/raytracing.py +182 -0
- voxcity/simulator_gpu/solar/reflection.py +533 -0
- voxcity/simulator_gpu/solar/sky.py +907 -0
- voxcity/simulator_gpu/solar/solar.py +337 -0
- voxcity/simulator_gpu/solar/svf.py +446 -0
- voxcity/simulator_gpu/solar/volumetric.py +2099 -0
- voxcity/simulator_gpu/visibility/__init__.py +109 -0
- voxcity/simulator_gpu/visibility/geometry.py +278 -0
- voxcity/simulator_gpu/visibility/integration.py +808 -0
- voxcity/simulator_gpu/visibility/landmark.py +753 -0
- voxcity/simulator_gpu/visibility/view.py +944 -0
- voxcity/visualizer/renderer.py +2 -1
- {voxcity-1.0.2.dist-info → voxcity-1.0.15.dist-info}/METADATA +16 -53
- {voxcity-1.0.2.dist-info → voxcity-1.0.15.dist-info}/RECORD +41 -16
- {voxcity-1.0.2.dist-info → voxcity-1.0.15.dist-info}/WHEEL +0 -0
- {voxcity-1.0.2.dist-info → voxcity-1.0.15.dist-info}/licenses/AUTHORS.rst +0 -0
- {voxcity-1.0.2.dist-info → voxcity-1.0.15.dist-info}/licenses/LICENSE +0 -0
voxcity/visualizer/renderer.py
CHANGED
|
@@ -173,7 +173,8 @@ def visualize_voxcity_plotly(
|
|
|
173
173
|
a = np.pad(a, ((0, px), (0, py), (0, pz)), constant_values=False)
|
|
174
174
|
nxp, nyp, nzp = a.shape
|
|
175
175
|
a = a.reshape(nxp // sx, sx, nyp // sy, sy, nzp // sz, sz)
|
|
176
|
-
|
|
176
|
+
# Max over pooling dims (1, 3, 5) - must do all at once or adjust indices after each reduction
|
|
177
|
+
a = a.max(axis=(1, 3, 5))
|
|
177
178
|
return a
|
|
178
179
|
occluder = _bool_max_pool_3d((voxel_array != 0), stride)
|
|
179
180
|
else:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: voxcity
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.15
|
|
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
|
|
@@ -15,6 +15,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Provides-Extra: gpu
|
|
18
19
|
Requires-Dist: IPython
|
|
19
20
|
Requires-Dist: affine
|
|
20
21
|
Requires-Dist: astral
|
|
@@ -42,7 +43,7 @@ Requires-Dist: py-vox-io
|
|
|
42
43
|
Requires-Dist: pycountry
|
|
43
44
|
Requires-Dist: pyproj
|
|
44
45
|
Requires-Dist: pyvista
|
|
45
|
-
Requires-Dist: rasterio (
|
|
46
|
+
Requires-Dist: rasterio (>=1.3.11)
|
|
46
47
|
Requires-Dist: requests
|
|
47
48
|
Requires-Dist: reverse_geocoder
|
|
48
49
|
Requires-Dist: rio-cogeo
|
|
@@ -51,6 +52,7 @@ Requires-Dist: scikit-learn
|
|
|
51
52
|
Requires-Dist: scipy
|
|
52
53
|
Requires-Dist: seaborn
|
|
53
54
|
Requires-Dist: shapely
|
|
55
|
+
Requires-Dist: taichi ; extra == "gpu"
|
|
54
56
|
Requires-Dist: timezonefinder
|
|
55
57
|
Requires-Dist: tqdm
|
|
56
58
|
Requires-Dist: trimesh
|
|
@@ -137,56 +139,6 @@ Description-Content-Type: text/markdown
|
|
|
137
139
|
- **Analytical Tools:**
|
|
138
140
|
- **View Index Simulations**: Compute sky view index (SVI) and green view index (GVI) from a specified viewpoint.
|
|
139
141
|
- **Landmark Visibility Maps**: Assess the visibility of selected landmarks within the voxelized environment.
|
|
140
|
-
|
|
141
|
-
## Class Definitions
|
|
142
|
-
|
|
143
|
-
VoxCity uses standardized class definitions for voxel grids and land cover data.
|
|
144
|
-
|
|
145
|
-
### Voxel Semantic Codes
|
|
146
|
-
|
|
147
|
-
The 3D voxel grid uses integer codes to represent different urban elements:
|
|
148
|
-
|
|
149
|
-
| Code | Description |
|
|
150
|
-
|------|-------------|
|
|
151
|
-
| -3 | Building volume |
|
|
152
|
-
| -2 | Tree canopy (vegetation) |
|
|
153
|
-
| -1 | Ground/Subsurface |
|
|
154
|
-
| ≥1 | Land cover class at ground surface |
|
|
155
|
-
|
|
156
|
-
### Standard Land Cover Classes (1-based indices)
|
|
157
|
-
|
|
158
|
-
VoxCity standardizes land cover to a 1-based indexing system (1-14) for consistency across different data sources:
|
|
159
|
-
|
|
160
|
-
| Index | Class Name |
|
|
161
|
-
|-------|------------|
|
|
162
|
-
| 1 | Bareland |
|
|
163
|
-
| 2 | Rangeland |
|
|
164
|
-
| 3 | Shrub |
|
|
165
|
-
| 4 | Agriculture land |
|
|
166
|
-
| 5 | Tree |
|
|
167
|
-
| 6 | Moss and lichen |
|
|
168
|
-
| 7 | Wet land |
|
|
169
|
-
| 8 | Mangrove |
|
|
170
|
-
| 9 | Water |
|
|
171
|
-
| 10 | Snow and ice |
|
|
172
|
-
| 11 | Developed space |
|
|
173
|
-
| 12 | Road |
|
|
174
|
-
| 13 | Building |
|
|
175
|
-
| 14 | No Data |
|
|
176
|
-
|
|
177
|
-
You can also access these definitions programmatically:
|
|
178
|
-
|
|
179
|
-
```python
|
|
180
|
-
from voxcity.utils import print_class_definitions, print_voxel_codes, print_land_cover_classes
|
|
181
|
-
|
|
182
|
-
# Print all class definitions
|
|
183
|
-
print_class_definitions()
|
|
184
|
-
|
|
185
|
-
# Or print separately
|
|
186
|
-
print_voxel_codes()
|
|
187
|
-
print_land_cover_classes()
|
|
188
|
-
```
|
|
189
|
-
|
|
190
142
|
## Installation
|
|
191
143
|
|
|
192
144
|
Make sure you have Python 3.12 installed. Install voxcity with:
|
|
@@ -572,6 +524,18 @@ G, edge_gdf = get_network_values(
|
|
|
572
524
|
<em>Cumulative Global Solar Irradiance (kW/m²·hour) on Road Network</em>
|
|
573
525
|
</p>
|
|
574
526
|
|
|
527
|
+
## VoxCity Standard Land Cover Classes (used in voxel grids)
|
|
528
|
+
|
|
529
|
+
| Index | Class | Index | Class |
|
|
530
|
+
|:-----:|-------|:-----:|-------|
|
|
531
|
+
| 1 | Bareland | 8 | Mangrove |
|
|
532
|
+
| 2 | Rangeland | 9 | Water |
|
|
533
|
+
| 3 | Shrub | 10 | Snow and ice |
|
|
534
|
+
| 4 | Agriculture land | 11 | Developed space |
|
|
535
|
+
| 5 | Tree | 12 | Road |
|
|
536
|
+
| 6 | Moss and lichen | 13 | Building |
|
|
537
|
+
| 7 | Wet land | 14 | No Data |
|
|
538
|
+
|
|
575
539
|
## References of Data Sources
|
|
576
540
|
|
|
577
541
|
### Building
|
|
@@ -614,7 +578,6 @@ G, edge_gdf = get_network_values(
|
|
|
614
578
|
| [Australian 5M DEM](https://ecat.ga.gov.au/geonetwork/srv/eng/catalog.search#/metadata/89644) | Australia | 5 m | Aerial LiDAR / 2001-2015 |
|
|
615
579
|
| [RGE Alti](https://geoservices.ign.fr/rgealti) | France | 1 m | Aerial LiDAR |
|
|
616
580
|
|
|
617
|
-
|
|
618
581
|
## Citation
|
|
619
582
|
|
|
620
583
|
Please cite the [paper](https://doi.org/10.1016/j.compenvurbsys.2025.102366) if you use `voxcity` in a scientific publication:
|
|
@@ -5,6 +5,7 @@ voxcity/downloader/eubucco.py,sha256=ln1YNaaOgJfxNfCtVbYaMm775-bUvpAA_LDv60_i22w
|
|
|
5
5
|
voxcity/downloader/gba.py,sha256=b-VmlVS8IzCR0OYfWgtlMpuZrB5_0M4EpG8BEBj6YEY,7184
|
|
6
6
|
voxcity/downloader/gee.py,sha256=_dw0677n9t8ZJZflnM4Gfd3FQ2Y5sD-PYmilVu6xkTE,23757
|
|
7
7
|
voxcity/downloader/mbfp.py,sha256=yhKTXJOJZAWqdTBib9BO5meP50lzHAxI6sSYWCCSgNU,6590
|
|
8
|
+
voxcity/downloader/ocean.py,sha256=YFEKA85c2cLSaQHTuV8P_BXF1f3W2S50tFM_sdHPAcA,20325
|
|
8
9
|
voxcity/downloader/oemj.py,sha256=SeMId9MvI-DnGyREpqu5-6D-xwRdMJdYIGcAPFD95rw,16432
|
|
9
10
|
voxcity/downloader/osm.py,sha256=7Wo6lSodci7gALMKLQ_0ricmn0ZrfUK90vKYQ-ayU2A,46285
|
|
10
11
|
voxcity/downloader/overture.py,sha256=hVxu-3Fmuu2E1tEzcDcNyU1cR-aE-6h6jkcxkuqN1-s,13343
|
|
@@ -17,36 +18,36 @@ voxcity/exporter/magicavoxel.py,sha256=QMS547mWqw8RJ-Muba9XNo058E5_oLf-FkHPu8x6k
|
|
|
17
18
|
voxcity/exporter/netcdf.py,sha256=MQhUmyHc_6mVzmlPLIJJQSqATo7AHjkEL-QJ__XViWI,8543
|
|
18
19
|
voxcity/exporter/obj.py,sha256=2LBNF7uJj-myl4AiJsv1yEEa1odT87e0VLvAtdpcEKY,63001
|
|
19
20
|
voxcity/generator/__init__.py,sha256=l11VF8qrSyU-kJUFS4DfzoCGhewPnBeo25RfLxS5LpI,1241
|
|
20
|
-
voxcity/generator/api.py,sha256=
|
|
21
|
-
voxcity/generator/grids.py,sha256=
|
|
21
|
+
voxcity/generator/api.py,sha256=3URDxwo3snhgJeRQc07uvy2VUI3xmEGmjUiqbm07GmA,36415
|
|
22
|
+
voxcity/generator/grids.py,sha256=mQC34XIoKwBmQn4BQ61gZ-GShww2CmRnXbtvAni2BPQ,20753
|
|
22
23
|
voxcity/generator/io.py,sha256=hsDeHDKtHQ59hTabYBtrqYeROVjLtxKBcdUY0JVV3cA,3257
|
|
23
|
-
voxcity/generator/pipeline.py,sha256=
|
|
24
|
+
voxcity/generator/pipeline.py,sha256=z3OUohMh0ssiiFzfsCmhyFkYO8Jawof3CoS5utShef4,26738
|
|
24
25
|
voxcity/generator/update.py,sha256=7udcBckThnffKwe3YQv30G2hSqAVACn2mPL1ZXHtwNE,16157
|
|
25
26
|
voxcity/generator/voxelizer.py,sha256=ym-H4PzvCnEe9UOFzKbaul8u4EyOtjNFANGIXU7kJiA,16197
|
|
26
27
|
voxcity/geoprocessor/__init__.py,sha256=TwFsKhuvZtIC3d_bykvhzJxnxvubHoWeBp3bBbcrw7k,1721
|
|
27
28
|
voxcity/geoprocessor/conversion.py,sha256=Bdf_SNqOhTqYW44MPLWx6-5iyVmZO2Yy1eZ6pDDgyvs,5007
|
|
28
|
-
voxcity/geoprocessor/draw.py,sha256=
|
|
29
|
+
voxcity/geoprocessor/draw.py,sha256=3ghFuEQNj3lB3bDCgqjLbDIuBQDzwJIflujguS5y_FA,63312
|
|
29
30
|
voxcity/geoprocessor/heights.py,sha256=cAksRWaLPFKhv9YsMybT0DCMyuE9WNajRXHpRFbSyN4,8636
|
|
30
31
|
voxcity/geoprocessor/io.py,sha256=iLoip3NXuyj7mk4xvRPMnouIVoR0swzIdrg6R08D68I,3427
|
|
31
32
|
voxcity/geoprocessor/merge_utils.py,sha256=OKMSUAEE9jPiNslzDjWOxrP3s-VSxhEVkWVmDMmbjrI,3159
|
|
32
33
|
voxcity/geoprocessor/mesh.py,sha256=exKl8MagO7jizjebbGNfVJjGRxBv1eH1t5nt7dR1g3k,32913
|
|
33
34
|
voxcity/geoprocessor/network.py,sha256=hNgovcCDZFZzBM1dF3gu02Bk13sNxH90HrRtd7nOKQw,26640
|
|
34
35
|
voxcity/geoprocessor/overlap.py,sha256=taWkqtS79gL-QBClPboz8XzqARO5BwqaTA4iTHvkRfI,2783
|
|
35
|
-
voxcity/geoprocessor/raster/__init__.py,sha256=
|
|
36
|
+
voxcity/geoprocessor/raster/__init__.py,sha256=uPMyQdk2EF7i-DGKbnYvCU64XDtf2UErAjTQ_0q3eCw,2339
|
|
36
37
|
voxcity/geoprocessor/raster/buildings.py,sha256=0y7IakrQg_-1NV4pvSjQoRXalWxzjshY0hpjUWz9qlk,19647
|
|
37
38
|
voxcity/geoprocessor/raster/canopy.py,sha256=DvDB8mT_fY9NaJjanEbv1DCaR9Ceqjn0AIxqiHy4jbs,9668
|
|
38
|
-
voxcity/geoprocessor/raster/core.py,sha256=
|
|
39
|
+
voxcity/geoprocessor/raster/core.py,sha256=uAx-1UjGtNHROSZ7d0vv4KvtUIy1OA4YjAM--ZCYl1k,6793
|
|
39
40
|
voxcity/geoprocessor/raster/export.py,sha256=DCSToWKz249LlnhNShYCE6Ll_9I1d_wcQLzMHHOlQ5Q,3631
|
|
40
|
-
voxcity/geoprocessor/raster/landcover.py,sha256=
|
|
41
|
-
voxcity/geoprocessor/raster/raster.py,sha256=
|
|
41
|
+
voxcity/geoprocessor/raster/landcover.py,sha256=Xjwyb9sVGk8ta4rcHaqWN9dH64YOlVGrq4lg42-q8Eo,11860
|
|
42
|
+
voxcity/geoprocessor/raster/raster.py,sha256=Npx6qaIBghLoBRqaxh3iA0kCHgth5PHDrnxBL5ZsQ-4,4456
|
|
42
43
|
voxcity/geoprocessor/selection.py,sha256=NE2Z0Y1IJkBPB3dEvk0yzZoye9WWGjJVm9xj6m71ZiI,2672
|
|
43
44
|
voxcity/geoprocessor/utils.py,sha256=YrGnubtBKsGocEZx9a2v8Prx1aiXtN_BCB_DWgvaB-w,32398
|
|
44
|
-
voxcity/models.py,sha256=
|
|
45
|
+
voxcity/models.py,sha256=zscGBvHcSSGatSDIP9MNl9NoKe6lbldEk4S3n_5lnao,3025
|
|
45
46
|
voxcity/simulator/__init__.py,sha256=APdkcdaovj0v_RPOaA4SBvFUKT2RM7Hxuuz3Sux4gCo,65
|
|
46
47
|
voxcity/simulator/common/__init__.py,sha256=Yi5h8DtLFUB8T6TsmDeVxuafjcwzpRXXgsN5nmvJLJk,486
|
|
47
48
|
voxcity/simulator/common/geometry.py,sha256=Zb9nI6q7lPcnX5O9YC-yMwhvYw6QtqxZN468Ikh82yE,3414
|
|
48
49
|
voxcity/simulator/common/raytracing.py,sha256=j9QiI9NIzqkIm8MOipqJCJeFtPWPTYxeAh-wP_lkAek,16343
|
|
49
|
-
voxcity/simulator/solar/__init__.py,sha256=
|
|
50
|
+
voxcity/simulator/solar/__init__.py,sha256=GI0y1TafTRa68uPnqncdc9VSUAM4fqAI3YSL92sgj4w,2350
|
|
50
51
|
voxcity/simulator/solar/integration.py,sha256=W9NfGTpE_OcBulUfw9b3xM68hR8WuMbXi9_80-viufw,13867
|
|
51
52
|
voxcity/simulator/solar/kernels.py,sha256=SLglw8dyIYdG8eN65aQsqTd4PmEuX2tkdwXJgPZ3Y3Q,2158
|
|
52
53
|
voxcity/simulator/solar/radiation.py,sha256=woSTmiDEUrGMGJyDsWr3kWL5wISMUBZuqc0KdoYJblk,22576
|
|
@@ -57,6 +58,30 @@ voxcity/simulator/view.py,sha256=Shqn7rFhhzCEPYHTu8Wg-6uCZ8SNrPCODY4sYzk8MmI,105
|
|
|
57
58
|
voxcity/simulator/visibility/__init__.py,sha256=mpBVeZO3IRJAcEX8fookdDgquBVKvzCRuNMNM4jrD_4,664
|
|
58
59
|
voxcity/simulator/visibility/landmark.py,sha256=E0bpivtjt9oJop0zsvWXE693o-RebU66H_EbLKlPDXk,17542
|
|
59
60
|
voxcity/simulator/visibility/view.py,sha256=w_zPmMxyHdwTURBowX-AhlvHEBjSCUsEpt865-eoBHE,21642
|
|
61
|
+
voxcity/simulator_gpu/__init__.py,sha256=rV7r0Kxmj0zFYOPuBb1bYIJwdWBebEqrWXJzMid1xR0,2654
|
|
62
|
+
voxcity/simulator_gpu/core.py,sha256=u71V1-sOUMfm8MkT38g4-F5Kx0TvWQYCmYemmSeL_QQ,8811
|
|
63
|
+
voxcity/simulator_gpu/domain.py,sha256=AxnneTJDyJQwgFqMLZKG08o16_n9Yq8Vy3qHLO5R_1E,804
|
|
64
|
+
voxcity/simulator_gpu/init_taichi.py,sha256=orxyn6Oz4nQyARmXOsv9Jgg8vd5XAknAsSsToa5E2fg,4652
|
|
65
|
+
voxcity/simulator_gpu/raytracing.py,sha256=i3EoDcPchQBlMQNRQpQOlArb-uAES3Pp7Otfklq1tuc,25003
|
|
66
|
+
voxcity/simulator_gpu/solar/__init__.py,sha256=r__R_p6xm8SOQxZw_se9c7bmyKvcLGbYK0PAH08NCo8,6759
|
|
67
|
+
voxcity/simulator_gpu/solar/core.py,sha256=QYWtFoBqgRvmlCn25moOoXv4us4_FiCRbDVi5snHT18,1763
|
|
68
|
+
voxcity/simulator_gpu/solar/csf.py,sha256=9HCPWbmz7HQRWVazHVdG_-CEVTyj7iwW4I444IxPSGs,54340
|
|
69
|
+
voxcity/simulator_gpu/solar/domain.py,sha256=JreJ3CcUUg4ZqNYQ7ytDNwaMmJR4c8rcMKz4Fr1JvrY,22875
|
|
70
|
+
voxcity/simulator_gpu/solar/epw.py,sha256=ZXOHuKvYuhbfr62W6466JRHnl2A_FbZFGE2L_p7mcXw,14472
|
|
71
|
+
voxcity/simulator_gpu/solar/integration.py,sha256=sWTxjHOYHw00Ad1Xt0qfTdYeeFOza4pl6zYQelbMqRI,182172
|
|
72
|
+
voxcity/simulator_gpu/solar/mask.py,sha256=mRZNcS0mWBsV3s9S8Q71GXzSjCmXcx0Ct2wHFo1Woyw,16907
|
|
73
|
+
voxcity/simulator_gpu/solar/radiation.py,sha256=0gttrkPDiq4AP0OcAQpBLd7vnBNYdcFdgae8WM4Bt2M,129774
|
|
74
|
+
voxcity/simulator_gpu/solar/raytracing.py,sha256=QsB7PepSoVglYHOcRRQOdDpLXQL7Ramhxam94a71XPA,5854
|
|
75
|
+
voxcity/simulator_gpu/solar/reflection.py,sha256=QM5Folnu_uzpCyD2mU5_FcSYr4-ImHEQns0ca0N1CJU,18937
|
|
76
|
+
voxcity/simulator_gpu/solar/sky.py,sha256=FEqyH4JvN0jHChQ8s1CcQfyLR8W36AEoz3OvOZhE7Jg,32198
|
|
77
|
+
voxcity/simulator_gpu/solar/solar.py,sha256=o6dkeN0jwtJNj2PNppRGQL-g1uE6VlfcY9rVNos1LeE,10953
|
|
78
|
+
voxcity/simulator_gpu/solar/svf.py,sha256=nbuhph1sco_i0q37VK4ynED4EBQ1lxf_yYlF6SX0Mp8,19675
|
|
79
|
+
voxcity/simulator_gpu/solar/volumetric.py,sha256=sR2OanRJsvCqOBBIPVsReH6KiWKytUv72PukrV5HQmM,83876
|
|
80
|
+
voxcity/simulator_gpu/visibility/__init__.py,sha256=nA3w2BrpkR2MvmDJ7SLicMldEHqRijPFnMBMKrM-wUQ,3726
|
|
81
|
+
voxcity/simulator_gpu/visibility/geometry.py,sha256=sQiu4sOOL2t7sSYYTbylqx2fNJYS8vKwSaZZUv0q8LQ,8266
|
|
82
|
+
voxcity/simulator_gpu/visibility/integration.py,sha256=k3R0O97V1gYmnCuvY7QHiCdNss61FhQfEZr9xrQuIzY,33094
|
|
83
|
+
voxcity/simulator_gpu/visibility/landmark.py,sha256=ZHzRzX8x2s_RYqChnRePaFmKx3REKpfp44sFyE_10Yw,28316
|
|
84
|
+
voxcity/simulator_gpu/visibility/view.py,sha256=jN9KkQuifQZczkV5pdxAqfr8ZDE27tHxoYg23Bq5zT8,35181
|
|
60
85
|
voxcity/utils/__init__.py,sha256=h9WBvqn7eLHravfFg_d1A3jDPld_EzLhbSIavzd_TAg,334
|
|
61
86
|
voxcity/utils/classes.py,sha256=U2WJsUVd6xaBj7xacehLedQMc6NegMXG7Jf8QK5fE40,6259
|
|
62
87
|
voxcity/utils/lc.py,sha256=iRPjHcdIqF7fvIs8jCbez9x8JF762KRcqYee6HkVP2A,18096
|
|
@@ -73,9 +98,9 @@ voxcity/visualizer/builder.py,sha256=S-tbGGerrxjfjm4xshvp4_j7Qk7vJzcNgYCPww1bQ4c
|
|
|
73
98
|
voxcity/visualizer/grids.py,sha256=Hi5ZbTy5oYLYFOSJDFBmMjFCwLr9F6de6UT1VjzGvNc,6990
|
|
74
99
|
voxcity/visualizer/maps.py,sha256=0Dm-4LM9uOI-FX7MlEQKPyf_g9mFMoGtKSDdwN9lsuE,8990
|
|
75
100
|
voxcity/visualizer/palette.py,sha256=ThZQlLwUSSfN516h9DyMry0CTYJVXeJDdL7oP41_zKg,7088
|
|
76
|
-
voxcity/visualizer/renderer.py,sha256=
|
|
77
|
-
voxcity-1.0.
|
|
78
|
-
voxcity-1.0.
|
|
79
|
-
voxcity-1.0.
|
|
80
|
-
voxcity-1.0.
|
|
81
|
-
voxcity-1.0.
|
|
101
|
+
voxcity/visualizer/renderer.py,sha256=z53RscOq3MTq-rlaLn0pLdO6rMpu_RnbJzzeMh9jX0s,49076
|
|
102
|
+
voxcity-1.0.15.dist-info/licenses/AUTHORS.rst,sha256=m82vkI5QokEGdcHof2OxK39lf81w1P58kG9ZNNAKS9U,175
|
|
103
|
+
voxcity-1.0.15.dist-info/licenses/LICENSE,sha256=s_jE1Df1nTPL4A_5GCGic5Zwex0CVaPKcAmSilxJPPE,1089
|
|
104
|
+
voxcity-1.0.15.dist-info/METADATA,sha256=oPAj1tCCGfAzkA0GlGKfKCYDZKnqVg-_S20vv9CbQh0,28090
|
|
105
|
+
voxcity-1.0.15.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
106
|
+
voxcity-1.0.15.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|