voxcity 1.0.2__py3-none-any.whl → 1.0.13__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.
Files changed (50) hide show
  1. voxcity/downloader/ocean.py +559 -0
  2. voxcity/generator/api.py +6 -0
  3. voxcity/generator/grids.py +45 -32
  4. voxcity/generator/pipeline.py +327 -27
  5. voxcity/geoprocessor/draw.py +14 -8
  6. voxcity/geoprocessor/raster/__init__.py +2 -0
  7. voxcity/geoprocessor/raster/core.py +31 -0
  8. voxcity/geoprocessor/raster/landcover.py +173 -49
  9. voxcity/geoprocessor/raster/raster.py +1 -1
  10. voxcity/models.py +2 -0
  11. voxcity/simulator_gpu/__init__.py +115 -0
  12. voxcity/simulator_gpu/common/__init__.py +9 -0
  13. voxcity/simulator_gpu/common/geometry.py +11 -0
  14. voxcity/simulator_gpu/core.py +322 -0
  15. voxcity/simulator_gpu/domain.py +262 -0
  16. voxcity/simulator_gpu/environment.yml +11 -0
  17. voxcity/simulator_gpu/init_taichi.py +154 -0
  18. voxcity/simulator_gpu/integration.py +15 -0
  19. voxcity/simulator_gpu/kernels.py +56 -0
  20. voxcity/simulator_gpu/radiation.py +28 -0
  21. voxcity/simulator_gpu/raytracing.py +623 -0
  22. voxcity/simulator_gpu/sky.py +9 -0
  23. voxcity/simulator_gpu/solar/__init__.py +178 -0
  24. voxcity/simulator_gpu/solar/core.py +66 -0
  25. voxcity/simulator_gpu/solar/csf.py +1249 -0
  26. voxcity/simulator_gpu/solar/domain.py +561 -0
  27. voxcity/simulator_gpu/solar/epw.py +421 -0
  28. voxcity/simulator_gpu/solar/integration.py +2953 -0
  29. voxcity/simulator_gpu/solar/radiation.py +3019 -0
  30. voxcity/simulator_gpu/solar/raytracing.py +686 -0
  31. voxcity/simulator_gpu/solar/reflection.py +533 -0
  32. voxcity/simulator_gpu/solar/sky.py +907 -0
  33. voxcity/simulator_gpu/solar/solar.py +337 -0
  34. voxcity/simulator_gpu/solar/svf.py +446 -0
  35. voxcity/simulator_gpu/solar/volumetric.py +1151 -0
  36. voxcity/simulator_gpu/solar/voxcity.py +2953 -0
  37. voxcity/simulator_gpu/temporal.py +13 -0
  38. voxcity/simulator_gpu/utils.py +25 -0
  39. voxcity/simulator_gpu/view.py +32 -0
  40. voxcity/simulator_gpu/visibility/__init__.py +109 -0
  41. voxcity/simulator_gpu/visibility/geometry.py +278 -0
  42. voxcity/simulator_gpu/visibility/integration.py +808 -0
  43. voxcity/simulator_gpu/visibility/landmark.py +753 -0
  44. voxcity/simulator_gpu/visibility/view.py +944 -0
  45. voxcity/visualizer/renderer.py +2 -1
  46. {voxcity-1.0.2.dist-info → voxcity-1.0.13.dist-info}/METADATA +16 -53
  47. {voxcity-1.0.2.dist-info → voxcity-1.0.13.dist-info}/RECORD +50 -15
  48. {voxcity-1.0.2.dist-info → voxcity-1.0.13.dist-info}/WHEEL +0 -0
  49. {voxcity-1.0.2.dist-info → voxcity-1.0.13.dist-info}/licenses/AUTHORS.rst +0 -0
  50. {voxcity-1.0.2.dist-info → voxcity-1.0.13.dist-info}/licenses/LICENSE +0 -0
