First few issues with the rsgislib conda install:
The installation of anaconda, arcsi, tuiview as per
http://spectraldifferences.wordpress.com/ went ok. I then tried to run a python script that calls gdal_rasterize through subprocess.call(). Returned ''ERROR 4: Unable to open EPSG support file gcs.csv'', same as here
https://groups.google.com/a/continuum.io/forum/#!msg/anaconda/608MwtlekKk/ERYdk-rTGLcJ. Tried Jonathan Helums's fix. Seems to have worked but now the interpreter is unhappy with the imported modules (from rsgislib import classification, ...):
Traceback (most recent call last):
File "runProject_29Jun.py", line 7, in <module>
from rsgislib import classification, imageutils, segmentation, rastergis
File "/home/envsys/anaconda3/lib/python3.4/site-packages/rsgislib/classification/__init__.py", line 6, in <module>
from ._classification import *
ImportError: /home/envsys/anaconda3/lib/python3.4/site-packages/rsgislib/classification/../../../.././librsgis_rastergis.so.2.0.0: undefined symbol: _ZN31GDALDefaultRasterAttributeTableC1ERKS_
If I remove classification from import list, it is unhappy with the next module, i.e. imageutils.
I installed anaconda & rsgislib on Ubuntu 13.10 saucy.
I considered the google group to be a good place to post issues, just in case I'm missing something obvious, e.g. I need to change my python syntax from 2.7 to 3.4? In any case, I'm happy to post on a more official bug tracker webpage if there is any :-)