Re: Fwd: How to draw a map using python

2014-08-10 Thread Mark Lawrence
On 10/08/2014 02:44, Yuanchao Xu wrote: To kind whom it may concern: I want to draw a map using python, not really a map with full information, just a get together of a series of small shapes to reflect land use. The data is like below |1 2 2 3 3 2 2 3 3 1 1 2 1 1 1 1 3 3 3 3

Re: How to draw a map using python

2014-08-10 Thread Ian Kelly
On Sat, Aug 9, 2014 at 7:44 PM, Yuanchao Xu wrote: > 1. I wonder in python, is there any more fast way to generate this kind of > map, as a whole, not a series of shapes, i think that would be faster?? You mean like collecting all the shapes into a single sparse array and passing the single array

Fwd: How to draw a map using python

2014-08-09 Thread Yuanchao Xu
To kind whom it may concern: I want to draw a map using python, not really a map with full information, just a get together of a series of small shapes to reflect land use. The data is like below 1 2 2 3 3 22 3 3 1 1 21 1 1 1 3 33 3 3 3 4 1 Each number represents one land use type. and their po