Suresh Jeevanandam wrote: > Hi, > I have just started using shapely. Its great... > > I am wondering if there is a way user can control the basic data type used > to represent co-ordinates. By default, it is using Float. In my application, > I want to use long_long . > > Thanks in advance. > > - > Suresh
Spatial coordinates are non-integer and the GEOS library underneath Shapely is based on floats. Shapely isn't concerned with coordinate storage anyway. Go ahead and persist your locations in any numeric type, and copy to a Shapely geometry for processing. Cheers, Sean _______________________________________________ Community mailing list [email protected] http://lists.gispython.org/mailman/listinfo/community
