tproduit / pic2map

QGIS plugin for camera orientation and interaction between a picture and the map (monoplotting).
22 stars 5 forks source link

Error while loading dem in windows #7

Closed tproduit closed 4 years ago

tproduit commented 4 years ago

Dem stored in C:\Users\sasgin.BRIG\Documents\QGIS\my_qgis_projects\data raise error Dem stored in C:\data is ok

frpin33 commented 4 years ago

The problem is from the dot in sasgin.BRIG. Look in Pic2Map.py in the function startSequence around the line 110-120, The code make a string split with a dot, so the path is cut in 3 part instead of 2. If you switch the 1 to -1 at line 119 it will always check for the last string of the split which should always be the type of file.

sgindraux commented 4 years ago

Ok that was no luck then ;-) thanks for looking at it!