Hi, I am having the same problem recently. After stepping through the osgdem source code, it seems that there may be a bug in DataSet.cpp line 1905. There was a missing "!". Instead of
... if (_destinationCoordinateSystem.valid && _destinationCoordinateSyste->getCoordinateSystem().empty()) .... I replaced it with if (_destinationCoordinateSystem.valid && !_destinationCoordinateSyste->getCoordinateSystem().empty()) The coordinate systems would be in after the above modification. Hope this helps. :) Cheers, Casper ------------------ Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=62342#62342 _______________________________________________ osg-users mailing list [email protected] http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

