ESRI shape files (shp): importing the polygon data can yield a very large list.
It is computationally intensive rendering the polygon. I have been trying to convert to GraphicsComplex by extracting all the vertices, indexing them and then specifying the polygon by the vertex index.
However, the computational effort of removing duplicates (shared borders) seems to be computationally worse than the original issue (for the large input size of the list of vertices).
Can someone advise me if there is a better way to work with these files?

Polygon[pts]or the multi-primitive syntaxPolygon[{pts1,pts2}]? Using the latter you can speed up rendering quite a bit. – Yves Klett Aug 20 '12 at 11:11