Glenn Waldron

Results 179 comments of Glenn Waldron

The ellipsoids don't match (the one in the WKT has an extra zero)

Rob, you can convert to georeferenced GeoTIFFs with this command (for example) `gdal_translate -a_srs "+proj=latlong +a=2439700 +b=2439700" -a_ullr -180 90 180 -90 -of GTiff input.jpg output.tif`

You can put the projection (+proj=latlong +a=2439700 +b=2439700) in a .prj file as well (a.g., input.prj necxt to input.jpg). There was a bug preventing this from working, which I just...

Try using gdal_translate to assign georeferencing information to the file. ``` gdal_translate -of VRT -a_srs epsg:4326 -a_ullr -180 90 180 -90 cloud_combined_2048.jpg cloud_combined_2048.jpg.vrt ```

@keince Could you provide a simple way for us to reproduce the issue? (Perhaps by modifying some code in `osgearth_annotation.cpp`)

This is essentially what TerrainGUI is doing with the `_measureCursor` feature node, except that it's using SingleThreaded mode so can simply update it directly. But it might be a handy...

I was not able to reproduce the deadlock on Win64 VS2019. A couple things you might try to test your synchronization theory: * in `stopThreads()` move the statement `_done =...

Unable to repro on Win10, GL 4.1, CORE profile. No OSX to test.

This works for me in osgEarth 3.2. Please post the output of `osgearth_version --caps`