1 |
|
2003-07-15 Bernhard Herzog <[email protected]> |
2 |
|
|
3 |
|
* Thuban/Model/save.py (SessionSaver.write_classification): Encode |
4 |
|
string values (in addition to the labels) as UTF 8 |
5 |
|
|
6 |
|
* Thuban/Model/load.py (SessionLoader.start_clpoint): Decode the |
7 |
|
values if the field type is string |
8 |
|
|
9 |
|
* test/test_save.py (SaveSessionTest.testClassifiedLayer): Test |
10 |
|
saving a session with non-ascii string classification values. |
11 |
|
|
12 |
|
* test/test_load.py (TestClassification.file_contents) |
13 |
|
(TestClassification.test): Check for non-ascii values in string |
14 |
|
classifications |
15 |
|
|
16 |
|
2003-07-14 Jonathan Coles <[email protected]> |
17 |
|
|
18 |
|
* test/test_view.py: New. Tests for ViewPort. |
19 |
|
|
20 |
|
2003-07-14 Frank Koormann <[email protected]> |
21 |
|
|
22 |
|
* Thuban/Model/load.py (SessionLoader.start_map): Encode map |
23 |
|
title to latin1. Fixes https://intevation.de/rt/webrt?serial_num=2013 |
24 |
|
|
25 |
|
* test/test_load_0_8.py (TestUnicodeStrings): New, test load of |
26 |
|
unicode strings from session file: session title, map title and |
27 |
|
projection name. |
28 |
|
|
29 |
|
2003-07-10 Jonathan Coles <[email protected]> |
30 |
|
|
31 |
|
* Thuban/UI/viewport.py (Tool.MouseUp): Should have called |
32 |
|
drag_stop, not drag_move when the mouse is released. |
33 |
|
|
34 |
|
2003-07-10 Jonathan Coles <[email protected]> |
35 |
|
|
36 |
|
The most important part of this is the seperation of view.py into |
37 |
|
two pieces. viewport.py now has a class called ViewPort which |
38 |
|
contains all the non-wx parts of view.py and can therefore be |
39 |
|
tested. view.py contains only the wx-specific parts and is fairly |
40 |
|
simple. |
41 |
|
|
42 |
|
* Thuban/UI/view.py: Stripped out all non-wx functionality. Fixes |
43 |
|
RTTbug #1992. |
44 |
|
* Thuban/UI/viewport.py: New. Contains non-wx view functionality. |
45 |
|
RTTbug #1992. |
46 |
|
|
47 |
|
* Thuban/Model/classgen.py (generate_singletons, |
48 |
|
generate_uniform_distribution, generate_quantiles): |
49 |
|
Added 'fixes' parameter so that property attributes can |
50 |
|
be held constant over the generated classification groups. |
51 |
|
(CustomRamp.GetProperties): Remove unused variables. |
52 |
|
|
53 |
|
* Thuban/Model/map.py (Map.SetProjection): Send the old |
54 |
|
projection as an argument to listeners of the MAP_PROJECTION_CHANGED |
55 |
|
event. |
56 |
|
|
57 |
|
* Thuban/Model/table.py (table_to_dbf, table_to_csv): Added 'records' |
58 |
|
parameter which is a list of records that restricts which |
59 |
|
records are saved. Fixes RTbug #1997. |
60 |
|
|
61 |
|
* Thuban/UI/application.py (ThubanApplication.ShowExceptionDialog): |
62 |
|
Port exception dialog from GREAT-ER. Fixes RTbug #1993. |
63 |
|
|
64 |
|
* Thuban/UI/classgen.py (ClassGenDialog.__init__): Add controls |
65 |
|
to allow the user to fix line color/width on generated groups. |
66 |
|
(ClassGenDialog.OnOK): Use new 'fixes' parameter of the generate_* |
67 |
|
functions to optionally fix group properties. |
68 |
|
|
69 |
|
* Thuban/UI/main.py (main): Set exception hook to the |
70 |
|
ShowExceptionDialog. Fixes RTbug #1993. |
71 |
|
|
72 |
|
* Thuban/UI/mainwindow.py (MainWindow.ShowTableView): Raise |
73 |
|
the table window when it is selectd to be shown. |
74 |
|
|
75 |
|
* Thuban/UI/tableview.py (QueryTableFrame.__init__): Add an |
76 |
|
Export Selection button and move the export buttons underneath |
77 |
|
the table. |
78 |
|
(QueryTableFrame.UpdateStatusText): Added event argument so |
79 |
|
that it can respond to grid selection events. The status text |
80 |
|
is now updated even when the table is not associated with a |
81 |
|
layer as was previously assumed. |
82 |
|
(QueryTableFrame.OnGridSelectRange, OnGridSelectCell): Removed. |
83 |
|
UpdateStatusText responds to these events. |
84 |
|
(QueryTableFrame.OnSaveAs): Renamed to doExport. |
85 |
|
(QueryTableFrame.doExport): Helper function that saves the |
86 |
|
entire table, or selected rows, to a file. |
87 |
|
(QueryTableFrame.OnExport, QueryTableFrame.OnExportSel): New. |
88 |
|
Respond to export button events and call doExport. |
89 |
|
|
90 |
|
* extensions/thuban/gdalwarp.cpp (ProjectRasterFile): Make sure |
91 |
|
the function doesn't return NULL without first setting a Python |
92 |
|
Error. |
93 |
|
|
94 |
|
* test/runtests.py (main): Only print "Unknown option" for |
95 |
|
unsupported options. |
96 |
|
|
97 |
|
* test/support.py (FloatComparisonMixin.assertFloatEqual): Take |
98 |
|
optional epsilon argument to specify floating point accuracy. |
99 |
|
(FloatComparisonMixin.assertFloatSeqEqual): Call assertFloatEqual |
100 |
|
for each item test. |
101 |
|
|
102 |
|
* test/test_csv_table.py (TestCSVTable.test_table_to_cvs): Add |
103 |
|
tests for saving selected records. |
104 |
|
|
105 |
|
* test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): Add |
106 |
|
tests for saving selected records. |
107 |
|
|
108 |
|
* test/test_map.py (TestMapWithContents.test_set_projection): |
109 |
|
MAP_PROJECTION_CHANGED events send the old projection. |
110 |
|
|
111 |
|
* test/test_session.py |
112 |
|
(TestSessionWithContent.test_forward_map_projection): |
113 |
|
MAP_PROJECTION_CHANGED events send the old projection. |
114 |
|
|
115 |
|
* test/test_table.py (TableTest): Update tests to use non-deprecated |
116 |
|
functions. |
117 |
|
|
118 |
|
2003-07-08 Bernhard Herzog <[email protected]> |
119 |
|
|
120 |
|
* Thuban/Model/transientdb.py (TransientTableBase.Width): The type |
121 |
|
constants in the column objects are the standard ones defined in |
122 |
|
the table module. |
123 |
|
|
124 |
|
* test/test_transientdb.py |
125 |
|
(TestTransientTable.test_transienttable_to_dbf): New. Test whether |
126 |
|
exporting transient tables as DBF works. This should catch the bug |
127 |
|
just fixed in TransientTableBase.Width. |
128 |
|
|
129 |
|
2003-07-08 Bernhard Herzog <[email protected]> |
130 |
|
|
131 |
|
* Thuban/Model/classgen.py (CustomRamp.GetProperties): Compute the |
132 |
|
interpolated colors correctly. |
133 |
|
|
134 |
|
* test/test_classgen.py (TestCustomRamp.test_color_interpolation): |
135 |
|
New. Test case for the fix in classgen.py |
136 |
|
|
137 |
|
2003-07-08 Bernhard Herzog <[email protected]> |
138 |
|
|
139 |
|
* test/runtests.py (main): Make the default output less verbose |
140 |
|
and add a verbosity option (-v) to get the old output |
141 |
|
|
142 |
|
2003-07-08 Bernhard Herzog <[email protected]> |
143 |
|
|
144 |
|
* Resources/XML/thuban-0.9.dtd: New. This will become the DTD for |
145 |
|
0.9. |
146 |
|
|
147 |
|
* Thuban/Model/transientdb.py (TransientJoinedTable.JoinType): |
148 |
|
New. Return the join type |
149 |
|
|
150 |
|
* Thuban/Model/save.py (SessionSaver.write_session): Use new 0.9 |
151 |
|
DTD |
152 |
|
(SessionSaver.write_data_containers): Save the join type for |
153 |
|
joined tables |
154 |
|
|
155 |
|
* Thuban/Model/load.py (SessionLoader.__init__): Add the new 0.9 |
156 |
|
namespace |
157 |
|
(SessionLoader.start_jointable): Handle the jointype attribute |
158 |
|
|
159 |
|
* test/test_load_0_8.py: New. Effectively a copy of test_load.py |
160 |
|
as of Thuban 0.8. These are now tests to determine whether Thuban |
161 |
|
can still read files generated by Thuban 0.8 |
162 |
|
|
163 |
|
* test/test_load.py (LoadSessionTest.dtd) |
164 |
|
(TestSingleLayer.file_contents) |
165 |
|
(TestLayerVisibility.file_contents, TestLabels.file_contents) |
166 |
|
(TestLayerProjection.file_contents) |
167 |
|
(TestRasterLayer.file_contents, TestJoinedTable.file_contents) |
168 |
|
(TestJoinedTable.file_contents) |
169 |
|
(TestLoadError.file_contents): Update for new DTD |
170 |
|
(TestJoinedTable.file_contents, TestJoinedTable.setUp): Add test |
171 |
|
for new join type attribute |
172 |
|
|
173 |
|
* test/test_save.py (SaveSessionTest.dtd) |
174 |
|
(SaveSessionTest.testEmptySession) |
175 |
|
(SaveSessionTest.testSingleLayer) |
176 |
|
(SaveSessionTest.testLayerProjection) |
177 |
|
(SaveSessionTest.testRasterLayer) |
178 |
|
(SaveSessionTest.testClassifiedLayer) |
179 |
|
(SaveSessionTest.test_dbf_table) |
180 |
|
(SaveSessionTest.test_joined_table): Update for new DTD |
181 |
|
(SaveSessionTest.test_joined_table): Add test for new join type |
182 |
|
attribute |
183 |
|
|
184 |
|
2003-07-04 Bernhard Herzog <[email protected]> |
185 |
|
|
186 |
|
* Thuban/Model/table.py (_find_dbf_column_names): New. Helper |
187 |
|
function for table_to_dbf |
188 |
|
(table_to_dbf): Deal with names longer than the 10 character limit |
189 |
|
|
190 |
|
* test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): Add |
191 |
|
doc-string |
192 |
|
(TestTableToDBF.test_table_to_dbf_long_col_names): New test for |
193 |
|
long column names |
194 |
|
|
195 |
|
2003-07-03 Bernhard Herzog <[email protected]> |
196 |
|
|
197 |
|
* Doc/manual/thuban-manual.xml: Fix the CVS Revision Tag syntax |
198 |
|
|
199 |
|
2003-07-03 Bernhard Herzog <[email protected]> |
200 |
|
|
201 |
|
* Doc/manual/thuban-manual.xml, Doc/manual/README: New. Skeleton |
202 |
|
for the Thuban manual and README with some basic information about |
203 |
|
the manual |
204 |
|
|
205 |
|
2003-07-03 Bernhard Herzog <[email protected]> |
206 |
|
|
207 |
|
* Thuban/Model/transientdb.py (TransientJoinedTable.__init__): |
208 |
|
Update doc-string |
209 |
|
(TransientJoinedTable.create): Do not modify the column objects of |
210 |
|
the input tables in place and copy all columns of the input tables |
211 |
|
into the joined table after all. |
212 |
|
|
213 |
|
* test/test_transientdb.py |
214 |
|
(TestTransientTable.test_transient_joined_table_same_column_name): |
215 |
|
Update to reflect the new behavior |
216 |
|
(TestTransientTable.test_transient_joined_table_with_equal_column_names): |
217 |
|
Update to reflect the new behavior |
218 |
|
(TestTransientTable.test_transient_joined_table_name_collisions_dont_modify_in_place): |
219 |
|
New test case for a bug which modified the column objects in place |
220 |
|
|
221 |
|
2003-07-02 Jonathan Coles <[email protected]> |
222 |
|
|
223 |
|
* Thuban/Model/classgen.py (generate_singletons, |
224 |
|
generate_uniform_distribution, generate_quantiles, |
225 |
|
GenQuantiles0): Make sure maxValue isn't less than |
226 |
|
one, otherwise we could divide by zero. |
227 |
|
|
228 |
|
* test/test_classgen.py (ClassGenTest.doClassRangeTest, |
229 |
|
ClassGenTest.doClassSingleTest): Call doBoundsTest to |
230 |
|
check the end classification groups against the |
231 |
|
proper property values. |
232 |
|
(ClassGenTest.doBoundsTest): New. Checks the first and |
233 |
|
last classification groups to make sure their properties |
234 |
|
are the correct upper and lower bounds for a color ramp. |
235 |
|
|
236 |
|
2003-07-02 Jonathan Coles <[email protected]> |
237 |
|
|
238 |
|
* Thuban/Model/classgen.py (generate_singletons, |
239 |
|
generate_uniform_distribution, generate_quantiles, |
240 |
|
GenQuantiles0): The denominator was one to high when |
241 |
|
calculating the index for the ramp causing the index |
242 |
|
to never to reach one. |
243 |
|
|
244 |
|
2003-07-02 Jonathan Coles <[email protected]> |
245 |
|
|
246 |
|
Changed the singature of ClassGroupRange.__init__ and |
247 |
|
ClassGroupRange.SetRange() so that the min/max values are |
248 |
|
passed as a tuple. This makes a better calling scheme for |
249 |
|
when a Range object is passed instead. |
250 |
|
|
251 |
|
* Thuban/Model/classgen.py: Fixed parameters to |
252 |
|
ClassGroupRange constructor. |
253 |
|
|
254 |
|
* Thuban/Model/classification.py (ClassGroupRange.__init__): |
255 |
|
Consolidate the min/max parameters into a single _range which |
256 |
|
can either be a tuple or a Range object. |
257 |
|
(ClassGroupRange.SetRange): Consolidate the min/max parameters |
258 |
|
into a single _range which can either be a tuple or a Range object. |
259 |
|
|
260 |
|
* Thuban/Model/load.py (SessionLoader.start_clrange): Fix |
261 |
|
call to ClassGroupRange constructor to use a tuple. |
262 |
|
|
263 |
|
* Thuban/Model/layer.py (Layer.SetClassification): Switch |
264 |
|
the classification instance variable to the new class |
265 |
|
before calling _set_layer otherwise subscribers to a |
266 |
|
LAYER_CHANGED event will not see any difference. |
267 |
|
|
268 |
|
* test/test_classification.py: Fix tests of ClassGroupRange |
269 |
|
so that they use the new signature. |
270 |
|
|
271 |
|
* test/test_load.py: Fix use of ClassGroupRange so that it |
272 |
|
uses the new signature. |
273 |
|
|
274 |
|
* test/test_load_0_2.py: Fix use of ClassGroupRange so that it |
275 |
|
uses the new signature. |
276 |
|
|
277 |
|
* test/test_save.py: Fix use of ClassGroupRange so that it |
278 |
|
uses the new signature. |
279 |
|
|
280 |
|
|
281 |
2003-07-01 Jonathan Coles <[email protected]> |
2003-07-01 Jonathan Coles <[email protected]> |
282 |
|
|
283 |
* Thuban/Model/classgen.py: Fixes RTbug #1972, 1971. |
* Thuban/Model/classgen.py: Fixes RTbug #1972, 1971. |