voxcity 0.7.0__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 (81) hide show
  1. voxcity/__init__.py +14 -14
  2. voxcity/downloader/ocean.py +559 -0
  3. voxcity/exporter/__init__.py +12 -12
  4. voxcity/exporter/cityles.py +633 -633
  5. voxcity/exporter/envimet.py +733 -728
  6. voxcity/exporter/magicavoxel.py +333 -333
  7. voxcity/exporter/netcdf.py +238 -238
  8. voxcity/exporter/obj.py +1480 -1480
  9. voxcity/generator/__init__.py +47 -44
  10. voxcity/generator/api.py +727 -675
  11. voxcity/generator/grids.py +394 -379
  12. voxcity/generator/io.py +94 -94
  13. voxcity/generator/pipeline.py +582 -282
  14. voxcity/generator/update.py +429 -0
  15. voxcity/generator/voxelizer.py +18 -6
  16. voxcity/geoprocessor/__init__.py +75 -75
  17. voxcity/geoprocessor/draw.py +1494 -1219
  18. voxcity/geoprocessor/merge_utils.py +91 -91
  19. voxcity/geoprocessor/mesh.py +806 -806
  20. voxcity/geoprocessor/network.py +708 -708
  21. voxcity/geoprocessor/raster/__init__.py +2 -0
  22. voxcity/geoprocessor/raster/buildings.py +435 -428
  23. voxcity/geoprocessor/raster/core.py +31 -0
  24. voxcity/geoprocessor/raster/export.py +93 -93
  25. voxcity/geoprocessor/raster/landcover.py +178 -51
  26. voxcity/geoprocessor/raster/raster.py +1 -1
  27. voxcity/geoprocessor/utils.py +824 -824
  28. voxcity/models.py +115 -113
  29. voxcity/simulator/solar/__init__.py +66 -43
  30. voxcity/simulator/solar/integration.py +336 -336
  31. voxcity/simulator/solar/sky.py +668 -0
  32. voxcity/simulator/solar/temporal.py +792 -434
  33. voxcity/simulator_gpu/__init__.py +115 -0
  34. voxcity/simulator_gpu/common/__init__.py +9 -0
  35. voxcity/simulator_gpu/common/geometry.py +11 -0
  36. voxcity/simulator_gpu/core.py +322 -0
  37. voxcity/simulator_gpu/domain.py +262 -0
  38. voxcity/simulator_gpu/environment.yml +11 -0
  39. voxcity/simulator_gpu/init_taichi.py +154 -0
  40. voxcity/simulator_gpu/integration.py +15 -0
  41. voxcity/simulator_gpu/kernels.py +56 -0
  42. voxcity/simulator_gpu/radiation.py +28 -0
  43. voxcity/simulator_gpu/raytracing.py +623 -0
  44. voxcity/simulator_gpu/sky.py +9 -0
  45. voxcity/simulator_gpu/solar/__init__.py +178 -0
  46. voxcity/simulator_gpu/solar/core.py +66 -0
  47. voxcity/simulator_gpu/solar/csf.py +1249 -0
  48. voxcity/simulator_gpu/solar/domain.py +561 -0
  49. voxcity/simulator_gpu/solar/epw.py +421 -0
  50. voxcity/simulator_gpu/solar/integration.py +2953 -0
  51. voxcity/simulator_gpu/solar/radiation.py +3019 -0
  52. voxcity/simulator_gpu/solar/raytracing.py +686 -0
  53. voxcity/simulator_gpu/solar/reflection.py +533 -0
  54. voxcity/simulator_gpu/solar/sky.py +907 -0
  55. voxcity/simulator_gpu/solar/solar.py +337 -0
  56. voxcity/simulator_gpu/solar/svf.py +446 -0
  57. voxcity/simulator_gpu/solar/volumetric.py +1151 -0
  58. voxcity/simulator_gpu/solar/voxcity.py +2953 -0
  59. voxcity/simulator_gpu/temporal.py +13 -0
  60. voxcity/simulator_gpu/utils.py +25 -0
  61. voxcity/simulator_gpu/view.py +32 -0
  62. voxcity/simulator_gpu/visibility/__init__.py +109 -0
  63. voxcity/simulator_gpu/visibility/geometry.py +278 -0
  64. voxcity/simulator_gpu/visibility/integration.py +808 -0
  65. voxcity/simulator_gpu/visibility/landmark.py +753 -0
  66. voxcity/simulator_gpu/visibility/view.py +944 -0
  67. voxcity/utils/__init__.py +11 -0
  68. voxcity/utils/classes.py +194 -0
  69. voxcity/utils/lc.py +80 -39
  70. voxcity/utils/shape.py +230 -0
  71. voxcity/visualizer/__init__.py +24 -24
  72. voxcity/visualizer/builder.py +43 -43
  73. voxcity/visualizer/grids.py +141 -141
  74. voxcity/visualizer/maps.py +187 -187
  75. voxcity/visualizer/renderer.py +1146 -928
  76. {voxcity-0.7.0.dist-info → voxcity-1.0.13.dist-info}/METADATA +56 -52
  77. voxcity-1.0.13.dist-info/RECORD +116 -0
  78. voxcity-0.7.0.dist-info/RECORD +0 -77
  79. {voxcity-0.7.0.dist-info → voxcity-1.0.13.dist-info}/WHEEL +0 -0
  80. {voxcity-0.7.0.dist-info → voxcity-1.0.13.dist-info}/licenses/AUTHORS.rst +0 -0
  81. {voxcity-0.7.0.dist-info → voxcity-1.0.13.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: voxcity
3
- Version: 0.7.0
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
@@ -29,6 +30,7 @@ Requires-Dist: ipyleaflet
29
30
  Requires-Dist: joblib
30
31
  Requires-Dist: lxml
31
32
  Requires-Dist: matplotlib
33
+ Requires-Dist: nbformat
32
34
  Requires-Dist: netCDF4
33
35
  Requires-Dist: numba
34
36
  Requires-Dist: numpy
@@ -41,7 +43,7 @@ Requires-Dist: py-vox-io
41
43
  Requires-Dist: pycountry
42
44
  Requires-Dist: pyproj
43
45
  Requires-Dist: pyvista
44
- Requires-Dist: rasterio (==1.3.11)
46
+ Requires-Dist: rasterio (>=1.3.11)
45
47
  Requires-Dist: requests
46
48
  Requires-Dist: reverse_geocoder
47
49
  Requires-Dist: rio-cogeo
@@ -50,6 +52,7 @@ Requires-Dist: scikit-learn
50
52
  Requires-Dist: scipy
51
53
  Requires-Dist: seaborn
52
54
  Requires-Dist: shapely
55
+ Requires-Dist: taichi ; extra == "gpu"
53
56
  Requires-Dist: timezonefinder
54
57
  Requires-Dist: tqdm
55
58
  Requires-Dist: trimesh
@@ -136,7 +139,6 @@ Description-Content-Type: text/markdown
136
139
  - **Analytical Tools:**
137
140
  - **View Index Simulations**: Compute sky view index (SVI) and green view index (GVI) from a specified viewpoint.
138
141
  - **Landmark Visibility Maps**: Assess the visibility of selected landmarks within the voxelized environment.
139
-
140
142
  ## Installation
141
143
 
142
144
  Make sure you have Python 3.12 installed. Install voxcity with:
@@ -186,22 +188,6 @@ ee.Authenticate()
186
188
  ee.Initialize(project='your-project-id')
187
189
  ```
188
190
 
189
- ## Grid Orientation
190
-
191
- - Canonical internal orientation is north_up: row 0 = north/top, last row = south/bottom for all 2D grids.
192
- - Columns increase eastward: col 0 = west/left, indices increase to the east.
193
- - Processing functions accept and return north_up/eastward grids. Visualization utilities may flip vertically only for display; they never change east–west.
194
- - 3D indexing uses (row, col, z) = (north→south, west→east, ground→up).
195
- - If your input data uses a south_up convention, normalize it at the boundary using:
196
-
197
- ```python
198
- from voxcity.utils.orientation import ensure_orientation, ORIENTATION_SOUTH_UP
199
-
200
- grid_north_up = ensure_orientation(grid, orientation_in=ORIENTATION_SOUTH_UP)
201
- ```
202
-
203
- This keeps orientation handling explicit and avoids surprises.
204
-
205
191
  ### 2. Define Target Area
206
192
 
207
193
  You can define your target area in three ways:
@@ -274,17 +260,6 @@ voxcity = get_voxcity(
274
260
  meshsize,
275
261
  **kwargs
276
262
  )
277
-
278
- # Access the generated grids and GeoDataFrame
279
- voxcity_grid = voxcity.voxels.classes
280
- building_height_grid = voxcity.buildings.heights
281
- building_min_height_grid = voxcity.buildings.min_heights
282
- building_id_grid = voxcity.buildings.ids
283
- canopy_height_grid = voxcity.tree_canopy.top
284
- canopy_bottom_height_grid = voxcity.tree_canopy.bottom
285
- land_cover_grid = voxcity.land_cover.classes
286
- dem_grid = voxcity.dem.elevation
287
- building_gdf = voxcity.extras.get('building_gdf')
288
263
  ```
289
264
 
290
265
  #### Option 2: Custom Mode
@@ -330,22 +305,36 @@ voxcity = get_voxcity(
330
305
  from voxcity.exporter.envimet import export_inx, generate_edb_file
331
306
 
332
307
  envimet_kwargs = {
333
- "output_directory": "output", # Directory where output files will be saved
334
- "author_name": "your name", # Name of the model author
335
- "model_description": "generated with voxcity", # Description text for the model
336
- "domain_building_max_height_ratio": 2, # Maximum ratio between domain height and tallest building height
337
- "useTelescoping_grid": True, # Enable telescoping grid for better computational efficiency
338
- "verticalStretch": 20, # Vertical grid stretching factor (%)
339
- "min_grids_Z": 20, # Minimum number of vertical grid cells
340
- "lad": 1.0 # Leaf Area Density (m2/m3) for vegetation modeling
308
+ "output_directory": "output", # Directory where output files will be saved
309
+ "file_basename": "voxcity", # Base name (without extension) for INX
310
+ "author_name": "your name", # Name of the model author
311
+ "model_description": "generated with voxcity", # Description for the model
312
+ "domain_building_max_height_ratio": 2, # Max ratio between domain height and tallest building
313
+ "useTelescoping_grid": True, # Enable telescoping grid
314
+ "verticalStretch": 20, # Vertical grid stretching factor (%)
315
+ "min_grids_Z": 20, # Minimum number of vertical grid cells
316
+ "lad": 1.0 # Leaf Area Density (m2/m3) for EDB generation
341
317
  }
342
318
 
343
- # If using auto mode, you can check selected sources in logs
344
- # For custom mode, use your specified land_cover_source
345
- land_cover_source = 'OpenStreetMap' # Specify if needed for export
319
+ # Optional: specify land cover source used for export (otherwise taken from voxcity.extras when available)
320
+ land_cover_source = 'OpenStreetMap'
321
+
322
+ # Export INX by passing the VoxCity object directly
323
+ export_inx(
324
+ voxcity,
325
+ output_directory=envimet_kwargs["output_directory"],
326
+ file_basename=envimet_kwargs["file_basename"],
327
+ land_cover_source=land_cover_source,
328
+ author_name=envimet_kwargs["author_name"],
329
+ model_description=envimet_kwargs["model_description"],
330
+ domain_building_max_height_ratio=envimet_kwargs["domain_building_max_height_ratio"],
331
+ useTelescoping_grid=envimet_kwargs["useTelescoping_grid"],
332
+ verticalStretch=envimet_kwargs["verticalStretch"],
333
+ min_grids_Z=envimet_kwargs["min_grids_Z"],
334
+ )
346
335
 
347
- export_inx(city.building_height_grid, city.building_id_grid, city.canopy_height_top, city.land_cover_grid, city.dem_grid, meshsize, land_cover_source, rectangle_vertices, **envimet_kwargs)
348
- generate_edb_file(**envimet_kwargs)
336
+ # Generate plant database (EDB) for vegetation
337
+ generate_edb_file(lad=envimet_kwargs["lad"])
349
338
  ```
350
339
  <p align="center">
351
340
  <img src="https://raw.githubusercontent.com/kunifujiwara/VoxCity/main/images/envimet.png" alt="Generated 3D City Model on Envi-MET GUI" width="600">
@@ -361,8 +350,8 @@ from voxcity.exporter.obj import export_obj
361
350
 
362
351
  output_directory = "output" # Directory where output files will be saved
363
352
  output_file_name = "voxcity" # Base name for the output OBJ file
364
- # export_obj signature: export_obj(array, output_dir, file_name, voxel_size, voxel_color_map=None)
365
- export_obj(city.voxcity_grid, output_directory, output_file_name, meshsize)
353
+ # Pass the VoxCity object directly (voxel size inferred)
354
+ export_obj(voxcity, output_directory, output_file_name)
366
355
  ```
367
356
  The generated OBJ files can be opened and rendered in the following 3D visualization software:
368
357
 
@@ -386,7 +375,8 @@ from voxcity.exporter.magicavoxel import export_magicavoxel_vox
386
375
 
387
376
  output_path = "output"
388
377
  base_filename = "voxcity"
389
- export_magicavoxel_vox(city.voxcity_grid, output_path, base_filename=base_filename)
378
+ # Pass the VoxCity object directly
379
+ export_magicavoxel_vox(voxcity, output_path, base_filename=base_filename)
390
380
  ```
391
381
  <p align="center">
392
382
  <img src="https://raw.githubusercontent.com/kunifujiwara/VoxCity/main/images/vox.png" alt="Generated 3D City Model on MagicaVoxel GUI" width="600">
@@ -534,6 +524,18 @@ G, edge_gdf = get_network_values(
534
524
  <em>Cumulative Global Solar Irradiance (kW/m²·hour) on Road Network</em>
535
525
  </p>
536
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
+
537
539
  ## References of Data Sources
538
540
 
539
541
  ### Building
@@ -576,21 +578,23 @@ G, edge_gdf = get_network_values(
576
578
  | [Australian 5M DEM](https://ecat.ga.gov.au/geonetwork/srv/eng/catalog.search#/metadata/89644) | Australia | 5 m | Aerial LiDAR / 2001-2015 |
577
579
  | [RGE Alti](https://geoservices.ign.fr/rgealti) | France | 1 m | Aerial LiDAR |
578
580
 
579
-
580
581
  ## Citation
581
582
 
582
- Please cite the [paper](https://doi.org/10.48550/arXiv.2504.13934) if you use `voxcity` in a scientific publication:
583
+ Please cite the [paper](https://doi.org/10.1016/j.compenvurbsys.2025.102366) if you use `voxcity` in a scientific publication:
583
584
 
584
- Fujiwara K, Tsurumi R, Kiyono T, Fan Z, Liang X, Lei B, Yap W, Ito K, Biljecki F. VoxCity: A Seamless Framework for Open Geospatial Data Integration, Grid-Based Semantic 3D City Model Generation, and Urban Environment Simulation. arXiv preprint arXiv:2504.13934. 2025.
585
+ Fujiwara K, Tsurumi R, Kiyono T, Fan Z, Liang X, Lei B, Yap W, Ito K, Biljecki F., 2026. VoxCity: A Seamless Framework for Open Geospatial Data Integration, Grid-Based Semantic 3D City Model Generation, and Urban Environment Simulation. Computers, Environment and Urban Systems, 123, p.102366. https://doi.org/10.1016/j.compenvurbsys.2025.102366
585
586
 
586
587
  ```bibtex
587
588
  @article{fujiwara2025voxcity,
588
589
  title={VoxCity: A Seamless Framework for Open Geospatial Data Integration, Grid-Based Semantic 3D City Model Generation, and Urban Environment Simulation},
589
590
  author={Fujiwara, Kunihiko and Tsurumi, Ryuta and Kiyono, Tomoki and Fan, Zicheng and Liang, Xiucheng and Lei, Binyu and Yap, Winston and Ito, Koichi and Biljecki, Filip},
590
- journal={arXiv preprint arXiv:2504.13934},
591
- year={2025},
592
- doi = {10.48550/arXiv.2504.13934},
591
+ journal={Computers, Environment and Urban Systems},
592
+ volume = {123},
593
+ pages = {102366},
594
+ year = {2026},
595
+ doi = {10.1016/j.compenvurbsys.2025.102366}
593
596
  }
597
+
594
598
  ```
595
599
 
596
600
  ## Credit
@@ -0,0 +1,116 @@
1
+ voxcity/__init__.py,sha256=_qSejkOJw5lXnNJWHbgLfWnerPoRl0R-tLyPB-GNNuw,458
2
+ voxcity/downloader/__init__.py,sha256=1Y4YMHvKiDcJ4eC69XPbapg3-WhJ6yVXrX8-3d8Vi3g,171
3
+ voxcity/downloader/citygml.py,sha256=I8-wWijqVOA1VeH3nFP9ZlC3l6XvXfli6lB17ZIXHb0,42232
4
+ voxcity/downloader/eubucco.py,sha256=ln1YNaaOgJfxNfCtVbYaMm775-bUvpAA_LDv60_i22w,17875
5
+ voxcity/downloader/gba.py,sha256=b-VmlVS8IzCR0OYfWgtlMpuZrB5_0M4EpG8BEBj6YEY,7184
6
+ voxcity/downloader/gee.py,sha256=_dw0677n9t8ZJZflnM4Gfd3FQ2Y5sD-PYmilVu6xkTE,23757
7
+ voxcity/downloader/mbfp.py,sha256=yhKTXJOJZAWqdTBib9BO5meP50lzHAxI6sSYWCCSgNU,6590
8
+ voxcity/downloader/ocean.py,sha256=YFEKA85c2cLSaQHTuV8P_BXF1f3W2S50tFM_sdHPAcA,20325
9
+ voxcity/downloader/oemj.py,sha256=SeMId9MvI-DnGyREpqu5-6D-xwRdMJdYIGcAPFD95rw,16432
10
+ voxcity/downloader/osm.py,sha256=7Wo6lSodci7gALMKLQ_0ricmn0ZrfUK90vKYQ-ayU2A,46285
11
+ voxcity/downloader/overture.py,sha256=hVxu-3Fmuu2E1tEzcDcNyU1cR-aE-6h6jkcxkuqN1-s,13343
12
+ voxcity/downloader/utils.py,sha256=DAbPlj9i-OgJ8g4H0n_Dqfc-GalPTk0bsHkYMtja-yI,3026
13
+ voxcity/errors.py,sha256=pPd4FhkAqKKCp5Emdzelc4fPKf112yUrD68da5YO1Xc,747
14
+ voxcity/exporter/__init__.py,sha256=6qfyTO8ey4ErmdLCes5KArdnQ_Cdt1Oj6wq5qSaNFOE,333
15
+ voxcity/exporter/cityles.py,sha256=0mz3sdQb9VCB62m9vuio5x8sDf0-9NFCwVkS6eldQ34,22797
16
+ voxcity/exporter/envimet.py,sha256=U5FBjiIQVrG1LrdbgSqMd6SBVpF4Y6S9a3KpMLudDjY,32047
17
+ voxcity/exporter/magicavoxel.py,sha256=QMS547mWqw8RJ-Muba9XNo058E5_oLf-FkHPu8x6kfA,14162
18
+ voxcity/exporter/netcdf.py,sha256=MQhUmyHc_6mVzmlPLIJJQSqATo7AHjkEL-QJ__XViWI,8543
19
+ voxcity/exporter/obj.py,sha256=2LBNF7uJj-myl4AiJsv1yEEa1odT87e0VLvAtdpcEKY,63001
20
+ voxcity/generator/__init__.py,sha256=l11VF8qrSyU-kJUFS4DfzoCGhewPnBeo25RfLxS5LpI,1241
21
+ voxcity/generator/api.py,sha256=3URDxwo3snhgJeRQc07uvy2VUI3xmEGmjUiqbm07GmA,36415
22
+ voxcity/generator/grids.py,sha256=mQC34XIoKwBmQn4BQ61gZ-GShww2CmRnXbtvAni2BPQ,20753
23
+ voxcity/generator/io.py,sha256=hsDeHDKtHQ59hTabYBtrqYeROVjLtxKBcdUY0JVV3cA,3257
24
+ voxcity/generator/pipeline.py,sha256=z3OUohMh0ssiiFzfsCmhyFkYO8Jawof3CoS5utShef4,26738
25
+ voxcity/generator/update.py,sha256=7udcBckThnffKwe3YQv30G2hSqAVACn2mPL1ZXHtwNE,16157
26
+ voxcity/generator/voxelizer.py,sha256=ym-H4PzvCnEe9UOFzKbaul8u4EyOtjNFANGIXU7kJiA,16197
27
+ voxcity/geoprocessor/__init__.py,sha256=TwFsKhuvZtIC3d_bykvhzJxnxvubHoWeBp3bBbcrw7k,1721
28
+ voxcity/geoprocessor/conversion.py,sha256=Bdf_SNqOhTqYW44MPLWx6-5iyVmZO2Yy1eZ6pDDgyvs,5007
29
+ voxcity/geoprocessor/draw.py,sha256=3ghFuEQNj3lB3bDCgqjLbDIuBQDzwJIflujguS5y_FA,63312
30
+ voxcity/geoprocessor/heights.py,sha256=cAksRWaLPFKhv9YsMybT0DCMyuE9WNajRXHpRFbSyN4,8636
31
+ voxcity/geoprocessor/io.py,sha256=iLoip3NXuyj7mk4xvRPMnouIVoR0swzIdrg6R08D68I,3427
32
+ voxcity/geoprocessor/merge_utils.py,sha256=OKMSUAEE9jPiNslzDjWOxrP3s-VSxhEVkWVmDMmbjrI,3159
33
+ voxcity/geoprocessor/mesh.py,sha256=exKl8MagO7jizjebbGNfVJjGRxBv1eH1t5nt7dR1g3k,32913
34
+ voxcity/geoprocessor/network.py,sha256=hNgovcCDZFZzBM1dF3gu02Bk13sNxH90HrRtd7nOKQw,26640
35
+ voxcity/geoprocessor/overlap.py,sha256=taWkqtS79gL-QBClPboz8XzqARO5BwqaTA4iTHvkRfI,2783
36
+ voxcity/geoprocessor/raster/__init__.py,sha256=uPMyQdk2EF7i-DGKbnYvCU64XDtf2UErAjTQ_0q3eCw,2339
37
+ voxcity/geoprocessor/raster/buildings.py,sha256=0y7IakrQg_-1NV4pvSjQoRXalWxzjshY0hpjUWz9qlk,19647
38
+ voxcity/geoprocessor/raster/canopy.py,sha256=DvDB8mT_fY9NaJjanEbv1DCaR9Ceqjn0AIxqiHy4jbs,9668
39
+ voxcity/geoprocessor/raster/core.py,sha256=uAx-1UjGtNHROSZ7d0vv4KvtUIy1OA4YjAM--ZCYl1k,6793
40
+ voxcity/geoprocessor/raster/export.py,sha256=DCSToWKz249LlnhNShYCE6Ll_9I1d_wcQLzMHHOlQ5Q,3631
41
+ voxcity/geoprocessor/raster/landcover.py,sha256=Xjwyb9sVGk8ta4rcHaqWN9dH64YOlVGrq4lg42-q8Eo,11860
42
+ voxcity/geoprocessor/raster/raster.py,sha256=Npx6qaIBghLoBRqaxh3iA0kCHgth5PHDrnxBL5ZsQ-4,4456
43
+ voxcity/geoprocessor/selection.py,sha256=NE2Z0Y1IJkBPB3dEvk0yzZoye9WWGjJVm9xj6m71ZiI,2672
44
+ voxcity/geoprocessor/utils.py,sha256=YrGnubtBKsGocEZx9a2v8Prx1aiXtN_BCB_DWgvaB-w,32398
45
+ voxcity/models.py,sha256=zscGBvHcSSGatSDIP9MNl9NoKe6lbldEk4S3n_5lnao,3025
46
+ voxcity/simulator/__init__.py,sha256=APdkcdaovj0v_RPOaA4SBvFUKT2RM7Hxuuz3Sux4gCo,65
47
+ voxcity/simulator/common/__init__.py,sha256=Yi5h8DtLFUB8T6TsmDeVxuafjcwzpRXXgsN5nmvJLJk,486
48
+ voxcity/simulator/common/geometry.py,sha256=Zb9nI6q7lPcnX5O9YC-yMwhvYw6QtqxZN468Ikh82yE,3414
49
+ voxcity/simulator/common/raytracing.py,sha256=j9QiI9NIzqkIm8MOipqJCJeFtPWPTYxeAh-wP_lkAek,16343
50
+ voxcity/simulator/solar/__init__.py,sha256=uG1PXEwE3137WE_DgSo8Q7evUNdnfuJhNjE-2HfHUZQ,1960
51
+ voxcity/simulator/solar/integration.py,sha256=W9NfGTpE_OcBulUfw9b3xM68hR8WuMbXi9_80-viufw,13867
52
+ voxcity/simulator/solar/kernels.py,sha256=SLglw8dyIYdG8eN65aQsqTd4PmEuX2tkdwXJgPZ3Y3Q,2158
53
+ voxcity/simulator/solar/radiation.py,sha256=woSTmiDEUrGMGJyDsWr3kWL5wISMUBZuqc0KdoYJblk,22576
54
+ voxcity/simulator/solar/sky.py,sha256=QqijmqEkMrGVIcxUYpjarkZ-Ed_MaSSrFW9wQUsikzE,23035
55
+ voxcity/simulator/solar/temporal.py,sha256=wwooPqX8BAyNh9O1vAYZLuEkbvqAijJBsgD0Ku5GVTo,33998
56
+ voxcity/simulator/utils.py,sha256=sEYBB2-hLJxTiXQps1_-Fi7t1HN3-1OPOvBCWtgIisA,130
57
+ voxcity/simulator/view.py,sha256=Shqn7rFhhzCEPYHTu8Wg-6uCZ8SNrPCODY4sYzk8MmI,1058
58
+ voxcity/simulator/visibility/__init__.py,sha256=mpBVeZO3IRJAcEX8fookdDgquBVKvzCRuNMNM4jrD_4,664
59
+ voxcity/simulator/visibility/landmark.py,sha256=E0bpivtjt9oJop0zsvWXE693o-RebU66H_EbLKlPDXk,17542
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
95
+ voxcity/utils/__init__.py,sha256=h9WBvqn7eLHravfFg_d1A3jDPld_EzLhbSIavzd_TAg,334
96
+ voxcity/utils/classes.py,sha256=U2WJsUVd6xaBj7xacehLedQMc6NegMXG7Jf8QK5fE40,6259
97
+ voxcity/utils/lc.py,sha256=iRPjHcdIqF7fvIs8jCbez9x8JF762KRcqYee6HkVP2A,18096
98
+ voxcity/utils/logging.py,sha256=BZGOSKrAh_aBrNgVD_jX5lJXAOc4wkTuB0R_fbp3DBU,1652
99
+ voxcity/utils/material.py,sha256=H8K8Lq4wBL6dQtgj7esUW2U6wLCOTeOtelkTDJoRgMo,10007
100
+ voxcity/utils/orientation.py,sha256=sVV2VipImBsijcJ8gw_uv1zbs4b95QoJf0qC0R39VPM,2014
101
+ voxcity/utils/shape.py,sha256=IRNnlAF506fQwRDXrSNupsq4lVs4dY3YkeLMSaTO_1g,7713
102
+ voxcity/utils/weather/__init__.py,sha256=r8Qrybs1lSsFbi9_HRmEmi9oVLXSaYi_fBYk8UMZ_Tk,722
103
+ voxcity/utils/weather/epw.py,sha256=f2u7jzwYd7Kb5L7cCkyrBiKPN7iE5gk81luOXjAQRKM,5424
104
+ voxcity/utils/weather/files.py,sha256=ogbfCX-5wBF_fhb3pJa2-71yDT8SlV1JSqna-QwyIR0,987
105
+ voxcity/utils/weather/onebuilding.py,sha256=WWococ9NWU54_ATIy_59ZE_Wkfk8WkB2nAf3j-X5BFM,24695
106
+ voxcity/visualizer/__init__.py,sha256=N02juUFewmt-QoZMVc1cE2h-PwWiNeGS7MbjGhihZH4,981
107
+ voxcity/visualizer/builder.py,sha256=S-tbGGerrxjfjm4xshvp4_j7Qk7vJzcNgYCPww1bQ4c,1411
108
+ voxcity/visualizer/grids.py,sha256=Hi5ZbTy5oYLYFOSJDFBmMjFCwLr9F6de6UT1VjzGvNc,6990
109
+ voxcity/visualizer/maps.py,sha256=0Dm-4LM9uOI-FX7MlEQKPyf_g9mFMoGtKSDdwN9lsuE,8990
110
+ voxcity/visualizer/palette.py,sha256=ThZQlLwUSSfN516h9DyMry0CTYJVXeJDdL7oP41_zKg,7088
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,,
@@ -1,77 +0,0 @@
1
- voxcity/__init__.py,sha256=wRuf9rZL_Z4Ac6jdfIE0mv5dpl4LYm3S5W87TwrXcrk,444
2
- voxcity/downloader/__init__.py,sha256=1Y4YMHvKiDcJ4eC69XPbapg3-WhJ6yVXrX8-3d8Vi3g,171
3
- voxcity/downloader/citygml.py,sha256=I8-wWijqVOA1VeH3nFP9ZlC3l6XvXfli6lB17ZIXHb0,42232
4
- voxcity/downloader/eubucco.py,sha256=ln1YNaaOgJfxNfCtVbYaMm775-bUvpAA_LDv60_i22w,17875
5
- voxcity/downloader/gba.py,sha256=b-VmlVS8IzCR0OYfWgtlMpuZrB5_0M4EpG8BEBj6YEY,7184
6
- voxcity/downloader/gee.py,sha256=_dw0677n9t8ZJZflnM4Gfd3FQ2Y5sD-PYmilVu6xkTE,23757
7
- voxcity/downloader/mbfp.py,sha256=yhKTXJOJZAWqdTBib9BO5meP50lzHAxI6sSYWCCSgNU,6590
8
- voxcity/downloader/oemj.py,sha256=SeMId9MvI-DnGyREpqu5-6D-xwRdMJdYIGcAPFD95rw,16432
9
- voxcity/downloader/osm.py,sha256=7Wo6lSodci7gALMKLQ_0ricmn0ZrfUK90vKYQ-ayU2A,46285
10
- voxcity/downloader/overture.py,sha256=hVxu-3Fmuu2E1tEzcDcNyU1cR-aE-6h6jkcxkuqN1-s,13343
11
- voxcity/downloader/utils.py,sha256=DAbPlj9i-OgJ8g4H0n_Dqfc-GalPTk0bsHkYMtja-yI,3026
12
- voxcity/errors.py,sha256=pPd4FhkAqKKCp5Emdzelc4fPKf112yUrD68da5YO1Xc,747
13
- voxcity/exporter/__init__.py,sha256=a-v_WeEHHYaqfZqgXfun7ExTh53KWKX8mTn6fQ4VL94,321
14
- voxcity/exporter/cityles.py,sha256=yguHtwZKONlLeN-_hqlJaNtfGFbceEfYF-TjrRfNYzs,22145
15
- voxcity/exporter/envimet.py,sha256=NhVeBP8tXGiaAFUk6JsV39Q8Shhxv1Yy9Xftc-9b9YQ,30934
16
- voxcity/exporter/magicavoxel.py,sha256=G02mDN0JCjaLecf1q56kfMSHKaP4YYKNCwSSCwUR2bE,13829
17
- voxcity/exporter/netcdf.py,sha256=m4eUBn8wfW6qFJOpXhqeeUQLxd9DVwmVHMCTRpNK1So,8305
18
- voxcity/exporter/obj.py,sha256=7G3kbKaKjIZHnWUVgbNKyqZGxJxBJJ3_N28tGqI2sCg,61521
19
- voxcity/generator/__init__.py,sha256=Rlm36dTDV3mPGCR_i0C-MhZoBFtgOyQ-4ZUBhamAn4w,1093
20
- voxcity/generator/api.py,sha256=9gQuBRVsJ92Dh3AOCxA4QKYnUcufb0s7H1vEgwq0eis,33397
21
- voxcity/generator/grids.py,sha256=7OqAtACdH2PwghTkipfiHM0xx0whcidwy49dKvpqhyA,19910
22
- voxcity/generator/io.py,sha256=mJmmRFsaFq3VZYPEsi5TWjYWhNGob5y9PvfHRGsq49o,3163
23
- voxcity/generator/pipeline.py,sha256=Qa_si0T5iTORTEK1PvAmMNWjazNAxvWBpWXxqBvt9nU,11609
24
- voxcity/generator/voxelizer.py,sha256=uQTbRG8y_inNOvIyBGE4Nqh1aTk-lIFnkqMrBiDgXWw,15592
25
- voxcity/geoprocessor/__init__.py,sha256=8DFBbSqds6fTEzJNm-IfPNW0xKghFoIJV47R_EhlNHw,1646
26
- voxcity/geoprocessor/conversion.py,sha256=Bdf_SNqOhTqYW44MPLWx6-5iyVmZO2Yy1eZ6pDDgyvs,5007
27
- voxcity/geoprocessor/draw.py,sha256=7RaA3CU9-PZ6crwU_VnAmPguK0tklZ-XvPeAtQMEzdY,51719
28
- voxcity/geoprocessor/heights.py,sha256=cAksRWaLPFKhv9YsMybT0DCMyuE9WNajRXHpRFbSyN4,8636
29
- voxcity/geoprocessor/io.py,sha256=iLoip3NXuyj7mk4xvRPMnouIVoR0swzIdrg6R08D68I,3427
30
- voxcity/geoprocessor/merge_utils.py,sha256=5-hGvkijECYufHra2C-fSSZViEhgsdeg0EdfZIVtGCs,3068
31
- voxcity/geoprocessor/mesh.py,sha256=zu5hWOs5rWXYNmKXpI7mFY3CJRud0qL8a1YulZBJdCs,32107
32
- voxcity/geoprocessor/network.py,sha256=X84aJz9MqrN6pP1bEzCmpOXhz5RWS4di655rY1vQNO0,25932
33
- voxcity/geoprocessor/overlap.py,sha256=taWkqtS79gL-QBClPboz8XzqARO5BwqaTA4iTHvkRfI,2783
34
- voxcity/geoprocessor/raster/__init__.py,sha256=3f1qGOsM0kpfa7lw4k-uYqXwuN0Eaxp7WcWUcpgEtCs,2287
35
- voxcity/geoprocessor/raster/buildings.py,sha256=po4ip8sIGwpb7FrG1IilGMpgWQ8XpsuLxjVC6YmVxjA,18845
36
- voxcity/geoprocessor/raster/canopy.py,sha256=DvDB8mT_fY9NaJjanEbv1DCaR9Ceqjn0AIxqiHy4jbs,9668
37
- voxcity/geoprocessor/raster/core.py,sha256=NcT-DRXnjacDYkR5k5FfsPbh4nw1NBGluQBXwO9Y4cM,5441
38
- voxcity/geoprocessor/raster/export.py,sha256=eNsrD3IsS-DqK8aSp2MQz7c_a01YcOyPMRxScUMyVR0,3538
39
- voxcity/geoprocessor/raster/landcover.py,sha256=JgLOI1drY2h6zAGAhYgrLK7ofq4vfGWIIWpUodQaORM,6313
40
- voxcity/geoprocessor/raster/raster.py,sha256=KLo1Z4-cztX8GLJ-mwYlbPvn1BGCIH7QwfrJDtD3miI,4425
41
- voxcity/geoprocessor/selection.py,sha256=NE2Z0Y1IJkBPB3dEvk0yzZoye9WWGjJVm9xj6m71ZiI,2672
42
- voxcity/geoprocessor/utils.py,sha256=gnFxxN9LBwzRXprKuJdq-FGpJ18ztXL3lnwHJ9Ma7Sk,31574
43
- voxcity/models.py,sha256=FRWpOQHCISOVQ2UUQiUNFCTn_-oSSA5pea21OOl_eB0,2783
44
- voxcity/simulator/__init__.py,sha256=APdkcdaovj0v_RPOaA4SBvFUKT2RM7Hxuuz3Sux4gCo,65
45
- voxcity/simulator/common/__init__.py,sha256=Yi5h8DtLFUB8T6TsmDeVxuafjcwzpRXXgsN5nmvJLJk,486
46
- voxcity/simulator/common/geometry.py,sha256=Zb9nI6q7lPcnX5O9YC-yMwhvYw6QtqxZN468Ikh82yE,3414
47
- voxcity/simulator/common/raytracing.py,sha256=j9QiI9NIzqkIm8MOipqJCJeFtPWPTYxeAh-wP_lkAek,16343
48
- voxcity/simulator/solar/__init__.py,sha256=HkwRGMKmi3LvtziS2Ja8tJetBMqhGA4EoGujrQIn7HU,1256
49
- voxcity/simulator/solar/integration.py,sha256=EtAbb139il6htXr1_R6wwqVof-I47TsJShwybuFJLa4,13531
50
- voxcity/simulator/solar/kernels.py,sha256=SLglw8dyIYdG8eN65aQsqTd4PmEuX2tkdwXJgPZ3Y3Q,2158
51
- voxcity/simulator/solar/radiation.py,sha256=woSTmiDEUrGMGJyDsWr3kWL5wISMUBZuqc0KdoYJblk,22576
52
- voxcity/simulator/solar/temporal.py,sha256=exqf1U6pQbsiqjtvWcqqcOx-dQGlVOJfeOj22j3bmqU,17652
53
- voxcity/simulator/utils.py,sha256=sEYBB2-hLJxTiXQps1_-Fi7t1HN3-1OPOvBCWtgIisA,130
54
- voxcity/simulator/view.py,sha256=Shqn7rFhhzCEPYHTu8Wg-6uCZ8SNrPCODY4sYzk8MmI,1058
55
- voxcity/simulator/visibility/__init__.py,sha256=mpBVeZO3IRJAcEX8fookdDgquBVKvzCRuNMNM4jrD_4,664
56
- voxcity/simulator/visibility/landmark.py,sha256=E0bpivtjt9oJop0zsvWXE693o-RebU66H_EbLKlPDXk,17542
57
- voxcity/simulator/visibility/view.py,sha256=w_zPmMxyHdwTURBowX-AhlvHEBjSCUsEpt865-eoBHE,21642
58
- voxcity/utils/__init__.py,sha256=Q-NYCqYnAAaF80KuNwpqIjbE7Ec3Gr4y_khMLIMhJrg,68
59
- voxcity/utils/lc.py,sha256=722Gz3lPbgAp0mmTZ-g-QKBbAnbxrcgaYwb1sa7q8Sk,16189
60
- voxcity/utils/logging.py,sha256=BZGOSKrAh_aBrNgVD_jX5lJXAOc4wkTuB0R_fbp3DBU,1652
61
- voxcity/utils/material.py,sha256=H8K8Lq4wBL6dQtgj7esUW2U6wLCOTeOtelkTDJoRgMo,10007
62
- voxcity/utils/orientation.py,sha256=sVV2VipImBsijcJ8gw_uv1zbs4b95QoJf0qC0R39VPM,2014
63
- voxcity/utils/weather/__init__.py,sha256=r8Qrybs1lSsFbi9_HRmEmi9oVLXSaYi_fBYk8UMZ_Tk,722
64
- voxcity/utils/weather/epw.py,sha256=f2u7jzwYd7Kb5L7cCkyrBiKPN7iE5gk81luOXjAQRKM,5424
65
- voxcity/utils/weather/files.py,sha256=ogbfCX-5wBF_fhb3pJa2-71yDT8SlV1JSqna-QwyIR0,987
66
- voxcity/utils/weather/onebuilding.py,sha256=WWococ9NWU54_ATIy_59ZE_Wkfk8WkB2nAf3j-X5BFM,24695
67
- voxcity/visualizer/__init__.py,sha256=NMj0IF7ckWoTs-WyWp4VWlzQqi0VdjmTq1_EnPGF-2E,957
68
- voxcity/visualizer/builder.py,sha256=4vpfAZcpq844gNQBtYWucDl2oWyv5US18QTDfz18SvU,1368
69
- voxcity/visualizer/grids.py,sha256=x02KiK6NbhvBK6qDlLWDBGqcz6TH8HHc7z_8j3Lgo7c,6849
70
- voxcity/visualizer/maps.py,sha256=OeoEaYjCOgeveuTmEa62hFFVCXZzOo6JTZ3bv4Zxelo,8803
71
- voxcity/visualizer/palette.py,sha256=ThZQlLwUSSfN516h9DyMry0CTYJVXeJDdL7oP41_zKg,7088
72
- voxcity/visualizer/renderer.py,sha256=CdPmMW6EG6tLhYwPHNRTO-_trsgF8ZsIC6NQA2WMVuY,38363
73
- voxcity-0.7.0.dist-info/licenses/AUTHORS.rst,sha256=m82vkI5QokEGdcHof2OxK39lf81w1P58kG9ZNNAKS9U,175
74
- voxcity-0.7.0.dist-info/licenses/LICENSE,sha256=s_jE1Df1nTPL4A_5GCGic5Zwex0CVaPKcAmSilxJPPE,1089
75
- voxcity-0.7.0.dist-info/METADATA,sha256=4bh9kbAtjLd_gh5EDfed7oz74MaAaSNyy_Qyb_X9oGA,28375
76
- voxcity-0.7.0.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
77
- voxcity-0.7.0.dist-info/RECORD,,