1 |
|
2003-07-24 Bernhard Herzog <[email protected]> |
2 |
|
|
3 |
|
* Thuban/Model/range.py, Thuban/version.py: Remove the #! line as |
4 |
|
it annoys lintian which warns about these files not being |
5 |
|
executable. The #1 isn't necessary here since if you absolutely |
6 |
|
must execute them you can always say "python <filename>". |
7 |
|
|
8 |
|
* Thuban/UI/renderer.py (ScreenRenderer.draw_shape_layer): Remove |
9 |
|
superfluous code to set brush and pen for point shapes |
10 |
|
|
11 |
|
* Thuban/UI/viewport.py: Remove commented out code that wouldn't |
12 |
|
belong in viewport anyway |
13 |
|
|
14 |
|
2003-07-24 Frank Koormann <[email protected]> |
15 |
|
|
16 |
|
* Doc/manual/thuban-manual.xml: Added section on table management. |
17 |
|
|
18 |
|
2003-07-24 Bernhard Herzog <[email protected]> |
19 |
|
|
20 |
|
* test/runtests.py (main): Recognize the long "verbose" option |
21 |
|
correctly. |
22 |
|
|
23 |
|
2003-07-22 Jonathan Coles <[email protected]> |
24 |
|
|
25 |
|
* Doc/manual/thuban-manual.xml: Continue to write first revision |
26 |
|
of the manual. |
27 |
|
|
28 |
|
* Thuban/UI/renderer.py (MapRenderer.render_map): Wrap method |
29 |
|
with Begin/EndDrawing() calls to ensure we aren't doing to |
30 |
|
many updates to the dc during rendering. |
31 |
|
(ScreenRenderer.draw_shape_layer): self.draw_point_shape takes |
32 |
|
a pen and brush argument so they need to be passed to the function. |
33 |
|
|
34 |
|
* Thuban/UI/viewport.py (ViewPort.calc_min_max_scales): New. |
35 |
|
Calculates the minimum and maximum scale values. Factored out |
36 |
|
of set_view_transform so that it could be used to zoom all the |
37 |
|
way into a single point. |
38 |
|
(ViewPort.set_view_transform): Call calc_min_max_scales(). |
39 |
|
(ViewPort.FitSelectedToWindow): Zoom to the maximum scale |
40 |
|
if only a single point is selected. |
41 |
|
|
42 |
|
* Doc/manual/images/1_2_legend_close.png, |
43 |
|
Doc/manual/images/1_2_legend_dock.png, |
44 |
|
Doc/manual/images/1_2_mainwindow.png, |
45 |
|
Doc/manual/images/1_2_mainwindow.ps, |
46 |
|
Doc/manual/images/1_2_mainwindow.sk, |
47 |
|
Doc/manual/images/3_2_fullextent.png, |
48 |
|
Doc/manual/images/3_2_fulllayerextent.png, |
49 |
|
Doc/manual/images/3_2_fullshapeextent.png, |
50 |
|
Doc/manual/images/3_2_pan.png, |
51 |
|
Doc/manual/images/3_2_zoomin.png, |
52 |
|
Doc/manual/images/3_2_zoomout.png, |
53 |
|
Doc/manual/images/3_3_identify.png, |
54 |
|
Doc/manual/images/3_3_label.png, |
55 |
|
Doc/manual/images/3_5_invisible.png, |
56 |
|
Doc/manual/images/3_5_movedown.png, |
57 |
|
Doc/manual/images/3_5_moveup.png, |
58 |
|
Doc/manual/images/3_5_props.png, |
59 |
|
Doc/manual/images/3_5_tobottom.png, |
60 |
|
Doc/manual/images/3_5_totop.png, |
61 |
|
Doc/manual/images/3_5_visible.png: New. Images for the documentation. |
62 |
|
|
63 |
|
2003-07-18 Bernhard Herzog <[email protected]> |
64 |
|
|
65 |
|
* Thuban/UI/messages.py (MAP_REPLACED): New message. |
66 |
|
|
67 |
|
* Thuban/UI/viewport.py (ViewPort.SetMap): Issue MAP_REPLACED |
68 |
|
after the new map has been assigned |
69 |
|
|
70 |
|
* Thuban/UI/mainwindow.py (MainWindow.delegated_messages): |
71 |
|
Delegate MAP_REPLACED to the canvas too |
72 |
|
(MainWindow.prepare_new_session): Removed. Thanks to the new |
73 |
|
MAP_REPLACED message it's no longer needed |
74 |
|
(MainWindow.OpenSession, MainWindow.NewSession): |
75 |
|
prepare_new_session has been removed. |
76 |
|
|
77 |
|
* Thuban/UI/classifier.py (Classifier.__init__): Subscribe to |
78 |
|
MAP_REPLACED so that we can close the dialog if a new map is set. |
79 |
|
(Classifier.unsubscribe_messages): Unsubscribe from MAP_REPLACED |
80 |
|
(Classifier.map_replaced): Handle MAP_REPLACED by closing the |
81 |
|
dialog |
82 |
|
|
83 |
|
* test/test_viewport.py (SimpleViewPortTest) |
84 |
|
(SimpleViewPortTest.test_default_size): Add doc-strings |
85 |
|
(ViewPortTest.setUp): Bind map to self.map so we can use it in |
86 |
|
tests. Subscribe to MAP_REPLACED messages too. |
87 |
|
(ViewPortTest.tearDown): No need to explicitly unsubscribe |
88 |
|
(ViewPortTest.test_set_map): New test for the SetMap method. |
89 |
|
|
90 |
|
2003-07-18 Bernhard Herzog <[email protected]> |
91 |
|
|
92 |
|
* test/test_viewport.py (SimpleViewPortTest.test_default_size): |
93 |
|
Move this test from ViewPortTest.setUp to this new separate test |
94 |
|
case. setUp is not the place for the actual tests. |
95 |
|
(ViewPortTest.test_inital_settings, ViewPortTest.setUp): Move some |
96 |
|
more of the test from setUp to the new test test_inital_settings. |
97 |
|
(ViewPortTest.test_win_to_proj, ViewPortTest.test_proj_to_win) |
98 |
|
(ViewPortTest.test_proj_conv): Split test_proj_conv into |
99 |
|
test_win_to_proj and test_proj_to_win and make the tests easier to |
100 |
|
understand |
101 |
|
(ViewPortTest.testFitRectToWindow, ViewPortTest.testZoomFactor) |
102 |
|
(ViewPortTest.testZoomOutToRect, ViewPortTest.testTranslate) |
103 |
|
(ViewPortTest.test_unprojected_rect_around_point) |
104 |
|
(ViewPortTest.test_find_shape_at, ViewPortTest.testTools): |
105 |
|
Reformat to increase readability. |
106 |
|
|
107 |
|
2003-07-18 Bernhard Herzog <[email protected]> |
108 |
|
|
109 |
|
* Thuban/UI/view.py (MapCanvas.OnLeftDown): Capture the mouse. |
110 |
|
|
111 |
|
2003-07-18 Bernhard Herzog <[email protected]> |
112 |
|
|
113 |
|
* test/runtests.py: The test suite can now be run without an X |
114 |
|
connection. To make sure this remains true, remove the DISPLAY |
115 |
|
environment variable so that an error occurs if the wxGTK is |
116 |
|
imported accidentally |
117 |
|
|
118 |
|
2003-07-18 Bernhard Herzog <[email protected]> |
119 |
|
|
120 |
|
* Thuban/UI/viewport.py: Remove unused imports |
121 |
|
|
122 |
|
* Thuban/UI/view.py: Remove unused imports |
123 |
|
|
124 |
|
2003-07-18 Bernhard Herzog <[email protected]> |
125 |
|
|
126 |
|
* test/test_export.py Remove unused imports. The OutputTransform |
127 |
|
function is now in viewport.py and is called output_transform |
128 |
|
(TestScalebar.test_output_transform) |
129 |
|
(TestScalebar.test_OutputTransform): Renamed to |
130 |
|
test_output_transform and updated to use output_transform instead |
131 |
|
of OutputTransform |
132 |
|
|
133 |
|
* Thuban/UI/view.py (OutputTransform): Moved to viewport.py and |
134 |
|
renamed. |
135 |
|
(MapCanvas.Export, MapPrintout.draw_on_dc): OutputTransform was |
136 |
|
renamed to output_transform |
137 |
|
|
138 |
|
* Thuban/UI/viewport.py (OutputTransform, output_transform): |
139 |
|
Rename to output_transform |
140 |
|
|
141 |
|
2003-07-18 Bernhard Herzog <[email protected]> |
142 |
|
|
143 |
|
* Thuban/Model/layer.py (Layer.__init__): Rename |
144 |
|
classificationField to classificatin_column and init it here so |
145 |
|
that it can be used in SetClassificationColumn |
146 |
|
(Layer.GetClassificationColumn, Layer.GetClassificationField): |
147 |
|
Rename to GetClassificationColumn. |
148 |
|
(Layer.SetClassificationColumn, Layer.SetClassificationField): |
149 |
|
Rename to SetClassificationColumn and issue a LAYER_CHANGED |
150 |
|
message if the column changes. |
151 |
|
(Layer._classification_changed, Layer.ClassChanged): Rename to |
152 |
|
_classification_changed. Update the callers. |
153 |
|
(Layer.SetShapeStore): Further field->column renames. |
154 |
|
|
155 |
|
* Thuban/Model/load.py (SessionLoader.start_classification) |
156 |
|
(SessionLoader.start_clpoint): Updates because of |
157 |
|
field->column method name changes in the Layer class |
158 |
|
|
159 |
|
* Thuban/Model/save.py (SessionSaver.write_classification): Updates |
160 |
|
because of field->column method name changes in the Layer class |
161 |
|
|
162 |
|
* Thuban/UI/classifier.py (Classifier.__init__) |
163 |
|
(Classifier._OnTry, Classifier._OnRevert): Updates because of |
164 |
|
field->column method name changes in the Layer class |
165 |
|
|
166 |
|
* Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Updates |
167 |
|
because of field->column method name changes in the Layer class |
168 |
|
|
169 |
|
* Thuban/UI/viewport.py (ViewPort.find_shape_at): Updates because |
170 |
|
of field->column method name changes in the Layer class |
171 |
|
|
172 |
|
* test/test_save.py (SaveSessionTest.testClassifiedLayer) |
173 |
|
(SaveSessionTest.testClassifiedLayer): Update because of |
174 |
|
field->column method name changes in the Layer class |
175 |
|
|
176 |
|
* test/test_layer.py (SetShapeStoreTests.setUp) |
177 |
|
(SetShapeStoreTests.test_sanity): Update because of field->column |
178 |
|
method name changes in the Layer class |
179 |
|
(TestLayerModification.setUp): Subscribe to LAYER_CHANGED as well |
180 |
|
(TestLayerModification.test_sanity) |
181 |
|
(TestLayerModification.test_initial_settings): remove unsued code |
182 |
|
and rename to test_sanity. |
183 |
|
(TestLayerModification.test_set_classification): New test for |
184 |
|
SetClassification and SetClassificationField. |
185 |
|
|
186 |
|
2003-07-18 Bernhard Herzog <[email protected]> |
187 |
|
|
188 |
|
* test/test_classgen.py (TestFixedRamp.test): Extend test to check |
189 |
|
the non-fixed values as well. The old test would have accepted a |
190 |
|
fixed ramp that only returnes the fixed properties |
191 |
|
|
192 |
|
2003-07-17 Jonathan Coles <[email protected]> |
193 |
|
|
194 |
|
* Doc/manual/mainwindow.png, Doc/manual/mainwindow.xcf: Screen |
195 |
|
shots for the manual. The XCF file is the source image and |
196 |
|
has additional layers to support changes. |
197 |
|
|
198 |
|
* Doc/manual/thuban-manual.xml: Wrote an initial Introduction. |
199 |
|
|
200 |
|
* Thuban/UI/classifier.py (Classifier.__BuildClassification): |
201 |
|
Return both the new class and the field name. |
202 |
|
|
203 |
|
* Thuban/UI/mainwindow.py (MainWindow.ToggleLegend): Don't |
204 |
|
fit the map to the window as this changes any zoom level that |
205 |
|
the user may have set. |
206 |
|
|
207 |
|
2003-07-16 Jonathan Coles <[email protected]> |
208 |
|
|
209 |
|
* Thuban/Model/classgen.py (generate_singletons, |
210 |
|
generate_uniform_distribution, generate_quantiles): Remove |
211 |
|
fixes parameter, but maintain the same functionality by having |
212 |
|
the calling function pass a FixedRamp object for the ramp. |
213 |
|
(FixedRamp): New. Adapts a ramp to have fixed property values. |
214 |
|
|
215 |
|
* Thuban/Model/classification.py: Use new CLASS_CHANGED message. |
216 |
|
(Classification): Inherit from Publisher. |
217 |
|
(Classification.__init__): Remove the layer parameter. |
218 |
|
Classifications no longer need to have a parent layer. |
219 |
|
(Classification.GetField, Classification.GetFieldType, |
220 |
|
Classification.SetFieldInfo): Removed. The field name is stored |
221 |
|
in the layer, and the type can be retreived by calling |
222 |
|
Layer.GetFieldType(). |
223 |
|
(Classification._set_layer, Classification.GetLayer): Removed. |
224 |
|
Classifications no longer have a parent layer. |
225 |
|
|
226 |
|
* Thuban/Model/layer.py (Layer.Destroy): Unsubscribe from the |
227 |
|
classification. |
228 |
|
(Layer.SetShapeStore): Reset the classification first while |
229 |
|
we still have the old shape store to work with. |
230 |
|
(Layer.GetClassificationField, Layer.SetClassificationField): |
231 |
|
New. Method for getting/setting the field to classify on. |
232 |
|
(Layer.SetClassification): Simplified now that the layer |
233 |
|
simply has to hold a reference to the classification and not |
234 |
|
tell the classification who owns it. |
235 |
|
Fixes RTbug #2023. |
236 |
|
|
237 |
|
* Thuban/Model/load.py (SessionLoader.start_classification): |
238 |
|
Set the field name on the layer, not the classification. |
239 |
|
|
240 |
|
* Thuban/Model/messages.py: Add CLASS_CHANGED for when a |
241 |
|
classification is modified. |
242 |
|
|
243 |
|
* Thuban/Model/save.py (SessionSaver.write_classification): |
244 |
|
Get the field name and type from the layer. |
245 |
|
|
246 |
|
* Thuban/Model/table.py (table_to_dbf, table_to_csv): Renamed |
247 |
|
parameter records to rows and add docstring. Fixes RTbug #1997. |
248 |
|
|
249 |
|
* Thuban/UI/classgen.py (ClassGenDialog.OnOK): Use a fixed |
250 |
|
ramp when we need to fix certain values of a ramp rather than |
251 |
|
using the old fixes parameter. Fixes RTbug #2024. |
252 |
|
|
253 |
|
* Thuban/UI/classifier.py (ClassGrid.CreateTable): Add fieldType |
254 |
|
parameter. |
255 |
|
(ClassTable.Reset): Add fieldType parameter and use it, rather |
256 |
|
than asking the classification. |
257 |
|
(Classifier.__init__): Remember the original class's field |
258 |
|
and ask the layer for the field type, rather than the classification. |
259 |
|
(Classifier.__SetGridTable): Retrieve the field and field type |
260 |
|
for the table because they are not in the classification. |
261 |
|
(Classifier._OnTry, Classifier._OnRevert): Set the classification |
262 |
|
field on the layer in addition to the classification itself. |
263 |
|
|
264 |
|
* Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Get the |
265 |
|
classification field from layer. |
266 |
|
|
267 |
|
* Thuban/UI/viewport.py (ViewPort.find_shape_at): Get the |
268 |
|
classification field from layer. Split up tests and remove |
269 |
|
*-imports. Fixes RTbug #1992. |
270 |
|
|
271 |
|
* test/test_classgen.py (TestFixedRamp): Test for the FixedRamp class. |
272 |
|
|
273 |
|
* test/test_classification.py |
274 |
|
(TestClassification.test_classification): Remove tests for methods |
275 |
|
that no longer exist. |
276 |
|
|
277 |
|
* test/test_layer.py (SetShapeStoreTests.setUp): Classification |
278 |
|
__init__ no longer has a field parameter, use SetClassificationField. |
279 |
|
(SetShapeStoreTests.test_sanity): Use layer object to get class |
280 |
|
field info. |
281 |
|
|
282 |
|
* test/test_save.py (SaveSessionTest.testClassifiedLayer): Use |
283 |
|
SetClassificationField on layer to set class field info. |
284 |
|
|
285 |
|
* test/test_viewport.py: Renamed from test/test_view.py. |
286 |
|
|
287 |
|
2003-07-16 Jan-Oliver Wagner <[email protected]> |
288 |
|
|
289 |
|
* Doc/manual/thuban-manual.xml: Added authors and an initial |
290 |
|
coarse structure. |
291 |
|
|
292 |
|
2003-07-15 Bernhard Herzog <[email protected]> |
293 |
|
|
294 |
|
* test/support.py (FloatComparisonMixin): This is a mix-in class |
295 |
|
and therefore should not be derived from any other class. |
296 |
|
|
297 |
|
* test/test_range.py (RangeTest): FloatComparisonMixin is a |
298 |
|
mix-in, so derive from TestCase as well. |
299 |
|
|
300 |
|
2003-07-15 Bernhard Herzog <[email protected]> |
301 |
|
|
302 |
|
* Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Rework the |
303 |
|
draw_func handling a bit to remove one layer of indirection. This |
304 |
|
makes the renderer about 10% faster in the non-classifying case |
305 |
|
and the code a bit cleaner |
306 |
|
(MapRenderer.draw_point_shape): Add the pen and brush parameters |
307 |
|
and set them in the dc. Now the draw_point_shape method and |
308 |
|
wxproj's draw_polygon_shape function have basically the same |
309 |
|
signature so that both can be directly used as draw_func |
310 |
|
|
311 |
|
2003-07-15 Bernhard Herzog <[email protected]> |
312 |
|
|
313 |
|
* Thuban/Model/save.py (SessionSaver.write_classification): Encode |
314 |
|
string values (in addition to the labels) as UTF 8 |
315 |
|
|
316 |
|
* Thuban/Model/load.py (SessionLoader.start_clpoint): Decode the |
317 |
|
values if the field type is string |
318 |
|
|
319 |
|
* test/test_save.py (SaveSessionTest.testClassifiedLayer): Test |
320 |
|
saving a session with non-ascii string classification values. |
321 |
|
|
322 |
|
* test/test_load.py (TestClassification.file_contents) |
323 |
|
(TestClassification.test): Check for non-ascii values in string |
324 |
|
classifications |
325 |
|
|
326 |
|
2003-07-14 Jonathan Coles <[email protected]> |
327 |
|
|
328 |
|
* test/test_view.py: New. Tests for ViewPort. |
329 |
|
|
330 |
|
2003-07-14 Frank Koormann <[email protected]> |
331 |
|
|
332 |
|
* Thuban/Model/load.py (SessionLoader.start_map): Encode map |
333 |
|
title to latin1. Fixes https://intevation.de/rt/webrt?serial_num=2013 |
334 |
|
|
335 |
|
* test/test_load_0_8.py (TestUnicodeStrings): New, test load of |
336 |
|
unicode strings from session file: session title, map title and |
337 |
|
projection name. |
338 |
|
|
339 |
|
2003-07-10 Jonathan Coles <[email protected]> |
340 |
|
|
341 |
|
* Thuban/UI/viewport.py (Tool.MouseUp): Should have called |
342 |
|
drag_stop, not drag_move when the mouse is released. |
343 |
|
|
344 |
|
2003-07-10 Jonathan Coles <[email protected]> |
345 |
|
|
346 |
|
The most important part of this is the seperation of view.py into |
347 |
|
two pieces. viewport.py now has a class called ViewPort which |
348 |
|
contains all the non-wx parts of view.py and can therefore be |
349 |
|
tested. view.py contains only the wx-specific parts and is fairly |
350 |
|
simple. |
351 |
|
|
352 |
|
* Thuban/UI/view.py: Stripped out all non-wx functionality. Fixes |
353 |
|
RTTbug #1992. |
354 |
|
* Thuban/UI/viewport.py: New. Contains non-wx view functionality. |
355 |
|
RTTbug #1992. |
356 |
|
|
357 |
|
* Thuban/Model/classgen.py (generate_singletons, |
358 |
|
generate_uniform_distribution, generate_quantiles): |
359 |
|
Added 'fixes' parameter so that property attributes can |
360 |
|
be held constant over the generated classification groups. |
361 |
|
(CustomRamp.GetProperties): Remove unused variables. |
362 |
|
|
363 |
|
* Thuban/Model/map.py (Map.SetProjection): Send the old |
364 |
|
projection as an argument to listeners of the MAP_PROJECTION_CHANGED |
365 |
|
event. |
366 |
|
|
367 |
|
* Thuban/Model/table.py (table_to_dbf, table_to_csv): Added 'records' |
368 |
|
parameter which is a list of records that restricts which |
369 |
|
records are saved. Fixes RTbug #1997. |
370 |
|
|
371 |
|
* Thuban/UI/application.py (ThubanApplication.ShowExceptionDialog): |
372 |
|
Port exception dialog from GREAT-ER. Fixes RTbug #1993. |
373 |
|
|
374 |
|
* Thuban/UI/classgen.py (ClassGenDialog.__init__): Add controls |
375 |
|
to allow the user to fix line color/width on generated groups. |
376 |
|
(ClassGenDialog.OnOK): Use new 'fixes' parameter of the generate_* |
377 |
|
functions to optionally fix group properties. |
378 |
|
|
379 |
|
* Thuban/UI/main.py (main): Set exception hook to the |
380 |
|
ShowExceptionDialog. Fixes RTbug #1993. |
381 |
|
|
382 |
|
* Thuban/UI/mainwindow.py (MainWindow.ShowTableView): Raise |
383 |
|
the table window when it is selectd to be shown. |
384 |
|
|
385 |
|
* Thuban/UI/tableview.py (QueryTableFrame.__init__): Add an |
386 |
|
Export Selection button and move the export buttons underneath |
387 |
|
the table. |
388 |
|
(QueryTableFrame.UpdateStatusText): Added event argument so |
389 |
|
that it can respond to grid selection events. The status text |
390 |
|
is now updated even when the table is not associated with a |
391 |
|
layer as was previously assumed. |
392 |
|
(QueryTableFrame.OnGridSelectRange, OnGridSelectCell): Removed. |
393 |
|
UpdateStatusText responds to these events. |
394 |
|
(QueryTableFrame.OnSaveAs): Renamed to doExport. |
395 |
|
(QueryTableFrame.doExport): Helper function that saves the |
396 |
|
entire table, or selected rows, to a file. |
397 |
|
(QueryTableFrame.OnExport, QueryTableFrame.OnExportSel): New. |
398 |
|
Respond to export button events and call doExport. |
399 |
|
|
400 |
|
* extensions/thuban/gdalwarp.cpp (ProjectRasterFile): Make sure |
401 |
|
the function doesn't return NULL without first setting a Python |
402 |
|
Error. |
403 |
|
|
404 |
|
* test/runtests.py (main): Only print "Unknown option" for |
405 |
|
unsupported options. |
406 |
|
|
407 |
|
* test/support.py (FloatComparisonMixin.assertFloatEqual): Take |
408 |
|
optional epsilon argument to specify floating point accuracy. |
409 |
|
(FloatComparisonMixin.assertFloatSeqEqual): Call assertFloatEqual |
410 |
|
for each item test. |
411 |
|
|
412 |
|
* test/test_csv_table.py (TestCSVTable.test_table_to_cvs): Add |
413 |
|
tests for saving selected records. |
414 |
|
|
415 |
|
* test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): Add |
416 |
|
tests for saving selected records. |
417 |
|
|
418 |
|
* test/test_map.py (TestMapWithContents.test_set_projection): |
419 |
|
MAP_PROJECTION_CHANGED events send the old projection. |
420 |
|
|
421 |
|
* test/test_session.py |
422 |
|
(TestSessionWithContent.test_forward_map_projection): |
423 |
|
MAP_PROJECTION_CHANGED events send the old projection. |
424 |
|
|
425 |
|
* test/test_table.py (TableTest): Update tests to use non-deprecated |
426 |
|
functions. |
427 |
|
|
428 |
|
2003-07-08 Bernhard Herzog <[email protected]> |
429 |
|
|
430 |
|
* Thuban/Model/transientdb.py (TransientTableBase.Width): The type |
431 |
|
constants in the column objects are the standard ones defined in |
432 |
|
the table module. |
433 |
|
|
434 |
|
* test/test_transientdb.py |
435 |
|
(TestTransientTable.test_transienttable_to_dbf): New. Test whether |
436 |
|
exporting transient tables as DBF works. This should catch the bug |
437 |
|
just fixed in TransientTableBase.Width. |
438 |
|
|
439 |
|
2003-07-08 Bernhard Herzog <[email protected]> |
440 |
|
|
441 |
|
* Thuban/Model/classgen.py (CustomRamp.GetProperties): Compute the |
442 |
|
interpolated colors correctly. |
443 |
|
|
444 |
|
* test/test_classgen.py (TestCustomRamp.test_color_interpolation): |
445 |
|
New. Test case for the fix in classgen.py |
446 |
|
|
447 |
|
2003-07-08 Bernhard Herzog <[email protected]> |
448 |
|
|
449 |
|
* test/runtests.py (main): Make the default output less verbose |
450 |
|
and add a verbosity option (-v) to get the old output |
451 |
|
|
452 |
|
2003-07-08 Bernhard Herzog <[email protected]> |
453 |
|
|
454 |
|
* Resources/XML/thuban-0.9.dtd: New. This will become the DTD for |
455 |
|
0.9. |
456 |
|
|
457 |
|
* Thuban/Model/transientdb.py (TransientJoinedTable.JoinType): |
458 |
|
New. Return the join type |
459 |
|
|
460 |
|
* Thuban/Model/save.py (SessionSaver.write_session): Use new 0.9 |
461 |
|
DTD |
462 |
|
(SessionSaver.write_data_containers): Save the join type for |
463 |
|
joined tables |
464 |
|
|
465 |
|
* Thuban/Model/load.py (SessionLoader.__init__): Add the new 0.9 |
466 |
|
namespace |
467 |
|
(SessionLoader.start_jointable): Handle the jointype attribute |
468 |
|
|
469 |
|
* test/test_load_0_8.py: New. Effectively a copy of test_load.py |
470 |
|
as of Thuban 0.8. These are now tests to determine whether Thuban |
471 |
|
can still read files generated by Thuban 0.8 |
472 |
|
|
473 |
|
* test/test_load.py (LoadSessionTest.dtd) |
474 |
|
(TestSingleLayer.file_contents) |
475 |
|
(TestLayerVisibility.file_contents, TestLabels.file_contents) |
476 |
|
(TestLayerProjection.file_contents) |
477 |
|
(TestRasterLayer.file_contents, TestJoinedTable.file_contents) |
478 |
|
(TestJoinedTable.file_contents) |
479 |
|
(TestLoadError.file_contents): Update for new DTD |
480 |
|
(TestJoinedTable.file_contents, TestJoinedTable.setUp): Add test |
481 |
|
for new join type attribute |
482 |
|
|
483 |
|
* test/test_save.py (SaveSessionTest.dtd) |
484 |
|
(SaveSessionTest.testEmptySession) |
485 |
|
(SaveSessionTest.testSingleLayer) |
486 |
|
(SaveSessionTest.testLayerProjection) |
487 |
|
(SaveSessionTest.testRasterLayer) |
488 |
|
(SaveSessionTest.testClassifiedLayer) |
489 |
|
(SaveSessionTest.test_dbf_table) |
490 |
|
(SaveSessionTest.test_joined_table): Update for new DTD |
491 |
|
(SaveSessionTest.test_joined_table): Add test for new join type |
492 |
|
attribute |
493 |
|
|
494 |
|
2003-07-04 Bernhard Herzog <[email protected]> |
495 |
|
|
496 |
|
* Thuban/Model/table.py (_find_dbf_column_names): New. Helper |
497 |
|
function for table_to_dbf |
498 |
|
(table_to_dbf): Deal with names longer than the 10 character limit |
499 |
|
|
500 |
|
* test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): Add |
501 |
|
doc-string |
502 |
|
(TestTableToDBF.test_table_to_dbf_long_col_names): New test for |
503 |
|
long column names |
504 |
|
|
505 |
|
2003-07-03 Bernhard Herzog <[email protected]> |
506 |
|
|
507 |
|
* Doc/manual/thuban-manual.xml: Fix the CVS Revision Tag syntax |
508 |
|
|
509 |
|
2003-07-03 Bernhard Herzog <[email protected]> |
510 |
|
|
511 |
|
* Doc/manual/thuban-manual.xml, Doc/manual/README: New. Skeleton |
512 |
|
for the Thuban manual and README with some basic information about |
513 |
|
the manual |
514 |
|
|
515 |
|
2003-07-03 Bernhard Herzog <[email protected]> |
516 |
|
|
517 |
|
* Thuban/Model/transientdb.py (TransientJoinedTable.__init__): |
518 |
|
Update doc-string |
519 |
|
(TransientJoinedTable.create): Do not modify the column objects of |
520 |
|
the input tables in place and copy all columns of the input tables |
521 |
|
into the joined table after all. |
522 |
|
|
523 |
|
* test/test_transientdb.py |
524 |
|
(TestTransientTable.test_transient_joined_table_same_column_name): |
525 |
|
Update to reflect the new behavior |
526 |
|
(TestTransientTable.test_transient_joined_table_with_equal_column_names): |
527 |
|
Update to reflect the new behavior |
528 |
|
(TestTransientTable.test_transient_joined_table_name_collisions_dont_modify_in_place): |
529 |
|
New test case for a bug which modified the column objects in place |
530 |
|
|
531 |
|
2003-07-02 Jonathan Coles <[email protected]> |
532 |
|
|
533 |
|
* Thuban/Model/classgen.py (generate_singletons, |
534 |
|
generate_uniform_distribution, generate_quantiles, |
535 |
|
GenQuantiles0): Make sure maxValue isn't less than |
536 |
|
one, otherwise we could divide by zero. |
537 |
|
|
538 |
|
* test/test_classgen.py (ClassGenTest.doClassRangeTest, |
539 |
|
ClassGenTest.doClassSingleTest): Call doBoundsTest to |
540 |
|
check the end classification groups against the |
541 |
|
proper property values. |
542 |
|
(ClassGenTest.doBoundsTest): New. Checks the first and |
543 |
|
last classification groups to make sure their properties |
544 |
|
are the correct upper and lower bounds for a color ramp. |
545 |
|
|
546 |
|
2003-07-02 Jonathan Coles <[email protected]> |
547 |
|
|
548 |
|
* Thuban/Model/classgen.py (generate_singletons, |
549 |
|
generate_uniform_distribution, generate_quantiles, |
550 |
|
GenQuantiles0): The denominator was one to high when |
551 |
|
calculating the index for the ramp causing the index |
552 |
|
to never to reach one. |
553 |
|
|
554 |
|
2003-07-02 Jonathan Coles <[email protected]> |
555 |
|
|
556 |
|
Changed the singature of ClassGroupRange.__init__ and |
557 |
|
ClassGroupRange.SetRange() so that the min/max values are |
558 |
|
passed as a tuple. This makes a better calling scheme for |
559 |
|
when a Range object is passed instead. |
560 |
|
|
561 |
|
* Thuban/Model/classgen.py: Fixed parameters to |
562 |
|
ClassGroupRange constructor. |
563 |
|
|
564 |
|
* Thuban/Model/classification.py (ClassGroupRange.__init__): |
565 |
|
Consolidate the min/max parameters into a single _range which |
566 |
|
can either be a tuple or a Range object. |
567 |
|
(ClassGroupRange.SetRange): Consolidate the min/max parameters |
568 |
|
into a single _range which can either be a tuple or a Range object. |
569 |
|
|
570 |
|
* Thuban/Model/load.py (SessionLoader.start_clrange): Fix |
571 |
|
call to ClassGroupRange constructor to use a tuple. |
572 |
|
|
573 |
|
* Thuban/Model/layer.py (Layer.SetClassification): Switch |
574 |
|
the classification instance variable to the new class |
575 |
|
before calling _set_layer otherwise subscribers to a |
576 |
|
LAYER_CHANGED event will not see any difference. |
577 |
|
|
578 |
|
* test/test_classification.py: Fix tests of ClassGroupRange |
579 |
|
so that they use the new signature. |
580 |
|
|
581 |
|
* test/test_load.py: Fix use of ClassGroupRange so that it |
582 |
|
uses the new signature. |
583 |
|
|
584 |
|
* test/test_load_0_2.py: Fix use of ClassGroupRange so that it |
585 |
|
uses the new signature. |
586 |
|
|
587 |
|
* test/test_save.py: Fix use of ClassGroupRange so that it |
588 |
|
uses the new signature. |
589 |
|
|
590 |
|
|
591 |
|
2003-07-01 Jonathan Coles <[email protected]> |
592 |
|
|
593 |
|
* Thuban/Model/classgen.py: Fixes RTbug #1972, 1971. |
594 |
|
Import used objects/class from color. |
595 |
|
(generate_singletons): We don't |
596 |
|
need the numGroups parameter anymore because we are using |
597 |
|
the new ramps with GetProperties(). |
598 |
|
(generate_uniform_distribution): Use new ramp method |
599 |
|
GetProperties(). |
600 |
|
(generate_quantiles, GenQuantiles0): Use new ramp method |
601 |
|
GetProperties(). |
602 |
|
(CustomRamp.SetNumGroups): Removed. The ramps now map |
603 |
|
a value from 0 to 1 to class properties so the number |
604 |
|
of groups is not needed ahead of time. |
605 |
|
(CustomRamp.next): Removed. CustomRamp does not support |
606 |
|
interation anymore. |
607 |
|
(CustomRamp.GetProperties): Returns a ClassGroupProperties |
608 |
|
object based on the index value from 0 to 1 that is |
609 |
|
passed to it. |
610 |
|
(GreyRamp, RedRamp, GreenRamp, BlueRamp, GreenToRedRamp): |
611 |
|
Made into instances of Monochromatic class instread of |
612 |
|
deriving from it. |
613 |
|
(HotToCold.SetNumGroups): Removed. See CustomRamp. |
614 |
|
(HotToCold.next): Removed. See CustomRamp. |
615 |
|
|
616 |
|
* Thuban/Model/classification.py: Fixes RTbug #1973, 1971. |
617 |
|
(Classification.SetField, Classification.SetFieldType): |
618 |
|
Replaced with SetFieldInfo. |
619 |
|
(Classification.SetFieldInfo): New. Does a better job of |
620 |
|
what SetField and SetFieldType used to do by combining |
621 |
|
their function since they should really always be done |
622 |
|
at the same time. |
623 |
|
(Classification.SetLayer): Renamed to _set_layer. |
624 |
|
(Classification._set_layer): Should only be called from |
625 |
|
Layer's SetClassification. This does not cause a recursive |
626 |
|
call as SetLayer did because we know that Layer knows about |
627 |
|
the classification. |
628 |
|
|
629 |
|
* Thuban/Model/color.py: Fixes RTbug #1971. |
630 |
|
(_Transparent): Renamed from Transparent so it doesn't |
631 |
|
conflict with the module variable. |
632 |
|
(Transparent, Black): Renamed from Color.Transparent, |
633 |
|
Color.Black so they are not class variables. |
634 |
|
|
635 |
|
* Thuban/Model/layer.py: Fixes RTbug #1971, 1973. |
636 |
|
(Layer.Destroy): We don't need to call SetClassification |
637 |
|
anymore to clear out the back reference in the classifcation |
638 |
|
to the layer. It's better to set it to None using _set_layer, |
639 |
|
and we won't be creating another clas object too. |
640 |
|
(Layer.SetClassification): Classification._set_layer is not |
641 |
|
recursive so remove all the locking variables. Also clean |
642 |
|
up the code so that it remains unchanged if something fails. |
643 |
|
|
644 |
|
* Thuban/Model/load.py: Fixes RTbug #1971. |
645 |
|
(SessionLoader.start_classification): Call |
646 |
|
Classification.SetFieldInfo(). |
647 |
|
|
648 |
|
* Thuban/Model/save.py: Removed import of Color which wasn't |
649 |
|
being used. |
650 |
|
|
651 |
|
* Thuban/UI/classgen.py: Fixes RTbug #1972. |
652 |
|
(ClassGenDialog.__init__): Color ramps are now instances |
653 |
|
already so we don't need to create any new objects. |
654 |
|
(ClassGenDialog.OnOK): Check for numGroups is no longer |
655 |
|
necessary because we never use it. |
656 |
|
|
657 |
|
* Thuban/UI/classifier.py: Fixes RTbug #1971. |
658 |
|
(Classifier.__BuildClassification, Classifier.__SetGridTable): |
659 |
|
Call Classification.SetFieldInfo() instead of SetFieldType. |
660 |
|
|
661 |
|
* Thuban/UI/renderer.py: Fixes RTbug #1971. |
662 |
|
|
663 |
|
* Thuban/UI/view.py: Fixes RTbug #1974, 1971. |
664 |
|
(MapCanvas.__init__): Subscribe to the idle time event. Set |
665 |
|
background color to white. |
666 |
|
(MapCanvas.OnPaint): Set a flag indicating that we should |
667 |
|
render the map during idle time. If we already have a bitmap |
668 |
|
just draw it now. |
669 |
|
(MapCanvas.OnIdle): New. Render the map only during idle time. |
670 |
|
This also fixes a problem with the busy cursor under gtk. |
671 |
|
|
672 |
|
* test/test_classgen.py (ClassGenTest.test_generate_singletons): |
673 |
|
Fix calls to generate_singletons because the signature changed. |
674 |
|
|
675 |
|
* test/test_classification.py: Fix color references and |
676 |
|
change calls to Classification.[SetField|SetFieldType] to |
677 |
|
SetFieldInfo. |
678 |
|
|
679 |
|
* test/test_load.py: Fix color references. |
680 |
|
|
681 |
|
* test/test_load_0_2.py: Fix color references. |
682 |
|
|
683 |
|
* test/test_save.py (SaveSessionTest.testClassifiedLayer): |
684 |
|
Change calls to Classification.[SetField|SetFieldType] to |
685 |
|
SetFieldInfo. |
686 |
|
|
687 |
|
2003-07-01 Frank Koormann <[email protected]> |
688 |
|
|
689 |
|
MERGE from the greater-ms3 branch. |
690 |
|
|
691 |
|
* test/test_transientdb.py |
692 |
|
(TestTransientTable.test_transient_joined_table_with_equal_column_names): |
693 |
|
New. Test join of two tables with partly equal column names. |
694 |
|
|
695 |
|
* Thuban/Model/transientdb.py (TransientJoinedTable.create): |
696 |
|
If duplicates in left and right tables column names are found, |
697 |
|
append '_' (underscores) to the name until it is unique. |
698 |
|
Create always new internal names for the resulting table and reference |
699 |
|
columns in the join statement with <table>.<column> |
700 |
|
|
701 |
|
2003-07-01 Bernhard Herzog <[email protected]> |
702 |
|
|
703 |
|
* test/test_transientdb.py |
704 |
|
(TestTransientTable.test_transient_joined_table_same_column_name): |
705 |
|
New. Test whether joining on columns with the same names in both |
706 |
|
tables works. |
707 |
|
|
708 |
|
* Thuban/Model/transientdb.py (TransientJoinedTable.create): Make |
709 |
|
sure to use the right internal names even when joining on field |
710 |
|
with the same names in both tables. Also, detect duplicate names |
711 |
|
in the joined table correctly. |
712 |
|
|
713 |
|
2003-07-01 Frank Koormann <[email protected]> |
714 |
|
|
715 |
|
* Thuban/UI/renderer.py (ExportRenderer.render_legend): |
716 |
|
Reverse List of layers to render in same order as in desktop legend. |
717 |
|
|
718 |
|
2003-06-30 Jonathan Coles <[email protected]> |
719 |
|
|
720 |
|
* Thuban/version.py (make_tuple): Takes a version string |
721 |
|
and splits it into a tuple of at most three integers. |
722 |
|
Used make_tuple() to make tuple versions of the version |
723 |
|
numbers. |
724 |
|
|
725 |
|
* Thuban/UI/about.py: Add Thuban email addresses. |
726 |
|
|
727 |
|
2003-06-30 Jonathan Coles <[email protected]> |
728 |
|
|
729 |
|
* Thuban/version.py: SQLite/PySQLite version dependencies |
730 |
|
were too high. |
731 |
|
|
732 |
|
2003-06-30 Jonathan Coles <[email protected]> |
733 |
|
|
734 |
|
* Thuban/version.py: Update version to 0.8.1 |
735 |
|
|
736 |
|
* MANIFEST.in: Added Projections so that default.proj is |
737 |
|
included. |
738 |
|
|
739 |
|
2003-06-26 Jonathan Coles <[email protected]> |
740 |
|
|
741 |
|
New About box with lots more information including library |
742 |
|
versions and credits. More/better version checking before |
743 |
|
Thuban starts. |
744 |
|
|
745 |
|
* Thuban/UI/about.py: New. New About box that displays |
746 |
|
library version information and credits. |
747 |
|
|
748 |
|
* Thuban/version.py: Added new 'versions' dictionary which |
749 |
|
contains the verions of various libraries which are checked |
750 |
|
when the module loads. |
751 |
|
(verify_versions): Check all version numbers and returns |
752 |
|
a list of errors. |
753 |
|
|
754 |
|
* Thuban/UI/classifier.py (Classifier.__EnableButtons): |
755 |
|
Reset the status of the buttons as the situation warrants, |
756 |
|
but in a better more reliable way by not relying on the |
757 |
|
current status to determine what needs to change. |
758 |
|
|
759 |
|
* Thuban/UI/main.py (wxCHECK_VERSION): Removed. Not needed. |
760 |
|
(verify_versions): Remove most of the code since it is |
761 |
|
now in Thuban.version.verify_versions.o |
762 |
|
|
763 |
|
* Thuban/UI/mainwindow.py (MainWindow.About): Call new |
764 |
|
About box in Thuban.UI.about. |
765 |
|
|
766 |
|
* extensions/thuban/gdalwarp.cpp (get_gdal_version): New. |
767 |
|
Returns the version of gdal library being used as a string. |
768 |
|
|
769 |
|
* extensions/thuban/wxproj.cpp (check_version, check_version_gtk): |
770 |
|
Removed. |
771 |
|
(get_proj_version): Return the version of PROJ that the file |
772 |
|
was compiled with. |
773 |
|
(get_gtk_version): Return th version of GTK that the file |
774 |
|
was compiled with. |
775 |
|
|
776 |
|
2003-06-25 Jonathan Coles <[email protected]> |
777 |
|
|
778 |
|
* Thuban/UI/classifier.py (Classifier.EditSymbol): The parent |
779 |
|
of the SelectPropertiesDialog should be self so the window |
780 |
|
appears on top. |
781 |
|
(ClassGroupPropertiesCtrl.DoEdit): The parent |
782 |
|
of the SelectPropertiesDialog should be self so the window |
783 |
|
appears on top. |
784 |
|
|
785 |
|
* Thuban/UI/resource.py: Cleaned up how we determine file |
786 |
|
extensions. |
787 |
|
(GetImageResource): Return an wxImage from our Resources. |
788 |
|
|
789 |
|
2003-06-24 Jonathan Coles <[email protected]> |
790 |
|
|
791 |
|
* Thuban/UI/renderer.py (ExportRenderer.render_legend): |
792 |
|
Check that a layer has a classification before trying |
793 |
|
to get it. Raster layers don't have classifications. |
794 |
|
|
795 |
|
2003-06-23 Jonathan Coles <[email protected]> |
796 |
|
|
797 |
|
* setup.py: Add Resources/XML to resource list. |
798 |
|
|
799 |
|
2003-06-23 Jonathan Coles <[email protected]> |
800 |
|
|
801 |
|
* setup.cfg: Fix copyright dates |
802 |
|
|
803 |
|
2003-06-23 Jonathan Coles <[email protected]> |
804 |
|
|
805 |
|
* MANIFEST.in: Update with Resources/XML |
806 |
|
|
807 |
|
* setup.py: Don't include Locale resources yet as we don't |
808 |
|
have any and it causes problems building the distribution |
809 |
|
for Windows. Update version to 0.8.0. |
810 |
|
|
811 |
|
* Doc/thuban.dtd: Removed since it is now in Resources/XML. |
812 |
|
|
813 |
|
* Thuban/UI/mainwindow.py: Add blank line at the end because |
814 |
|
file was not being read correctly building the Windows |
815 |
|
distribution. |
816 |
|
|
817 |
|
2003-06-23 Jonathan Coles <[email protected]> |
818 |
|
|
819 |
|
* Thuban/UI/mainwindow.py (MainWindow.About): Fix text. |
820 |
|
|
821 |
|
* Thuban/version.py: Temporarily update longversion for |
822 |
|
the 0.8 release so that it doesn't have the cvs revision. |
823 |
|
|
824 |
|
2003-06-23 Jonathan Coles <[email protected]> |
825 |
|
|
826 |
|
* Thuban/UI/common.py (ThubanBeginBusyCursor): Call wxSafeYield |
827 |
|
to make sure that we don't create reentrant possibilities with |
828 |
|
wxYield. |
829 |
|
|
830 |
|
* Thuban/UI/view.py (MapCanvas.OnPaint): Call wxBeginBusyCursor() |
831 |
|
directly to avoid the wxSafeYield() call which generates an |
832 |
|
OnPaint event causing infinite recursion. Don't try to catch |
833 |
|
exception anymore. This was for before there were limits on map |
834 |
|
scaling. |
835 |
|
|
836 |
|
2003-06-23 Bernhard Herzog <[email protected]> |
837 |
|
|
838 |
|
Bug fix for RT #1961: |
839 |
|
|
840 |
|
* Thuban/Model/load.py (SessionLoader.start_derivedshapesource): |
841 |
|
Register DerivedShapestores with the session |
842 |
|
|
843 |
|
* Thuban/Model/session.py (Session.Tables): Make sure each table |
844 |
|
is only listed once. |
845 |
|
|
846 |
|
* test/test_load.py (TestJoinedTable.test): Add check_format call. |
847 |
|
Update file contents to match the one written out. |
848 |
|
|
849 |
|
2003-06-20 Bernhard Herzog <[email protected]> |
850 |
|
|
851 |
|
* test/xmlsupport.py (SaxEventLister.startElementNS) |
852 |
|
(SaxEventLister.endElementNS): Do not include the qname. Python |
853 |
|
2.2.1 and 2.2.2 and 2.2.3 differ in this regard. In 2.2.1 qname it |
854 |
|
is (presumably incorrectly) None, whereas it's a string with the |
855 |
|
element name in the later versions. |
856 |
|
|
857 |
|
* test/test_xmlsupport.py (TestEventList.test_even_list_simple) |
858 |
|
(TestEventList.test_even_list_namespace): Update tests to reflect |
859 |
|
the new behaviour |
860 |
|
(TestEventList.test_even_list_id_normalization): Fix doc-string |
861 |
|
|
862 |
|
2003-06-20 Jonathan Coles <[email protected]> |
863 |
|
|
864 |
|
* Thuban/Model/layer.py (BaseLayer.HasShapes): New. Overridden |
865 |
|
by deriving classes to determine if that layer supports shapes. |
866 |
|
(Layer): Override HasShapes and return true. |
867 |
|
|
868 |
|
* Thuban/UI/classgen.py: Use Thuban[Begin|End]BusyCursor() |
869 |
|
instead of a direct call to wx[Begin|End]CusyCursor(). |
870 |
|
(GenUniquePanel._OnRetrieve): Set busy cursor while retrieving |
871 |
|
table data. |
872 |
|
|
873 |
|
* Thuban/UI/common.py (ThubanBeginBusyCursor, ThubanEndBusyCursor): |
874 |
|
New. Wrappers around the wxWindows functions that allow us to |
875 |
|
make additional calls such as wxYield which gives the native |
876 |
|
system a chance to update the cursor correctly. |
877 |
|
|
878 |
|
* Thuban/UI/tableview.py: Use Thuban[Begin|End]BusyCursor() |
879 |
|
instead of a direct call to wx[Begin|End]CusyCursor(). |
880 |
|
|
881 |
|
* Thuban/UI/view.py: Use Thuban[Begin|End]BusyCursor() |
882 |
|
instead of a direct call to wx[Begin|End]CusyCursor(). |
883 |
|
(MapCanvas.find_shape_at): Check if the current search layer |
884 |
|
support shapes, otherwise go on to the next layer. |
885 |
|
|
886 |
|
* test/test_layer.py: Add tests in each type of layer for |
887 |
|
HasClassification() and HasShapes() |
888 |
|
|
889 |
|
2003-06-20 Jonathan Coles <[email protected]> |
890 |
|
|
891 |
|
* Thuban/UI/view.py (MapCanvas.OnPaint): Call wxYield after |
892 |
|
turning on the busy cursor to allow the system to change the |
893 |
|
cursor before we begin painting. This fixes a problem that |
894 |
|
was occuring only under GTK. Fixes RTbug #1840. |
895 |
|
|
896 |
|
2003-06-20 Bernhard Herzog <[email protected]> |
897 |
|
|
898 |
|
* Resources/XML/thuban-0.8.dtd: New DTD for the new file format |
899 |
|
version. |
900 |
|
|
901 |
|
* Thuban/Model/save.py (sort_data_stores): New. Make topological |
902 |
|
sort of the data sources so they can be written with sources that |
903 |
|
data sources that depend on other data sources come after the |
904 |
|
sources they depend on. |
905 |
|
(SessionSaver.__init__): Add idmap instance variable to map from |
906 |
|
objects to the ids used in the file. |
907 |
|
(SessionSaver.get_id, SessionSaver.define_id) |
908 |
|
(SessionSaver.has_id): New. Methods to manage the idmap |
909 |
|
(SessionSaver.write): Use thuban-0.8.dtd |
910 |
|
(SessionSaver.write_session): Add a namespace on the session and |
911 |
|
write out the data sources before the maps. |
912 |
|
(SessionSaver.write_data_containers): New. Write the data |
913 |
|
containers. |
914 |
|
(SessionSaver.write_layer): Layer elements now refer to a |
915 |
|
shapestore and don't contain filenames anymore. |
916 |
|
|
917 |
|
* Thuban/Model/load.py (LoadError): Exception class to raise when |
918 |
|
errors in the files are discovered |
919 |
|
(SessionLoader.__init__): Define dispatchers for elements with a |
920 |
|
thuban-0.8 namespace too. |
921 |
|
(SessionLoader.check_attrs): New helper method to check and |
922 |
|
convert attributes |
923 |
|
(AttrDesc): New. Helper class for SessionLoader.check_attrs |
924 |
|
(SessionLoader.start_fileshapesource) |
925 |
|
(SessionLoader.start_derivedshapesource) |
926 |
|
(SessionLoader.start_filetable, SessionLoader.start_jointable): |
927 |
|
Handlers for the new elements in the new fileformat |
928 |
|
(SessionLoader.start_layer): Handle the shapestore attribute in |
929 |
|
addition to filename. |
930 |
|
(SessionLoader.start_table, SessionLoader.end_table): Removed. |
931 |
|
They were never used in the old formats and aren't needed for the |
932 |
|
new. |
933 |
|
|
934 |
|
* Thuban/Model/session.py (Session.DataContainers): New method to |
935 |
|
return all "data containers", i.e. shapestores and tables |
936 |
|
|
937 |
|
* test/xmlsupport.py (SaxEventLister.__init__) |
938 |
|
(SaxEventLister.startElementNS, sax_eventlist): Add support to |
939 |
|
normalize IDs. |
940 |
|
|
941 |
|
* test/test_xmlsupport.py |
942 |
|
(TestEventList.test_even_list_id_normalization): New test case for |
943 |
|
id normalization |
944 |
|
|
945 |
|
* test/test_load.py (LoadSessionTest.check_format): Use ID |
946 |
|
normalization |
947 |
|
(LoadSessionTest.thubanids, LoadSessionTest.thubanidrefs): New |
948 |
|
class atrributes used for ID normalization |
949 |
|
(TestSingleLayer, TestLayerVisibility, TestLabels.test) |
950 |
|
(TestLayerProjection.test, TestRasterLayer.test): Adapt to new |
951 |
|
file format |
952 |
|
(TestJoinedTable): New test for loading sessions with joined |
953 |
|
tables. |
954 |
|
(TestLoadError): New. Test whether missing required attributes |
955 |
|
cause a LoadError. |
956 |
|
|
957 |
|
* test/test_save.py (SaveSessionTest.thubanids) |
958 |
|
(SaveSessionTest.thubanidrefs): New class attributes for ID |
959 |
|
normalization in .thuban files. |
960 |
|
(SaveSessionTest.compare_xml): Use id-normalization. |
961 |
|
(SaveSessionTest.testEmptySession) |
962 |
|
(SaveSessionTest.testLayerProjection) |
963 |
|
(SaveSessionTest.testRasterLayer) |
964 |
|
(SaveSessionTest.testClassifiedLayer): Adapt to new file format. |
965 |
|
(SaveSessionTest.testLayerProjection): The filename used was the |
966 |
|
same as for testSingleLayer. Use a different one. |
967 |
|
(SaveSessionTest.test_dbf_table) |
968 |
|
(SaveSessionTest.test_joined_table): New test cases for saving the |
969 |
|
new data sources structures. |
970 |
|
(TestStoreSort, MockDataStore): Classes to test the sorting of the |
971 |
|
data stores for writing. |
972 |
|
|
973 |
|
* test/runtests.py: Add CVS keywords |
974 |
|
|
975 |
|
2003-06-20 Jonathan Coles <[email protected]> |
976 |
|
|
977 |
|
* test/test_session.py |
978 |
|
(UnreferencedTablesTests.test_unreferenced_tables_with_joins): |
979 |
|
Use the cultural_landmark-point.dbf file for the store so that |
980 |
|
the table rows and shape count match. |
981 |
|
|
982 |
|
2003-06-20 Jonathan Coles <[email protected]> |
983 |
|
|
984 |
|
* Thuban/Model/data.py (DerivedShapeStore.__init__): Raise |
985 |
|
an exception if the number of shapes is different from the |
986 |
|
number of rows in the table. Address RTbug #1933. |
987 |
|
|
988 |
|
* test/test_layer.py (TestLayer.test_derived_store): Add |
989 |
|
a test for the new exception in DerivedShapeStore.__init__. |
990 |
|
|
991 |
|
* test/support.py (FloatTestCase): Removed since there is |
992 |
|
already FloatComparisonMixin. Fixes RTbug #1954. |
993 |
|
(FloatComparisonMixin.assertFloatEqual): Include test for |
994 |
|
infinity that was part of FloatTestCase. |
995 |
|
|
996 |
|
* test/test_range.py (RangeTest): Inherit from |
997 |
|
support.FloatComparisonMixin now that we don't have |
998 |
|
support.FloatTestCase. |
999 |
|
|
1000 |
|
2003-06-20 Bernhard Herzog <[email protected]> |
1001 |
|
|
1002 |
|
* test/test_save.py (SaxEventLister, sax_eventlist): Removed. Use |
1003 |
|
the implementation in xmlsupport instead. |
1004 |
|
(SaveSessionTest.compare_xml): sax_eventlist is now in xmlsupport |
1005 |
|
|
1006 |
|
* test/test_proj.py: Import sax_eventlist from xmlsupport instead |
1007 |
|
of test_save |
1008 |
|
|
1009 |
|
2003-06-20 Bernhard Herzog <[email protected]> |
1010 |
|
|
1011 |
|
* test/test_load.py (LoadSessionTest.check_format): New helper |
1012 |
|
method to make sure the test files we load might have been written |
1013 |
|
by the current thuban version. |
1014 |
|
(ClassificationTest.TestLayers, TestSingleLayer.test) |
1015 |
|
(TestLayerVisibility.test, TestClassification.test) |
1016 |
|
(TestLabels.test, TestLayerProjection.test, TestRasterLayer.test): |
1017 |
|
Add check_format() calls and fix the thuban data to match the data |
1018 |
|
that would be written by saving the session loaded from it. |
1019 |
|
|
1020 |
|
* test/xmlsupport.py (SaxEventLister, sax_eventlist): Copies of |
1021 |
|
the same class and function in test_save. |
1022 |
|
|
1023 |
|
* test/test_xmlsupport.py (TestEventList): New. test cases for |
1024 |
|
sax_eventlist |
1025 |
|
|
1026 |
|
2003-06-20 Bernhard Herzog <[email protected]> |
1027 |
|
|
1028 |
|
* Resources/XML/thuban.dtd: Add comment about which versions of |
1029 |
|
Thuban are covered by this DTD |
1030 |
|
(map): Fix content model for layers and raster layers. There can |
1031 |
|
be any number or layers and raster layers in any order. |
1032 |
|
|
1033 |
|
2003-06-20 Jonathan Coles <[email protected]> |
1034 |
|
|
1035 |
|
This is mainly about fixing RTbug #1949. |
1036 |
|
|
1037 |
|
* Thuban/Model/classification.py: Remove "from __future__" |
1038 |
|
import statement since python 2.2 is the earliest supported |
1039 |
|
version. |
1040 |
|
|
1041 |
|
* Thuban/Model/proj.py (Projection.GetProjectedUnits): New. |
1042 |
|
Currently returns PROJ_UNITS_METERS or PROJ_UNITS_DEGREES |
1043 |
|
depending on the units this projection *forwards* into. |
1044 |
|
|
1045 |
|
* Thuban/Model/save.py (SessionSaver.write_classification): |
1046 |
|
Remove unnecessary use of lambdas and nested functions. |
1047 |
|
|
1048 |
|
* Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Do scale |
1049 |
|
adjustment here if the map projection uses degrees. |
1050 |
|
|
1051 |
|
* Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Remove |
1052 |
|
scale adjust code since it is now done before calling |
1053 |
|
this method. Don't do anything if the map projection |
1054 |
|
is None. |
1055 |
|
|
1056 |
|
2003-06-19 Bernhard Herzog <[email protected]> |
1057 |
|
|
1058 |
|
Move version specific load tests to their own file. |
1059 |
|
|
1060 |
|
* test/test_load.py: Expand the doc-string to explain a bit how to |
1061 |
|
handle file format changes. |
1062 |
|
(TestClassification.test): Update the docstring as this test is |
1063 |
|
not about Thuban 0.2 anymore. |
1064 |
|
|
1065 |
|
* test/test_load_0_2.py: New file with the load tests for thuban |
1066 |
|
files created with Thuban 0.2 and earlier. |
1067 |
|
|
1068 |
|
2003-06-19 Bernhard Herzog <[email protected]> |
1069 |
|
|
1070 |
|
Add XML validation to some of the tests. Validation will only be |
1071 |
|
done if pyRXP is installed (http://reportlab.com/xml/pyrxp.html). |
1072 |
|
To make the DTD available to the test cases it's moved into |
1073 |
|
Resources/XML |
1074 |
|
|
1075 |
|
* Resources/XML/thuban.dtd: New. This is now the real Thuban DTD |
1076 |
|
for versions up to and including 0.2. Two slight changes: added an |
1077 |
|
encoding specification and fixed the comment which refered to |
1078 |
|
GRASS, not Thuban |
1079 |
|
|
1080 |
|
* test/xmlsupport.py: New support module for tests involving XML. |
1081 |
|
Currently there's a mix-in class for XML validation. |
1082 |
|
|
1083 |
|
* test/test_xmlsupport.py: New. Tests for the xmlsupport module |
1084 |
|
|
1085 |
|
* test/test_save.py (SaveSessionTest): Derive from ValidationTest |
1086 |
|
so that we can validate the |
1087 |
|
(SaveSessionTest.testEmptySession) |
1088 |
|
(SaveSessionTest.testSingleLayer) |
1089 |
|
(SaveSessionTest.testSingleLayer) |
1090 |
|
(SaveSessionTest.testLayerProjection) |
1091 |
|
(SaveSessionTest.testRasterLayer) |
1092 |
|
(SaveSessionTest.testClassifiedLayer): Validate the generated XML |
1093 |
|
|
1094 |
|
* test/runtests.py (main): Call print_additional_summary instead |
1095 |
|
of print_garbage_information |
1096 |
|
|
1097 |
|
* test/support.py (resource_dir): New function to return the |
1098 |
|
"Resource" subdirectory |
1099 |
|
(print_additional_summary): New function to combine several |
1100 |
|
summary functions |
1101 |
|
(run_tests): Use print_additional_summary instead of calling |
1102 |
|
print_garbage_information directly |
1103 |
|
|
1104 |
|
2003-06-19 Bernhard Herzog <[email protected]> |
1105 |
|
|
1106 |
|
* Doc/thuban.dtd (classification): Correct the content model of |
1107 |
|
the classification element. |
1108 |
|
(projection): Add the "name" attribute |
1109 |
|
|
1110 |
|
2003-06-19 Frank Koormann <[email protected]> |
1111 |
|
|
1112 |
|
MERGE from the greater-ms3 branch. |
1113 |
|
|
1114 |
|
* Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Apply conversion to |
1115 |
|
scale if projection is latlong to get better estimate. |
1116 |
|
|
1117 |
|
Fix problem of hidden properties dialog under windows after double |
1118 |
|
click on layer tree: |
1119 |
|
The tree control always gets an Expanded / Collapsed event after |
1120 |
|
the ItemActivated on double click, which raises the main window again. We add a second ItemActivated event to the queue, which simply |
1121 |
|
raises the already displayed window. |
1122 |
|
|
1123 |
|
* Thuban/UI/legend.py (LegendTree.__init__): Instance variable |
1124 |
|
raiseProperties initialized to prevent endless loops |
1125 |
|
(LegendTree._OnItemActivated): Depending on self.raiseProperties |
1126 |
|
simply raise the properties or open the dialog and issue a second |
1127 |
|
event. |
1128 |
|
|
1129 |
|
2003-06-18 Jonathan Coles <[email protected]> |
1130 |
|
|
1131 |
|
* setup.py: Fix a few problems that occured under Windows. |
1132 |
|
|
1133 |
|
2003-06-18 Jonathan Coles <[email protected]> |
1134 |
|
|
1135 |
|
When Thuban loaded the map was redrawn twice because the |
1136 |
|
legend was being opened after the mainwindow was created |
1137 |
|
and not during its creation. This meant the map was drawn |
1138 |
|
initially and then had to be redrawn when the legend |
1139 |
|
caused the display to change. Now the legend is opened |
1140 |
|
in the mainwindow constructor which resolves this issue. |
1141 |
|
|
1142 |
|
Also, although we were checking for the existence of |
1143 |
|
gdal and gdalwarp modules, the gdalwarp extension was |
1144 |
|
still being compiled (which may fail if the system doesn't |
1145 |
|
have gdal installed). the build_ext command to setup.py |
1146 |
|
now accepts the flags --with-gdal and --without-gdal. |
1147 |
|
If --without-gdal is specified setup.py will try to |
1148 |
|
use the gdal parameters specified by gdal-config. Under |
1149 |
|
windows, those parameters have to be set in setup.py |
1150 |
|
as with proj4 an wxWindows. |
1151 |
|
|
1152 |
|
* setup.py: Use a list instead of seperate variables for |
1153 |
|
extension parameters so we can create a generic function |
1154 |
|
that runs an appropriate *-config script. |
1155 |
|
(run_cs_script): Renamed from run_wx_script and modified |
1156 |
|
to accept a second argument which is a list of lists to |
1157 |
|
be filled in by the values returned from running the command. |
1158 |
|
(thuban_build_ext): New. Extends the build_ext command and |
1159 |
|
provides the options --with-gdal/--without-gdal which then |
1160 |
|
optionally includes the gdalwarp extension. |
1161 |
|
|
1162 |
|
* Thuban/Model/resource.py: First check if we can import |
1163 |
|
the gdalwarp Thuban extension before checking for gdal. |
1164 |
|
Also added some comments. |
1165 |
|
|
1166 |
|
* Thuban/UI/legend.py (ScaleBarBitmap.__SetScale): Check if |
1167 |
|
the map is None which may be the case if none has been loaded |
1168 |
|
yet. |
1169 |
|
|
1170 |
|
* Thuban/UI/main.py (main): Remove call to ShowLegend. |
1171 |
|
|
1172 |
|
* Thuban/UI/mainwindow.py (MainWindow.__init__): Call ShowLegend(). |
1173 |
|
|
1174 |
|
* Thuban/UI/renderer.py: Check for gdal support before importing |
1175 |
|
gdalwarp. |
1176 |
|
(MapRenderer.render_map): Only try to optimize if we have gdal |
1177 |
|
support otherwise nothing will get drawn. |
1178 |
|
|
1179 |
|
* Thuban/UI/view.py (MapCanvas.FitMapToWindow): This may be called |
1180 |
|
during startup before a map has been created. Check if map is None |
1181 |
|
before using it and do nothing if it is. |
1182 |
|
|
1183 |
|
2003-06-17 Jonathan Coles <[email protected]> |
1184 |
|
|
1185 |
|
Fix the problem with raster layers under Windows that caused |
1186 |
|
Thuban to crash. The view should respond to layer projection |
1187 |
|
changed events to update the display. Changes to a projection |
1188 |
|
should not cause the map to be set to full extent. |
1189 |
|
|
1190 |
|
* Thuban/UI/view.py (MapCanvas.__init__): New instance variable |
1191 |
|
current_map_proj to remember the current map projection so that |
1192 |
|
when the projection changes we know what the previous projection |
1193 |
|
was. |
1194 |
|
(MapCanvas.SetMap): Unsubscribe and subscribe to |
1195 |
|
LAYER_PROJECTION_CHANGED events. |
1196 |
|
(MapCanvas.projection_changed): Split into two methods that respond |
1197 |
|
to map and layer projection changes. |
1198 |
|
(MapCanvas.map_projection_changed): New. Takes the current view and |
1199 |
|
projects it using the new projection. This does not cause the |
1200 |
|
map to be redrawn at full extent. |
1201 |
|
(MapCanvas.layer_projection_changed): New. Cause a redraw which |
1202 |
|
will draw each layer in its new projection. |
1203 |
|
|
1204 |
|
* extensions/thuban/bmpdataset.cpp (BMPDataset::Open): Call |
1205 |
|
VSIFClose() not VSIFCloseL() to close the file. Fixes a crash |
1206 |
|
under Windows. |
1207 |
|
|
1208 |
|
* extensions/thuban/gdalwarp.cpp (MFILENAME): Padding should be |
1209 |
|
to twice sizeof(void*) because there are two digits for each |
1210 |
|
hex byte. |
1211 |
|
|
1212 |
|
2003-06-16 Bernhard Herzog <[email protected]> |
1213 |
|
|
1214 |
|
Update to the layer interface: Direct access to the table, |
1215 |
|
shapetable, shapefile and filename attributes is now actively |
1216 |
|
deprecated by issuing deprecation warnings for all places where |
1217 |
|
this happens. |
1218 |
|
|
1219 |
|
* Thuban/Model/layer.py (Layer.__getattr__): New. Implement access |
1220 |
|
to the instance variables table, shapetable, shapefile and |
1221 |
|
filename via __getattr__ so that we can issue a deprecation |
1222 |
|
warning. |
1223 |
|
(Layer.SetShapeStore): Don't set the deprecated instance variables |
1224 |
|
any more |
1225 |
|
(Layer.SetShapeStore): Don't use deprecated layer instance |
1226 |
|
variables |
1227 |
|
(Layer.Destroy): No need to explicitly remove the instance |
1228 |
|
variables any more |
1229 |
|
(Layer.GetFieldType, Layer.Shape): Don't use deprecated layer |
1230 |
|
instance variables |
1231 |
|
|
1232 |
|
* Thuban/UI/classgen.py (ClassGenDialog.__init__) |
1233 |
|
(GenUniformPanel._OnRetrieve, GenUniquePanel._OnRetrieve) |
1234 |
|
(GenQuantilesPanel.GetList, GenQuantilesPanel.OnRetrieve): Don't |
1235 |
|
use deprecated layer instance variables |
1236 |
|
|
1237 |
|
* Thuban/UI/classifier.py (Classifier.__init__): Don't use |
1238 |
|
deprecated layer instance variables |
1239 |
|
|
1240 |
|
* Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape) |
1241 |
|
(IdentifyGridCtrl.selected_shape): Don't set the deprecated layer |
1242 |
|
instance variables |
1243 |
|
|
1244 |
|
* Thuban/UI/tableview.py (LayerTableGrid.select_shapes): Don't use |
1245 |
|
deprecated layer instance variables |
1246 |
|
|
1247 |
|
* Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Don't use |
1248 |
|
deprecated layer instance variables |
1249 |
|
|
1250 |
|
* Thuban/Model/save.py (SessionSaver.write_layer): Don't use |
1251 |
|
deprecated layer instance variables |
1252 |
|
|
1253 |
|
* Thuban/UI/renderer.py (MapRenderer.draw_shape_layer) |
1254 |
|
(MapRenderer.polygon_render_param): Don't use deprecated layer instance |
1255 |
|
variables |
1256 |
|
|
1257 |
|
* test/runtests.py (main): Turn Thuban's deprecation warnings into |
1258 |
|
errors so that they're cought by the tests |
1259 |
|
|
1260 |
|
* test/test_load.py (TestSingleLayer.test): Don't use deprecated |
1261 |
|
layer instance variables |
1262 |
|
|
1263 |
|
2003-06-16 Jonathan Coles <[email protected]> |
1264 |
|
|
1265 |
|
Fix a problem under Windows whereby if the user double-clicks on a |
1266 |
|
layer in the legend that tree item will expand or collapse as well |
1267 |
|
as open the layer properties dialog. The state of the tree item |
1268 |
|
should not be affected. |
1269 |
|
|
1270 |
|
* Thuban/UI/legend.py (LegendTree.__init__): Add instance variable |
1271 |
|
preventExpandCollapse and subscribe to expanding and collapsing |
1272 |
|
events. |
1273 |
|
(LegendTree.OnItemExpandCollapse): New. Responds to expanding and |
1274 |
|
collapsing events and will veto the event if it has been triggered |
1275 |
|
by the user double clicking on a layer. |
1276 |
|
(LegendTree._OnItemActivated): Set preventExpandCollapse to indicate |
1277 |
|
that an expanding/collapsing event should be vetoed. |
1278 |
|
|
1279 |
|
2003-06-13 Bernhard Herzog <[email protected]> |
1280 |
|
|
1281 |
|
* Thuban/UI/classifier.py (Classifier.OnClose) |
1282 |
|
(Classifier.map_layers_removed) |
1283 |
|
(Classifier.layer_shapestore_replaced): Unsubscribe the messages |
1284 |
|
in OnClose and not in map_layers_removed or |
1285 |
|
layer_shapestore_replaced to make sure it always happens when the |
1286 |
|
dialog is closed |
1287 |
|
|
1288 |
2003-06-13 Jonathan Coles <[email protected]> |
2003-06-13 Jonathan Coles <[email protected]> |
1289 |
|
|
1290 |
This puts back a fix for Windows where a panel is needed so that |
This puts back a fix for Windows where a panel is needed so that |