domlysz / BlenderGIS

Blender addons to make the bridge between Blender and geographic data
GNU General Public License v3.0
7.63k stars 1.34k forks source link

General topic : discussion, help, suggestions #29

Closed domlysz closed 4 years ago

domlysz commented 8 years ago

Just talk about BlenderGIS !

mirlip commented 8 years ago

BlenderGIS is awesome :) Suggestion from the shp import thread: naming the first CRS "original CRS" or "file CRS" and the second one "target CRS" or "reprojection CRS" would help understand what everyone of them do easily. Adding an option to add a target CRS in the import window would also help a lot to save some steps and would help newcomers to find this function intuitively.

domlysz commented 8 years ago

Hi mirlip

I'm sorry I rewrote your modification on the wiki because it does not fit well what I had planned for this part. I hope you're not upset, I was thinking you just want add info about GDAL_DATA

I've disable contributors on the wiki, not because I don't want any contributor (on the contrary I really encourage this), but I prefer the pull request model which allows review and discussions before publish modification. Unfortunately as I see it seems a little complicated to use this schema in github

http://stackoverflow.com/questions/10642928/how-to-pull-request-a-wiki-page-on-github

will investigate this

see ya

mirlip commented 8 years ago

Hi Domlysz,

So much to do at the moment, I'm happy if you do it, no offense taken, don't worry. I tried my best, but it's always hard to make it look like if it was one person writing. I may have more time in a month. Then I can come back to you so that I can hopefully better help you. In the mean time, I hope my beta-testing and suggestion help

see ya

mirlip commented 8 years ago

Finally some free time again to test BlenderGIS :) It made huge steps in usability and the new UI looks really good. The only thing that I would keep as an option (disabled by default) would be to change the grid size. It makes zooming difficult and for someone not knowing Blender, it will be very disturbing to not be able to zoom in anymore. (it happens when you select your project location in the default scene by just zooming with the basemap operator.) Other notes for the doc:

bvgnt commented 8 years ago

Auto extrude buildings.

Could it be possible to automate building extrusion from contour.

Auto roads ... ;) Auto trees ;) ;) ;)

mirlip commented 7 years ago

Hi domlysz, How are you? Hope everything is fine :) Regards

domlysz commented 7 years ago

Hi mirlip, thanks for the message and sorry for not responding earlier. I'm fine, just starting a new job since september so unfortunately I didn't have much time for working on BlenderGIS, but stay tunned for 2017 !

mirlip commented 7 years ago

Congratulation for your new job. I will stay tuned :) Have fun and take care.

pyarchinit commented 7 years ago

I think your blenderGIS can be the bridge between Blender and Geodatabase such as Spatialite or Postgis. We have developped a plugin for QGis which stores data into geodatabase and creates wiev joining spatial data with alphanumerical data, to create 2D maps interactively through specific queries. Here there is an example: from pyarchinit to blenderGis. But now we need to pass from postgres or spatialite to shapefile to import data into blender through blenderGIS. Do you think is possible create an import system from postgis or spatialite as you do from shapefiles? You can project QGis and Osgeo into Blender World. Best regards. Luca

kikislater commented 7 years ago

Problem with blender is you have to shift huge coordinates to 0. Otherwise you could have a big shift in modified data and a slow process time.

There was an attempt to connect postgis database to blender here in 2010 : http://www.isprs.org/proceedings/XXXVIII/4_8_2-W9/papers/final_138_138_scianna.pdf

Python scripts seems not available nowaday but may be I have them.

For a far away better integration, cgal and pdal should be a must have

neon-ninja commented 5 years ago

Hi @domlysz!

Firstly, thank you so much for this awesome plugin! It's saved me a lot of time.

I'm starting a new project, where I have a collection of shapefiles describing the flow of lava in a simulated volcanic eruption. Each shapefile describes the lava extent in 2D on a given day. What I'll need to do is interpolate between each of the shapefiles to create an animation of lava over time. I'm familiar with python / the blender python API, and am planning on writing a script to create shape keys for each shapefile. As each shapefile has a different number of vertices the script will also have to find the maximum vertex count and normalise all shapefiles into the same number of vertices for shape keys to work. Would such a script be useful to others? Would it be worth creating a PR once I have the script in a stable state? Do you have any advice for me? Do you know of anything that might be useful for this task?

Edit: I now have working versions of this for both Blender 2.79 and Blender 2.8 in my fork at https://github.com/UoA-eResearch/BlenderGIS/tree/Blender279 and https://github.com/UoA-eResearch/BlenderGIS/tree/Blender28

Cheers, Nick