@@ -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
- a = a.max(axis=1).max(axis=2).max(axis=4)
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.2
3
+ Version: 1.0.13
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 (==1.3.11)
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,31 +18,31 @@ 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=S71J4TEyiGYTn0WzALiJRgYtP2mCfRu2jid-xNNRIY8,36127
21
- voxcity/generator/grids.py,sha256=Ht_XRhbBfEvWvRGTr0U1DEOhtFYHaojuf2lXnOGAT-A,20423
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=sCYbxNt1KY1SHGTeIEW8jBfD-yhJHdWIXcKijF4_tjA,11891
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=O9bBC4q6xLzGYzN3kJc2Pdxry0D4D_P_ZEcIF-1M2qg,62781
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=3f1qGOsM0kpfa7lw4k-uYqXwuN0Eaxp7WcWUcpgEtCs,2287
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=NcT-DRXnjacDYkR5k5FfsPbh4nw1NBGluQBXwO9Y4cM,5441
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=IzGogo2ZMRPrd7qDtgxAiNb21g4I_JjJ4daLKssvBs0,6492
41
- voxcity/geoprocessor/raster/raster.py,sha256=KLo1Z4-cztX8GLJ-mwYlbPvn1BGCIH7QwfrJDtD3miI,4425
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=2l070TW4envQ18Pu2tQcFVX0i8GYs7hd6nH1nsfpp9Y,2896
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
@@ -57,6 +58,40 @@ 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=KtWo8Oa2UKz-DNx9MHMtZ6-YZvt2GlJ6PXrVt-Br0EQ,3767
62
+ voxcity/simulator_gpu/common/__init__.py,sha256=AMnsYL4L1e-cjEvjhX3eKxR-fwrdlNPyw0uq7veEFhk,276
63
+ voxcity/simulator_gpu/common/geometry.py,sha256=DeVM-66OrORW0f7yaeQtQ0YFbDEbHPKPfTtbUUV153c,350
64
+ voxcity/simulator_gpu/core.py,sha256=u71V1-sOUMfm8MkT38g4-F5Kx0TvWQYCmYemmSeL_QQ,8811
65
+ voxcity/simulator_gpu/domain.py,sha256=x7Uu_HA22SWz0LdbbY6Q2mqW6JCOsCVzyeC5VMgIwXE,9101
66
+ voxcity/simulator_gpu/environment.yml,sha256=DDuQXIRVt4wKU_tdr8j8zXZXowE5OFRS6irvwPs0cpA,162
67
+ voxcity/simulator_gpu/init_taichi.py,sha256=orxyn6Oz4nQyARmXOsv9Jgg8vd5XAknAsSsToa5E2fg,4652
68
+ voxcity/simulator_gpu/integration.py,sha256=KrZxliDGezKSn8hu1fQ3Q1M8yDalidJRLvTpcNSJgMk,439
69
+ voxcity/simulator_gpu/kernels.py,sha256=Qukuge7vXkkVt7LhjokFT0DUcQDMqCF6jFRV6wo1ED4,1683
70
+ voxcity/simulator_gpu/radiation.py,sha256=BP8W-EbTrUemNvufRnuVr2La7vfnNMzMjGlIZiDhajY,948
71
+ voxcity/simulator_gpu/raytracing.py,sha256=ljG8IBYk0HGpEHo-bl3YsWa4hSVU04ESKwSGnUKDVIY,19979
72
+ voxcity/simulator_gpu/sky.py,sha256=dcQYA5A-klmMRLQ8N9_5srWzjGViEUx2PULNfub-0xs,330
73
+ voxcity/simulator_gpu/solar/__init__.py,sha256=QvPq1BcnpCDoo2YwsqbmpwHyZOC7S3X0G_vqK-YNBrw,5409
74
+ voxcity/simulator_gpu/solar/core.py,sha256=QYWtFoBqgRvmlCn25moOoXv4us4_FiCRbDVi5snHT18,1763
75
+ voxcity/simulator_gpu/solar/csf.py,sha256=9HCPWbmz7HQRWVazHVdG_-CEVTyj7iwW4I444IxPSGs,54340
76
+ voxcity/simulator_gpu/solar/domain.py,sha256=hJb8K9ZZewSeZ2PSvCyVPSU2g8GInp33sgY8gqDE1DA,20536
77
+ voxcity/simulator_gpu/solar/epw.py,sha256=ZXOHuKvYuhbfr62W6466JRHnl2A_FbZFGE2L_p7mcXw,14472
78
+ voxcity/simulator_gpu/solar/integration.py,sha256=gql16uTZ2IDQIiy-T6dH52HtMxjS0yspQ25-5Xgfgag,124163
79
+ voxcity/simulator_gpu/solar/radiation.py,sha256=0gttrkPDiq4AP0OcAQpBLd7vnBNYdcFdgae8WM4Bt2M,129774
80
+ voxcity/simulator_gpu/solar/raytracing.py,sha256=1Y8UoKPFxVmQEfbjXsV4lFcTzBjJYEPWCqBvdaV94Xg,22497
81
+ voxcity/simulator_gpu/solar/reflection.py,sha256=QM5Folnu_uzpCyD2mU5_FcSYr4-ImHEQns0ca0N1CJU,18937
82
+ voxcity/simulator_gpu/solar/sky.py,sha256=FEqyH4JvN0jHChQ8s1CcQfyLR8W36AEoz3OvOZhE7Jg,32198
83
+ voxcity/simulator_gpu/solar/solar.py,sha256=o6dkeN0jwtJNj2PNppRGQL-g1uE6VlfcY9rVNos1LeE,10953
84
+ voxcity/simulator_gpu/solar/svf.py,sha256=nbuhph1sco_i0q37VK4ynED4EBQ1lxf_yYlF6SX0Mp8,19675
85
+ voxcity/simulator_gpu/solar/volumetric.py,sha256=nMXhai6AuZQTvMrNKUcqSLO3X6G_XhbL1tLlcmG1XLg,44493
86
+ voxcity/simulator_gpu/solar/voxcity.py,sha256=fAs_j_16jABwqM-tUMIk2RsSNgdYYqjATHSosmBrsHg,124159
87
+ voxcity/simulator_gpu/temporal.py,sha256=Xi7q5VRU-SKjNKWDZR-9mWF-A7haYJeoLMjMcxrvkPc,382
88
+ voxcity/simulator_gpu/utils.py,sha256=Ltu-wzwDi6j2AHzHPqnW2FWjQNFFQhrQlzR2sPf2mLQ,605
89
+ voxcity/simulator_gpu/view.py,sha256=Aucm8yJu8xYr2jD2aLZU17j4rRV3sIQO3Xk9KJMSglM,919
90
+ voxcity/simulator_gpu/visibility/__init__.py,sha256=nA3w2BrpkR2MvmDJ7SLicMldEHqRijPFnMBMKrM-wUQ,3726
91
+ voxcity/simulator_gpu/visibility/geometry.py,sha256=sQiu4sOOL2t7sSYYTbylqx2fNJYS8vKwSaZZUv0q8LQ,8266
92
+ voxcity/simulator_gpu/visibility/integration.py,sha256=k3R0O97V1gYmnCuvY7QHiCdNss61FhQfEZr9xrQuIzY,33094
93
+ voxcity/simulator_gpu/visibility/landmark.py,sha256=ZHzRzX8x2s_RYqChnRePaFmKx3REKpfp44sFyE_10Yw,28316
94
+ voxcity/simulator_gpu/visibility/view.py,sha256=jN9KkQuifQZczkV5pdxAqfr8ZDE27tHxoYg23Bq5zT8,35181
60
95
  voxcity/utils/__init__.py,sha256=h9WBvqn7eLHravfFg_d1A3jDPld_EzLhbSIavzd_TAg,334
