Changes between Initial Version and Version 2 of Ticket #61
- Timestamp:
- Dec 14, 2006, 3:50:18 PM (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #61
-
Property
Priority
changed from
normal
tolow
-
Property
Summary
changed from
In Geospatial_data "__add__" remove data from one which is shared by both
toGet boundary of a Geospatial_data object, to allow addition of high res accurate data and low res region data
-
Property
Priority
changed from
-
Ticket #61 – Description
initial v2 1 This could be done using a substract method (operator overloading) before the add method 1 Need to find the boundary of a set of data points... 2 2 3 OR ( probably better) 4 use a clip function eg 5 Pa= G1.boundary() 3 Question: should the boundary be rectanglar?... gut says No 6 4 7 G2.clip(Pa, inside =true) 5 ---------------------- 6 Use a clip function eg 8 7 9 G = G1 + G2 8 Pa= G1.boundary() [need to do!] 9 10 G2.clip(Pa, inside =true) [DONE] 11 12 G = G1 + G2 [Done] 10 13 11 14 look inside utilities/polygon.py for clip function