Hi all,
I’m currently developing a MFC application using osgEarth library (latest master version on GitHub).
The goal of the application is to display an elevation layer (based on a BIL file), an imagery layer (based on OpenStreetMap) and a feature model layer (based on a SHP file) for buildings.
I’m able to display correctly all these layers using a none projected map.

But when I’m trying to display those layers on a projected map, the elevations don’t seem to be taken into account.
Here is the output of gdalinfo command on the BIL file:
Driver: EHdr/ESRI .hdr Labelled
Files: Chicago_DTM.bil
Chicago_DTM.hdr
Chicago_DTM.prj
Size is 11216, 14936
Coordinate System is:
PROJCS["NAD_1983_UTM_Zone_16N",
GEOGCS["GCS_North_American_1983",
DATUM["North_American_Datum_1983",
SPHEROID["GRS_1980",6378137,298.257222101]],
PRIMEM["Greenwich",0],
UNIT["Degree",0.017453292519943295]],
PROJECTION["Transverse_Mercator"],
PARAMETER["latitude_of_origin",0],
PARAMETER["central_meridian",-87],
PARAMETER["scale_factor",0.9996],
PARAMETER["false_easting",500000],
PARAMETER["false_northing",0],
UNIT["Meter",1]]
Origin = (331782.000000000000000,4762779.000000000000000)
Pixel Size = (15.000000000000000,-15.000000000000000)
Corner Coordinates:
Upper Left ( 331782.000, 4762779.000)
Lower Left ( 331782.000, 4538739.000)
Upper Right ( 500022.000, 4762779.000)
Lower Right ( 500022.000, 4538739.000)
Center ( 415902.000, 4650759.000)
Band 1 Block=11216x1 Type=UInt16, ColorInterp=Undefined
Any idea why elevations cannot be seen?
The strange thing is that I don’t have the problem with Boston data “boston-inset.tif” even when converted to “boston-inset.bil” using Global Mapper.
Thanks,
Christophe