1 |
|
2002-05-15 Bernhard Herzog <[email protected]> |
2 |
|
|
3 |
|
* Thuban/UI/view.py (MapCanvas.shape_selected): Only redraw when |
4 |
|
necessary. |
5 |
|
(MapCanvas.__init__): New instance variables, last_selected_layer |
6 |
|
and last_selected_shape to determine how the selection has |
7 |
|
changed. |
8 |
|
|
9 |
|
* Thuban/UI/tableview.py (TableGrid.__init__): Do not call |
10 |
|
AutoSizeColumns because it will cause a traversal of the entire |
11 |
|
table which for large .dbf files will take a very long time. |
12 |
|
|
13 |
|
2002-05-14 Bernhard Herzog <[email protected]> |
14 |
|
|
15 |
|
* Thuban/Model/layer.py (Layer.open_shapefile): Choose a better |
16 |
|
maximum depth for the tree than shapelib does by default. |
17 |
|
|
18 |
|
2002-05-10 Bernhard Herzog <[email protected]> |
19 |
|
|
20 |
|
* setup.py (py_modules): The shptree modules doesn't have a |
21 |
|
wrapper, so don't include it in the py_modules |
22 |
|
|
23 |
|
2002-05-08 Bernhard Herzog <[email protected]> |
24 |
|
|
25 |
|
* extensions/shapelib/shptree.c (compare_ints): Make arguments |
26 |
|
const void * as in the qsort prototype |
27 |
|
(SHPTreeFindLikelyShapes): Remove some unused variables. |
28 |
|
|
29 |
|
* Thuban/UI/view.py (PanTool.MouseMove): Use the bitmap the view |
30 |
|
maintains to redraw the window during a drag. |
31 |
|
(MapCanvas.unprojected_rect_around_point): New method to determine |
32 |
|
a small region around a point for hit-testing. |
33 |
|
(MapCanvas.find_shape_at): Only test the shapes in a small region |
34 |
|
around the point. |
35 |
|
|
36 |
|
* setup.py: Increment the version to 0.1.2 |
37 |
|
|
38 |
|
* Thuban/UI/tree.py (SessionTreeCtrl.unsubscribe_all): Remove a |
39 |
|
debug print and set session to None after unsubscribing |
40 |
|
|
41 |
|
2002-05-07 Bernhard Herzog <[email protected]> |
42 |
|
|
43 |
|
* Data/iceland_sample.session, Data/iceland_sample.thuban: Rename |
44 |
|
the file to have a .thuban extension. |
45 |
|
|
46 |
|
* Thuban/UI/tree.py (session_channels): New class constant with |
47 |
|
all the session channels to subscribe to to update the tree |
48 |
|
(SessionTreeCtrl.session_changed): Remember the session so that we |
49 |
|
can unsubscribe properly. Use the new class constant to |
50 |
|
unsubscribe from the old session and subscribe to the new one. |
51 |
|
(SessionTreeCtrl.unsubscribe_all): New method to unsubscribe all |
52 |
|
subscriptions of the SessionTreeCtrl. |
53 |
|
(SessionTreeView.OnClose): Call the tree's unsubscribe_all method. |
54 |
|
|
55 |
|
* Thuban/UI/mainwindow.py (MainWindow.__init__): Add the "Show |
56 |
|
Session Tree" command to the file menu. |
57 |
|
|
58 |
|
* Thuban/UI/view.py (MapCanvas.do_redraw): Pass the entire bitmap |
59 |
|
as update_region to the renderer. |
60 |
|
|
61 |
|
* Thuban/UI/renderer.py |
62 |
|
(ScreenRenderer.layer_ids, ScreenRenderer.draw_shape_layer): The |
63 |
|
update box is now directly a tuple, not a wxRect anymore. |
64 |
|
|
65 |
|
* Thuban/Model/layer.py (Layer.ShapesInRegion): Remove some debug |
66 |
|
prints. |
67 |
|
|
68 |
|
2002-05-07 Bernhard Herzog <[email protected]> |
69 |
|
|
70 |
|
* setup.py: Add the shptree extension module. See |
71 |
|
extensions/pyshapelib/ChangeLog for more details. |
72 |
|
|
73 |
|
* extensions/shapelib/shpopen.c, extensions/shapelib/shapefil.h, |
74 |
|
extensions/shapelib/dbfopen.c: Really update to the versions of |
75 |
|
shapelib 1.2.9. For some reason it wasn't really done on |
76 |
|
2002-04-11. |
77 |
|
|
78 |
|
* extensions/shapelib/shptree.c: Modified version of shptree.c of |
79 |
|
shapelib 1.2.9. The only real difference is the use of qsort |
80 |
|
instead of a bubble sort implementation |
81 |
|
|
82 |
|
* Thuban/Model/layer.py (Layer.__init__): New instance variable |
83 |
|
shapetree to hold the shapelib quadtree for the shapefile |
84 |
|
(Layer.open_shapefile): Create the quad tree. |
85 |
|
(Layer.ShapesInRegion): New method to return the ids of shapes in |
86 |
|
a given region using the quad tree. |
87 |
|
|
88 |
|
* extensions/thuban/wxproj.cpp (project_points): Fix some typos in |
89 |
|
comment |
90 |
|
(draw_polygon_shape): Accept both arcs and polygons. |
91 |
|
(initwxproj): Use the new PYSHAPELIB_IMPORT_API macro to import |
92 |
|
the api. |
93 |
|
|
94 |
|
* Thuban/UI/renderer.py (MapRenderer.layer_ids): New method to |
95 |
|
return the shape ids to be rendered in a given layer. |
96 |
|
(MapRenderer.draw_shape_layer): Call layer_ids to get the list of |
97 |
|
ids. Use draw_polygon_shape to draw arc shapes as well. |
98 |
|
(ScreenRenderer.RenderMap): New parameter for the rectangle that |
99 |
|
has to be updated |
100 |
|
(ScreenRenderer.layer_ids): Make use of the layer's quadtree by |
101 |
|
calling it's ShapesInRegion method. |
102 |
|
|
103 |
|
* Thuban/UI/view.py (MapCanvas.__init__): New instance variable |
104 |
|
update_region for the update region. |
105 |
|
(MapCanvas.OnPaint): Maintain the update region |
106 |
|
(MapCanvas.do_redraw): Pass the bounding box of the update_region |
107 |
|
to the renderer when drawing the bitmap. Reset the update_region. |
108 |
|
|
109 |
|
2002-05-03 Bernhard Herzog <[email protected]> |
110 |
|
|
111 |
|
* Thuban/UI/mainwindow.py (MainWindow.SaveSessionAs, |
112 |
|
MainWindow.OpenSession): Change the file extension of the session |
113 |
|
files to .thuban |
114 |
|
|
115 |
|
* Thuban/Model/session.py (Session.AddMap, forwarded_channels): |
116 |
|
Move the map channels to be forwarded by the session into the |
117 |
|
class constant with forwarded_channels. Also add |
118 |
|
LAYER_PROJECTION_CHANGED and LAYER_VISIBILITY_CHANGED to |
119 |
|
forwarded_channels |
120 |
|
|
121 |
|
* Thuban/Model/base.py (Modifiable.changed): Fix doc-string (a |
122 |
|
typo and some rewording). |
123 |
|
|
124 |
|
2002-05-02 Bernhard Herzog <[email protected]> |
125 |
|
|
126 |
|
* Thuban/UI/view.py: Keep the temporary bitmap used during drawing |
127 |
|
around to speed up most redraws: |
128 |
|
(MapCanvas.__init__): New instance variable bitmap which holds the |
129 |
|
bitmap |
130 |
|
(MapCanvas.do_redraw): Redraw self.bitmap if necessary. Use |
131 |
|
self.bitmap to draw. |
132 |
|
(MapCanvas.full_redraw): New method to force a full redraw |
133 |
|
including the bitmap |
134 |
|
(MapCanvas.SetMap): Subscribe full_redraw instead of redraw to |
135 |
|
make sure the bitmap is redrawn. |
136 |
|
(MapCanvas.projection_changed, MapCanvas.set_view_transform, |
137 |
|
MapCanvas.shape_selected): Call full_redraw instead of readraw to |
138 |
|
make sure the bitmap is redrawn. |
139 |
|
(MapCanvas.OnSize): New method to handle size events so that the |
140 |
|
bitmap can be redrawn. |
141 |
|
|
142 |
|
2002-04-29 Bernhard Herzog <[email protected]> |
143 |
|
|
144 |
|
* Thuban/UI/mainwindow.py (MainWindow.__init__): Subscribe to the |
145 |
|
canvas' VIEW_POSITION event |
146 |
|
(MainWindow.view_position_changed): Handler for VIEW_POSITION. |
147 |
|
Update the text in the status-bar accordingly. |
148 |
|
|
149 |
|
* Thuban/UI/view.py (MapCanvas): Derive from Publisher as well |
150 |
|
(MapCanvas.__del__): Implement because Publisher.__del__ has to be |
151 |
|
called. |
152 |
|
(MapCanvas.__init__): Bind EVT_LEAVE_WINDOW too. Initialize |
153 |
|
current_position |
154 |
|
(MapCanvas.set_current_position): New method to set |
155 |
|
current_position. Issue a VIEW_POSITION event |
156 |
|
(MapCanvas.CurrentPosition): New public method to return the value |
157 |
|
of current_position. Should be called when the VIEW_POSITION event |
158 |
|
is processed. |
159 |
|
(MapCanvas.OnLeftDown, MapCanvas.OnLeftUp, MapCanvas.OnMotion): |
160 |
|
Update the position. |
161 |
|
(MapCanvas.OnLeaveWindow): Set the position to None. |
162 |
|
|
163 |
|
* Thuban/UI/messages.py (VIEW_POSITION): New message for the |
164 |
|
position in the statusbar |
165 |
|
|
166 |
|
2002-04-26 Frank Koormann <[email protected]> |
167 |
|
|
168 |
|
* Thuban/UI/mainwindow.py: AddLayer, Dialog title s/session/data |
169 |
|
|
170 |
|
2002-04-24 Frank Koormann <[email protected]> |
171 |
|
|
172 |
|
* Resources/Bitmaps/identify.xpm: shadow added |
173 |
|
|
174 |
|
* Resources/Bitmaps/fullextent.xpm: new |
175 |
|
|
176 |
|
2002-04-22 Jan-Oliver Wagner <[email protected]> |
177 |
|
|
178 |
|
* Thuban/UI/tree.py (update_tree): added test for None on map bounding box |
179 |
|
|
180 |
|
2002-04-21 Jan-Oliver Wagner <[email protected]> |
181 |
|
|
182 |
|
* Thuban/UI/proj4dialog.py (UTMProposeZoneDialog): new |
183 |
|
|
184 |
|
* Thuban/UI/tree.py (update_tree): added added map extent |
185 |
|
|
186 |
|
* Thuban/UI/mainwindow.py (_method_command): extended by parameter |
187 |
|
icon; added map_full_extend as tool |
188 |
|
|
189 |
|
2002-04-19 Jan-Oliver Wagner <[email protected]> |
190 |
|
|
191 |
|
* Thuban/UI/mainwindow.py (SaveSession): launch save as dialog for |
192 |
|
saving _new_ sessions |
193 |
|
|
194 |
|
* Thuban/Model/session.py (create_empty_session): new session |
195 |
|
don't have a filename (set to None) |
196 |
|
|
197 |
|
* Thuban/UI/tree.py (update_tree): added filename and modified flag |
198 |
|
|
199 |
|
* Thuban/Model/load.py (ProcessSession): convert projection |
200 |
|
parameters from unicode to regular string |
201 |
|
|
202 |
|
* Data/iceland_sample.session: Added UTM Zone 26 projection. |
203 |
|
|
204 |
|
2002-04-11 Bernhard Herzog <[email protected]> |
205 |
|
|
206 |
|
* extensions/shapelib/shapefil.h, extensions/shapelib/shpopen.c, |
207 |
|
extensions/shapelib/dbfopen.c: Update to the versions of shapelib |
208 |
|
1.2.9 |
209 |
|
|
210 |
|
* setup.py (Lib.wxproj extension): Don't link shpopen.c and put |
211 |
|
the pyshapelib directoy into the list of include dirs, so that |
212 |
|
pyshapelib_api.h can be found. |
213 |
|
|
214 |
|
* extensions/thuban/wxproj.cpp (pyshapelib_api): New variable that |
215 |
|
holds the pyshapelib C-API |
216 |
|
(draw_polygon_shape, point_in_polygon_shape, shape_centroid): Use |
217 |
|
pyshapelib_api to access the shapelib functions. |
218 |
|
(initwxproj): Import the c_api from the shapelib module and |
219 |
|
initialize pyshapelib_api. |
220 |
|
|
221 |
|
2002-04-04 Bernhard Herzog <[email protected]> |
222 |
|
|
223 |
|
* setup.py (thuban_bdist_rpm.initialize_options): Use |
224 |
|
initialize_options to create the scripts for the rpm. |
225 |
|
|
226 |
|
* extensions/pyprojection/setup.py (PROJ4_PREFIX): Just use / |
227 |
|
|
228 |
|
2002-04-03 Bernhard Herzog <[email protected]> |
229 |
|
|
230 |
|
* setup.py: Increment version to 0.1.1 |
231 |
|
|
232 |
|
* Thuban/UI/mainwindow.py (MainWindow.__init__): Move the "Add |
233 |
|
Layer" and "Remove Layer" commands from the layer menu to the map |
234 |
|
menu |
235 |
|
|
236 |
|
2002-02-15 Bernhard Herzog <[email protected]> |
237 |
|
|
238 |
|
* Thuban/Model/layer.py (Layer.Shape): list append only takes one |
239 |
|
argument (python <= 1.5.2 erroneously accepted multiuple |
240 |
|
arguments) |
241 |
|
|
242 |
2002-02-04 Bernhard Herzog <[email protected]> |
2002-02-04 Bernhard Herzog <[email protected]> |
243 |
|
|
244 |
* Thuban/UI/identifyview.py (IdentifyGridCtrl): New class to use a |
* Thuban/UI/identifyview.py (IdentifyGridCtrl): New class to use a |