61
96
  voxcity/utils/classes.py,sha256=U2WJsUVd6xaBj7xacehLedQMc6NegMXG7Jf8QK5fE40,6259
62
97
  voxcity/utils/lc.py,sha256=iRPjHcdIqF7fvIs8jCbez9x8JF762KRcqYee6HkVP2A,18096
@@ -73,9 +108,9 @@ voxcity/visualizer/builder.py,sha256=S-tbGGerrxjfjm4xshvp4_j7Qk7vJzcNgYCPww1bQ4c
73
108
  voxcity/visualizer/grids.py,sha256=Hi5ZbTy5oYLYFOSJDFBmMjFCwLr9F6de6UT1VjzGvNc,6990
74
109
  voxcity/visualizer/maps.py,sha256=0Dm-4LM9uOI-FX7MlEQKPyf_g9mFMoGtKSDdwN9lsuE,8990
75
110
  voxcity/visualizer/palette.py,sha256=ThZQlLwUSSfN516h9DyMry0CTYJVXeJDdL7oP41_zKg,7088
76
- voxcity/visualizer/renderer.py,sha256=ul97UUrPQkJt259vf5v7iEUkZC2EnJs_EsLESJe6xcU,48980
77
- voxcity-1.0.2.dist-info/licenses/AUTHORS.rst,sha256=m82vkI5QokEGdcHof2OxK39lf81w1P58kG9ZNNAKS9U,175
78
- voxcity-1.0.2.dist-info/licenses/LICENSE,sha256=s_jE1Df1nTPL4A_5GCGic5Zwex0CVaPKcAmSilxJPPE,1089
79
- voxcity-1.0.2.dist-info/METADATA,sha256=kb2RduAo88LITMRWOaZ58KSX7VP5EaEDzvaqoorcEWc,28809
80
- voxcity-1.0.2.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
81
- voxcity-1.0.2.dist-info/RECORD,,
111
+ voxcity/visualizer/renderer.py,sha256=z53RscOq3MTq-rlaLn0pLdO6rMpu_RnbJzzeMh9jX0s,49076
112
+ voxcity-1.0.13.dist-info/licenses/AUTHORS.rst,sha256=m82vkI5QokEGdcHof2OxK39lf81w1P58kG9ZNNAKS9U,175
113
+ voxcity-1.0.13.dist-info/licenses/LICENSE,sha256=s_jE1Df1nTPL4A_5GCGic5Zwex0CVaPKcAmSilxJPPE,1089
114
+ voxcity-1.0.13.dist-info/METADATA,sha256=Yrc1ejK3-Lq9tUUM2fkZDCZucLuN8QAjGQkY4IYGrOg,28090
115
+ voxcity-1.0.13.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
116
+ voxcity-1.0.13.dist-info/RECORD,,