diff --git a/modules/globebrowsing/other/gdaldataconverter.cpp b/modules/globebrowsing/other/gdaldataconverter.cpp index 300d286722..43fa207b0c 100644 --- a/modules/globebrowsing/other/gdaldataconverter.cpp +++ b/modules/globebrowsing/other/gdaldataconverter.cpp @@ -43,7 +43,7 @@ namespace openspace { std::shared_ptr GdalDataConverter::convertToOpenGLTexture( GDALDataset* dataSet, - const TileIndex& tileIndex, + const GeodeticTileIndex& tileIndex, int GLType) { int nRasters = dataSet->GetRasterCount(); diff --git a/modules/globebrowsing/other/gdaldataconverter.h b/modules/globebrowsing/other/gdaldataconverter.h index d7b7e73ed5..f27faacac7 100644 --- a/modules/globebrowsing/other/gdaldataconverter.h +++ b/modules/globebrowsing/other/gdaldataconverter.h @@ -25,7 +25,7 @@ #ifndef __GDALDATACONVERTER_H__ #define __GDALDATACONVERTER_H__ -#include +#include #include #include @@ -46,7 +46,7 @@ namespace openspace { std::shared_ptr convertToOpenGLTexture( GDALDataset* dataSet, - const TileIndex& tileIndex, + const GeodeticTileIndex& tileIndex, int GLType); private: diff --git a/modules/globebrowsing/other/texturetileset.cpp b/modules/globebrowsing/other/texturetileset.cpp index af00fcd54a..6080ada64f 100644 --- a/modules/globebrowsing/other/texturetileset.cpp +++ b/modules/globebrowsing/other/texturetileset.cpp @@ -65,7 +65,7 @@ namespace openspace { assert(poDataset != NULL); GdalDataConverter conv; - TileIndex ti; + GeodeticTileIndex ti; ti.x = 0; ti.y = 0; ti.level = 0;