user2618704
user2618704

Reputation: 104

How to Convert .gis(geographic information system) file to .img format using C++?

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

Answers (1)

Steve Sarcinella
Steve Sarcinella

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

Related Questions