Reputation: 104
I want convert .gis(geographic information system) file into .img format. Is this possible in C++? Can any one help me how to do this in C++????
Thanks in advance
Upvotes: 0
Views: 182
Reputation: 108
You would have to read the .gis file, decipher what it means and redraw that in a manner to your liking.
Check GIS file formats and check how they are stored.
Read that into your program.
Then use a graphics API (SDL/Allegro/OpenGL) and draw the verticies/lines/polygons.
Upvotes: 0