Blender extension for creating maps
Go to file
Matthew Gordon 5d3676ee43 Add Mac and Windows wheels
This should make the plugin compatible with those platforms, but I
haven't tested it.
2025-06-05 09:35:53 -03:00
.gitignore Import GeoTIFF as DEM. Works but needs polish and features 2025-06-04 20:24:31 -03:00
LICENSE Initial commit 2025-06-03 17:27:42 +00:00
README.md Add Mac and Windows wheels 2025-06-05 09:35:53 -03:00
__init__.py Import GeoTIFF as DEM. Works but needs polish and features 2025-06-04 20:24:31 -03:00
blender_manifest.toml Add Mac and Windows wheels 2025-06-05 09:35:53 -03:00
create_mesh_from_geotiff.py Clean up whitespace and dead code 2025-06-04 20:28:45 -03:00

README.md

blender-mapping-tools

Blender extension for creating maps

Building

TODO: make a proper build system.

For Blender 4.4:

pip download rasterio --dest ./wheels --only-binary=:all: --python-version=3.11 --platform=manylinux_2_17_x86_64
pip download rasterio --dest ./wheels --only-binary=:all: --python-version=3.11 --platform=macosx_11_0_arm64
pip download rasterio --dest ./wheels --only-binary=:all: --python-version=3.11 --platform=win_amd64
# Or replcace ".." below with any directory.
# blender_mapping_tools-0.1.0.zip will be placed in that directory.
blender --command extension build --output-dir ..

Then install blender_mapping_tools-0.1.0.zip as an extension in blender. It will add a "Mesh from GeoTIFF" option to the "Add" menu.