i have acquired Digital Elevation Maps(Height Map of Earth) of some area. My aim was to create Realistic Terrains.

Terrain Generation is no problem. I have practiced that using VC# & XNA framework.

The problem is that those Height Map Files are in GeoTIFF format which i don't need how to read. Nor do i have previous experience with reading any image files so that i could experiment something using little tips-bits available on internet about reading GeoTIFF files. So far i have been unsuccessful.

  • The geoTIFF files i have are 3601 x 3601 files.
  • Each file has two version, a decimal & num valued files.
  • Each file has data of every second of longitude & latitude of Geo-Coords along with Height Map i.e Lon, Lat, height from sea level

How to read these file :)

The files i have are from ASTER G-DEM Version-2 LINK TO OFFICIAL DESCRIPTION according to them GeoTIFF is pretty standard which is because some GeoTIFF Visualizers i dwonloaded are showing me the correct data.

I am gonna be using C#. I would appreciate if we talk in relation to this language.


E D I T

okay i got the libtiff and this what i have done,

using (Tiff tiff = Tiff.Open(@"Test\N41E071_dem.tif", r"))
{
  int width   = tiff.GetField(TiffTag.IMAGEWIDTH)[0].ToInt();
  int height  = tiff.GetField(TiffTag.IMAGELENGTH)[0].ToInt();
  double dpiX = tiff.GetField(TiffTag.XRESOLUTION)[0].ToDouble();
  double dpiY = tiff.GetField(TiffTag.YRESOLUTION)[0].ToDouble(); 

  byte[] scanline        = new byte[tiff.ScanlineSize()]; 
  ushort[] scanline16Bit = new ushort[tiff.ScanlineSize() / 2];

  for (int i = 0; i < height; i++)
  {
    tiff.ReadScanline(scanline, i); //Loading ith Line                        
    MultiplyScanLineAs16BitSamples(scanline, scanline16Bit, 16,i);
  }
}

private static void MultiplyScanLineAs16BitSamples(byte[] scanline, ushort[] temp, ushort factor,int row)
{
  if (scanline.Length % 2 != 0)
  {
    // each two bytes define one sample so there should be even number of bytes
    throw new ArgumentException();
  }

  Buffer.BlockCopy(scanline, 0,   temp, 0, scanline.Length);

  for (int i = 0; i < temp.Length; i++)
  {                
    temp[i] *= factor;
    MessageBox.Show("Row:"+row.ToString()+"Column:"+(i/2).ToString()+"Value:"+temp[i].ToString());
  }
}

where i am displaying the message box, i am displaying the corresponding values, Am i doing it Right, i am asking this cuz this is my maiden experience with images & 8\16 bit problem. I think unlike the official tutorials of libtiff i should be using short instead of ushort because the images i am using are "GeoTIFF, signed 16 bits"

link|improve this question

Just curious... the first result googling a bit: Reading GeoTiff using .NET Have you tried? Are you looking other libraries? – Juan Mellado Mar 9 at 11:02
i don't know how that one skipped, i did use libtif this time, please read my question again – Junaid Saeed Mar 11 at 10:40
feedback

1 Answer

up vote 0 down vote accepted
+200

There are some SDKs out there usable from C# to read GeoTIFF files:

UPDATE:

The spec for GeoTIFF can befounf here - to me it seems that GeoTIFFs can contain different "subtypes" of information which in turn need to be interpreted appropriately...

link|improve this answer
thankyou for the great references, please read my edited question. – Junaid Saeed Mar 11 at 10:39
i am displaying the imaging correctly now, i need to be sure that i am getting the values correctly and not changing them in any kind of implicit\explicit bit conversion. cuz this is sensitive, i will use this method to generate terrain which will be used in critical\sensitive applications. – Junaid Saeed Mar 11 at 10:42
@JunaidSaeed another point: To be really sure that your code works right you need to at least check your results against the results of other readers... – Yahia Mar 11 at 11:09
@JunaidSaeed you are welcome :-) regarding "short versus ushort": since libtiff handles the big/littel endian stuff internally the only difference this makes is IF the MSB (most significant bit) is used - in your case: are there any sample with "negative height" (i.e. below 0) ? IF so THEN using short[] is necessary IMO – Yahia Mar 11 at 11:14
@JunaidSaeed What I am not sure about is the factor of 16 you are using in multiplication... – Yahia Mar 11 at 11:27
show 8 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.