/[thuban]/branches/WIP-pyshapelib-bramz/ChangeLog
ViewVC logotype

Diff of /branches/WIP-pyshapelib-bramz/ChangeLog

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 595 by bh, Wed Apr 2 18:28:09 2003 UTC revision 1051 by frank, Tue May 27 09:32:07 2003 UTC
# Line 1  Line 1 
1    2003-05-27  Frank Koormann  <[email protected]>
2    
3            Fix legend tree display problems under Win32
4    
5            * Thuban/UI/legend.py:  BMP_SIZE_W = 15
6            (LegendTree.__FillTree): Display "legend_icon_map.xpm" with layer title.
7            (LegendTree.__FillTreeLayer): Explicitely set SelectedImage.
8    
9            * Resources/Bitmaps/legend_icon_map.xpm: New icon for legend.
10    
11    2003-05-27  Jan-Oliver Wagner <[email protected]>
12    
13            * Thuban/UI/menu.py (Menu.InsertSeparator): Additional optional parameter
14            'after' now allows to insert separators almost anywhere in the menu.
15    
16    2003-05-27  Frank Koormann  <[email protected]>
17    
18            * Thuban/UI/tableview.py (QueryTableFrame.__init__): Underline the
19            "S" of selection box label to hint on hot key (Alt-S). Works under
20            Win32 but is ignored under GTK.
21    
22    2003-05-26  Frank Koormann  <[email protected]>
23    
24            * Thuban/UI/projdialog.py (ProjFrame.__do_layout, ProjPanel._DoLayout):
25            Center Choices.
26    
27    2003-05-26  Bernhard Herzog  <[email protected]>
28    
29            Remove the Precision methods again. They're too DBF specific to be
30            part of the table interface and they're only used in table_to_dbf
31            anyway.
32            
33            * Thuban/Model/transientdb.py (TransientTableBase.Width):Use a
34            fixed precision of 12 for doubles.
35            (TransientTableBase.Precision): Removed
36            (AutoTransientTable.Width): Delegate to self.table.
37    
38            * Thuban/Model/table.py (DBFTable.Precision)
39            (MemoryTable.Precision): Removed.
40            (MemoryTable.Width): Use a fixed precision of 12 for doubles.
41            (table_to_dbf): Use a fixed precision of 12 for floats unless the
42            column object specifies something else.
43    
44            * test/test_dbf_table.py (TestTableToDBF.test_table_to_dbf): New.
45            test for table_to_dbf
46    
47    2003-05-26  Bernhard Herzog  <[email protected]>
48    
49            * test/test_transientdb.py
50            (TestTransientTable.run_iceland_political_tests): Fix a comment.
51    
52    2003-05-26  Bernhard Herzog  <[email protected]>
53    
54            * Thuban/UI/mainwindow.py (MainWindow.TableOpen): Real
55            implementation. Mark parts of the file format strings for
56            localization.
57    
58            * Thuban/Model/session.py (Session.OpenTableFile): New. Open a dbf
59            file and add the table to the tables managed by the session
60    
61            * test/test_session.py (TestSessionSimple.test_open_table_file):
62            New. test case for OpenTableFile
63    
64    2003-05-26  Jan-Oliver Wagner <[email protected]>
65    
66            * Thuban/UI/controls.py, Thuban/UI/identifyview.py, Thuban/UI/join.py,
67            Thuban/UI/labeldialog.py, Thuban/UI/mainwindow.py,
68            Thuban/UI/proj4dialog.py, Thuban/UI/tableview.py, Thuban/UI/view.py:
69            Replace the true/false of wxWindows by True/False of Python 2.2.1.
70    
71    2003-05-26  Jan-Oliver Wagner <[email protected]>
72    
73            * Thuban/UI/tableview.py (LayerTableFrame.__init__): If there is
74            already a selection present, update the grid accordingly.
75    
76            * Thuban/UI/mainwindow.py (MainWindow.TableShow): Make the dialog
77            resizeable and increase its initial size.
78    
79    2003-05-26  Frank Koormann  <[email protected]>
80    
81            Table export functionality
82    
83            * Thuban/Model/table.py (DBFTable.Width, MemoryTable.Width):
84            Return width (in characters) for a column.
85            (DBFTable.Precision, MemoryTable.Precision): Return decimal precision.
86            (table_to_dbf): Write table to dbf file.
87            (table_to_csv): Write table to csv file.
88    
89            * Thuban/Model/transientdb.py (TransientTableBase.Width,
90            TransientTableBase.Precision): Return column width and precision.
91    
92            * Thuban/UI/tableview.py (QueryTableFrame.OnSaveAs): Call table_to_dbf
93            or table_to_csv depending on file selection.
94    
95            * test/test_dbf_table.py:
96            Test table_to_dbf (extension of former part of test).
97    
98            * test/test_csv_table.py:
99            Test table_to_csv.
100    
101    2003-05-23  Jan-Oliver Wagner <[email protected]>
102    
103            * Thuban/UI/join.py (JoinDialog.OnJoin): Use _() for strings.
104            Use QueryTableFrame instead of TableFrame.
105    
106            * Thuban/UI/mainwindow.py (MainWindow.LayerShowTable): Prefix the
107            table window with 'Layer Table:' instead of 'Table:'.
108    
109    2003-05-23  Jan-Oliver Wagner <[email protected]>
110    
111            Give all tables a title via mix-in TitledObject.LayerShowTable
112    
113            * Thuban/Model/base.py (TitledObject.SetTitle): Call method 'issue'
114            only if it exists.
115    
116            * Thuban/Model/table.py (DBFTable, MemoryTable): mix-in TitledObject
117            and call its init-method with a default title. Remove Title() method.
118    
119            * Thuban/Model/transientdb.py (TransientTable, TransientJoinedTable,
120            AutoTransientTable): mix-in TitledObject and call its init-method with
121            a default title. Remove Title() method.
122    
123    2003-05-23  Bernhard Herzog  <[email protected]>
124    
125            * Thuban/Model/session.py (Session.AddShapeStore): Define
126            AddShapeStore analogously to AddTable.
127    
128            * test/test_session.py (TestSessionSimple.test_add_shapestore):
129            New. Test for AddShapeStore
130    
131    2003-05-23  Jan-Oliver Wagner <[email protected]>
132    
133            Introducing QueryTableFrame and a very coarse ShowTable implementation.
134    
135            * Thuban/UI/tableview.py (LayerTableFrame, QueryTableFrame): Split the
136            class LayerTableFrame into two classes, LayerTableFrame and QueryTableFrame.
137            The latter implements the selection GUI without dependency on a layer.
138            LayerTableFrame now is derived from QueryTableFrame and connects
139            to a layer.
140    
141            * Thuban/UI/mainwindow.py (MainWindow.TableShow): A very coarse
142            implementation that still needs work.
143    
144            * Thuban/Model/layer.py (Layer.TreeInfo): Added filename.
145    
146    2003-05-22  Frank Koormann  <[email protected]>
147    
148            * Thuban/Model/transientdb.py (TransientJoinedTable.__init__):
149            Added "outer_join = False" as optional parameter.
150            (TransientJoinedTable.create): If outer join is true, perform a
151            "LEFT OUTER JOIN" instead of "JOIN", which preserves all records of
152            the left table. Records not matching are filled with 0 / None.
153    
154            * Thuban/UI/join.py (JoinDialog.__init__): Checkbox for outer join.
155            (JoinDialog.OnJoin): Consider outer join check box.
156    
157    2003-05-22  Bernhard Herzog  <[email protected]>
158    
159            * Thuban/UI/join.py (JoinDialog.OnJoin): Use exc_info in a
160            somewhat safer way. Storing the traceback in a local variable can
161            lead to memory leaks
162    
163    2003-05-22  Bernhard Herzog  <[email protected]>
164    
165            * Thuban/UI/join.py (JoinDialog.OnJoin): Make sure to really call
166            the wxMessageDialog's Destroy() method.
167    
168    2003-05-22  Frank Koormann  <[email protected]>
169    
170            * Thuban/UI/join.py (JoinDialog.__init__): Make use of
171            TransientTable.Title()
172    
173    2003-05-22  Frank Koormann  <[email protected]>
174    
175            Join Dialog, initial version.
176    
177            * Thuban/UI/mainwindow.py (MainWindow.TableJoin): Removed print.
178    
179            * Thuban/UI/join.py (JoinDialog): Functional implementation of
180            former framework. Renamed Table1/Table2 to LeftTable/RightTable
181            in all occurences.
182    
183            * Thuban/Model/transientdb.py (TransientJoinedTable.__doc__):
184            Typo fixed.
185    
186    2003-05-22  Bernhard Herzog  <[email protected]>
187    
188            Give the tables titles so that the GUI can display more meaningful
189            names. For now the titles are fixed but depend on e.g. filenames
190            or the titles of the joined tables.
191    
192            * Thuban/Model/transientdb.py (TransientTable.Title)
193            (TransientJoinedTable.Title, AutoTransientTable.Title): New.
194    
195            * Thuban/Model/table.py (DBFTable.Title, MemoryTable.Title): New.
196    
197            * test/test_transientdb.py
198            (TestTransientTable.test_auto_transient_table_title): New. Test
199            for the Title method
200            (TestTransientTable.test_transient_joined_table)
201            (TestTransientTable.test_transient_table): Add test for the Title
202            methods
203    
204            * test/test_memory_table.py (TestMemoryTable.test_title): New.
205            Test for the Title method
206    
207            * test/test_dbf_table.py (TestDBFTable.test_title): New. Test for
208            the Title method
209    
210    2003-05-22  Bernhard Herzog  <[email protected]>
211    
212            * test/test_layer.py (TestLayer.setUp, TestLayer.tearDown):
213            Provide a better way to destroy the layers
214            (TestLayer.test_base_layer, TestLayer.test_arc_layer)
215            (TestLayer.test_point_layer, TestLayer.test_empty_layer)
216            (TestLayer.test_polygon_layer, TestLayer.test_get_field_type): Use
217            the new way to destroy the layers.
218            (TestLayer.test_derived_store): New. Test for using a layer with a
219            DerivedShapeStore
220    
221            * Thuban/Model/layer.py (Layer.SetShapeStore): Only set the
222            filename if the shape store actually has one.
223    
224    2003-05-22  Bernhard Herzog  <[email protected]>
225    
226            * Thuban/Model/table.py (DBFTable.FileName): New. Accessor method
227            for the filename
228    
229            * test/test_dbf_table.py (TestDBFTable.test_filename): New. Test
230            for the FileName method
231            (TestDBFTableWriting.test_write): Fix spelling of filename
232    
233    2003-05-22  Thomas Koester  <[email protected]>
234    
235            * Thuban/Model/range.py, test/test_range.py: Brought over new Range
236            from SciParam that now really is immutable.
237    
238    2003-05-22  Frank Koormann  <[email protected]>
239    
240            Layer Top/Bottom placement added to legend.
241    
242            * Thuban/UI/legend.py
243            (LegendPanel._OnMoveTop(), LayerPanel._OnMoveBottom): New, methods
244            bound to tool events.
245            (LegendTree.MoveCurrentItemTop(), LegendTree.MoveCurrentItemBottom):
246            New, methods binding the event methods with the map methods.
247    
248            * Thuban/Model/map.py (Map.TopLayer(), Map.BottomLayer()): New, place
249            layer at top/bottom of layer stack.
250    
251            * Resources/Bitmaps/top_layer.xpm: New button icon.
252    
253            * Resources/Bitmaps/bottom_layer.xpm: New button icon.
254    
255    2003-05-22  Bernhard Herzog  <[email protected]>
256    
257            * Thuban/Model/session.py (Session.RemoveTable): New method to
258            remove tables
259    
260            * test/test_session.py (TestSessionSimple.test_remove_table): New.
261            Test for RemoveTable
262    
263    2003-05-22  Thomas Koester  <[email protected]>
264    
265            * Thuban/Model/classgen.py: Added short module doc string and CVS id.
266            (ClassGenerator.GenUniformDistribution): Use new Range __init__, too.
267    
268    2003-05-22  Bernhard Herzog  <[email protected]>
269    
270            Implement a way to discover dependencies between tables and
271            shapestores.
272    
273            * Thuban/Model/transientdb.py (TransientTableBase.Dependencies)
274            (TransientJoinedTable.Dependencies)
275            (AutoTransientTable.SimpleQuery): New. Implement the dependencies
276            interface
277            (TransientJoinedTable.__init__): Keep tack of the original table
278            objects in addition to the corresponding transient tables.
279    
280            * Thuban/Model/table.py (DBFTable.Dependencies)
281            (MemoryTable.Dependencies): New. Implement the dependencies
282            interface
283    
284            * Thuban/Model/data.py (ShapeTable): New. Helper class for
285            ShapefileStore
286            (ShapefileStore.__init__): Use ShapeTable instead of
287            AutoTransientTable
288            (ShapefileStore.Table, ShapefileStore.Shapefile): Add doc-strings
289            (ShapefileStore.FileName, ShapefileStore.FileType): New. Accessor
290            methods for filename and type
291            (ShapefileStore.Dependencies): New. Implement the dependencies
292            interface
293            (DerivedShapeStore): New class to replace SimpleStore. The main
294            difference to SimpleStore is that it depends not on a shapefile
295            but another shapestore which expresses the dependencies a bit
296            better
297            (SimpleStore.__init__): Add deprecation warning.
298    
299            * test/test_dbf_table.py (TestDBFTable.test_dependencies): New.
300            Test for the Dependencies method.
301    
302            * test/test_memory_table.py (TestMemoryTable.test_dependencies):
303            New. Test for the Dependencies method.
304    
305            * test/test_transientdb.py
306            (TestTransientTable.test_auto_transient_table_dependencies): New.
307            Test for the Dependencies method.
308            (TestTransientTable.test_transient_joined_table): Add test for the
309            Dependencies method.
310    
311            * test/test_session.py (TestSessionSimple.setUp)
312            (TestSessionSimple.tearDown): New. Implement a better way to
313            destroy the sessions.
314            (TestSessionSimple.test_initial_state)
315            (TestSessionSimple.test_add_table): Bind session to self.session
316            so that it's destroyed by tearDown
317            (TestSessionSimple.test_open_shapefile): New. Test for
318            OpenShapefile and the object it returns
319    
320    2003-05-22  Bernhard Herzog  <[email protected]>
321    
322            * Thuban/Model/session.py (Session.AddTable): New method to
323            register tables with the session.
324            (Session.Tables): Return the tables registered with AddTable too.
325    
326            * test/test_session.py (TestSessionSimple.test_add_table): New.
327            Test case for the AddTable method
328    
329    2003-05-22  Frank Koormann  <[email protected]>
330    
331            UI polishing updates: Place main buttons (OK, Cancel, etc) in the
332            lower right corner, center labels for selections, initialize controls
333            in reasonable order for keyboard navigation.
334    
335            * Thuban/UI/projdialog.py (ProjFrame.__init__, ProjFrame.__doLayout)
336            (ProjFrame.__DoOnProjAvail): Determine position of current projection
337            using the wxListBox.FindString() method. Still a problem (#1886)
338    
339            * Thuban/UI/classifier.py
340            (Classifier.__init__, SelectPropertiesDialog.__init__)
341    
342            * Thuban/UI/classgen.py (ClassGenDialog.__init__,
343            (ClassGenDialog.__DoOnGenTypeSelect): Moved initialization of the
344            different classification types from here to __init__.
345            (GenUniquePanel.__init__): Set the column width of the first field
346            in the Field ListCtrl to the full width.
347    
348            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Rename 'Save As'
349            Button to 'Export'. Center Buttons in Selection Box, set Focus to
350            Grid.
351            (LayerTableFrame.OnKeyDown()): New, bound to the grid with EVT_KEY_DOWN,
352            changes focus to the Selection when pressing "Alt-S".
353    
354            * Thuban/UI/legend.py (LegendTree.__SetVisibilityStyle): Only gray out
355            the text if not visible. The italic font sometimes exceeds the
356            rendering area.
357    
358    2003-05-21  Jonathan Coles   <[email protected]>
359    
360            * Thuban/UI/dock.py (DockFrame): Rename references to _OnClose
361            to OnClose so that Thuban closes correctly.
362    
363            * Thuban/UI/mainwindow.py (MainWindow.OnClose): Call
364            DockFrame.OnClose, not DockFrame._OnClose.
365    
366    2003-05-21  Jonathan Coles   <[email protected]>
367    
368            * Thuban/Model/classgen.py (ClassGenerator.GenQuantiles): Remove
369            references to 'inf' and use new Range __init__ to pass floats
370            directly rather than converting them to strings first.
371            Fixes RTBug #1876.
372    
373            * Thuban/Model/classification.py (ClassGroupRange.SetRange):
374            Use new Range ___init__ to pass floats.
375    
376            * Thuban/Model/layer.py (RasterLayer.__init__): Test if the
377            filename is a valid image file. Throw IOError otherwise.
378    
379            * Thuban/Model/range.py: Brought over new Range from SciParam that
380            is immutable and has an __init__ which can accept floats.
381    
382            * Thuban/UI/mainwindow.py (MainWindow.AddLayer): Move OpenShapefile
383            into try block. AddLayer doesn't throw any exceptions anymore.
384            (MainWindow.AddRasterLayer): Move constructor of RasterLayer into
385            try block.
386    
387            * Thuban/UI/projdialog.py (GeoPanel.__init__): Put Degrees as
388            the first item in choices. Fixes RTBug #1882.
389    
390            * Thuban/UI/renderer.py (MapRenderer.render_map): Check if scale
391            has gone to 0 which is a serious problem. abort.
392            (MapRenderer.draw_raster_layer): Catch IOError seperately and
393            print the error from GDAL.
394    
395            * Thuban/UI/tableview.py (TableGrid.__init__): Call
396            ToggleEventListeners to turn on listening.
397            (TableGrid.ToggleEventListeners): New. Turns event listening on
398            and off so as to prevent excessive messages.
399            (LayerTableFrame.OnQuery): Use TableGrid.ToggleEventListeners
400            to suppress excessive messages when selecting many rows.
401            Fixes RTBug #1880.
402    
403            * Thuban/UI/view.py: Added checks against if scale == 0. This
404            is a serious problem that can occur when an image without
405            geo data is loading and causes the map projection bounds to
406            go to infinity. Right now, the solution is to simply try
407            to recover.
408    
409            * extensions/thuban/cpl_mfile.cpp (MFILEClose): Make sure
410            to set the MFILEReceiver attributes even if the data is NULL.
411    
412            * extensions/thuban/gdalwarp.cpp: Improved the error handling
413            and passed GDAL messages back up to the Python layer. Also
414            tried to fix some memory leaks that were present in the original
415            utility but didn't matter because the program aborted.
416    
417            * test/test_range.py: Copied over tests from SciParam. Removed
418            tests against importing. Fixes RTBug #1867.
419    
420    2003-05-21  Bernhard Herzog  <[email protected]>
421    
422            * test/test_load.py: Remove unused imports and restructure the
423            test code
424            (LoadSessionTest): Split into one class for each test and turn
425            LoadSessionTest itself into the base class for all such session
426            tests.
427            (ClassificationTest): New base class for load tests that test
428            classifications
429            (TestSingleLayer, TestLayerVisibility, TestClassification)
430            (TestLabels, TestLayerProjection, TestRasterLayer): New classes
431            for the individual tests
432    
433            * test/support.py (FileLoadTestCase.filename): New base class for
434            file loading tests
435    
436    2003-05-21  Jan-Oliver Wagner <[email protected]>
437    
438            * Resources/Projections/defaults.proj: Renamed 'Universal Transverse
439            Mercator' to 'UTM Zone 32' as a more convenient example.
440            Added 'Gauss Krueger Zone 6'.
441    
442            * Data/iceland_sample_raster.thuban: political polygon now
443            filled transparent to have the raster image visible at once.
444    
445    2003-05-21  Frank Koormann  <[email protected]>
446    
447            * Thuban/UI/mainwindow.py (MainWindow): Renamed _OnClose() back to
448            OnClose() to keep in sync with extensions. Internally Thuban
449            still uses "underscored" names.
450    
451    2003-05-20  Jonathan Coles   <[email protected]>
452    
453            This puts back Raster layer support. These layers support projections
454            through the GDAL library. Currently, the CVS version is being used.
455            There are no Debian packages available although this may change soon.
456            A GDAL driver was extended to support writing to memory rather to
457            files.
458    
459            There is still some work that needs to be done, such as some error
460            handling when loading invalid images or when there is a problem
461            projecting the image. This putback simply checks in the majority
462            of the work.
463    
464            * setup.py: Add gdalwarp library extension.
465    
466            * Thuban/Model/layer.py (BaseLayer.HasClassification): New.
467            Defaults to False, but can be overridden by subclasses if they
468            support classification.
469            (RasterLayer): New. Defines a new layer that represents an
470            image.
471    
472            * Thuban/Model/load.py (SessionLoader.__init__): Add rasterlayer
473            tag handler.
474            (SessionLoader.start_layer): Encode the filename.
475            (SessionLoader.start_rasterlayer, SessionLoader.end_rasterlayer):
476            New. Supports reading a rasterlayer tag.
477    
478            * Thuban/Model/map.py (Map.BoundingBox): Fix typo in comment.
479    
480            * Thuban/Model/save.py (XMLWriter.encode): Don't assume that we
481            get a string in Latin1. If we get such as string convert it to
482            unicode first, otherwise leave if alone before encoding.
483            (SessionSaver.write_layer): Add support for writing both Layers
484            and RasterLayers.
485    
486            * Thuban/Model/transientdb.py (AutoTransientTable.SimpleQuery):
487            The right argument may not be a string, it could also be a Column.
488    
489            * Thuban/UI/application.py (ThubanApplication.CreateMainWindow):
490            Make initial window size 600x400. Fixes RTBug #1872.
491    
492            * Thuban/UI/classifier.py (Classifier.__init__): Rearrange how
493            the dialog is constructed so that we can support layers that
494            do not have classifications.
495            (Classifier._OnTry): Only build a classification if the layer
496            supports one.
497    
498            * Thuban/UI/legend.py: Change all checks that a layer is an
499            instance of Layer into checks against BaseLayer.
500            (LegendTree.__FillTreeLayer): Only add children to a branch if
501            the layer supports classification.
502    
503            * Thuban/UI/mainwindow.py (MainWindow.NewSession,
504            MainWindow.OpenSession): Don't proceed with an action if the
505            user chooses Cancel when they are asked to save changes.
506            (MainWindow.AddRasterLayer): New. Open a dialog to allow the
507            user to select an image file. Create a new RasterLayer and add
508            it to the map.
509    
510            * Thuban/UI/renderer.py (MapRenderer.render_map): Add support
511            for rendering RasterLayer layers.
512            (MapRenderer.draw_raster_layer): Actually method that calls
513            the GDALWarp python wrapper and constructs an image from the
514            data returned.
515    
516            * Thuban/UI/tableview.py (LayerTableFrame.__init__): Change the
517            Choices symbols to match those used in the table query method.
518            Replace deprecated method calls on table with new method names.
519    
520            * Thuban/UI/view.py (MapCanvas.set_view_transform): Try to limit
521            how small the scale can get. This still needs more testing.
522    
523            * extensions/thuban/bmpdataset.cpp: New, but copied from GDAL.
524            Provides a driver to output in .bmp format.
525    
526            * extensions/thuban/cpl_mfile.cpp, extensions/thuban/cpl_mfile.h:
527            New. Provides IO routines which write to memory, rather than a file.
528    
529            * extensions/thuban/gdalwarp.cpp: New, but basically a direct copy
530            of the gdalwarp utility provided in GDAL. Added function calls
531            that can be accessed from python.
532    
533            * Data/iceland_sample_raster.thuban: New. Sample file that uses
534            a raster layer.
535    
536            * Data/iceland/island.tfw, Data/iceland/island.tif: New. Raster
537            layer image data.
538    
539            * Doc/thuban.dtd: Added rasterlayer attribute definition.
540    
541            * test/test_layer.py, test/test_load.py, test/test_save.py: Added
542            tests associated with the raster layer code.
543    
544            * test/test_transientdb.py
545            (TestTransientTable.test_auto_transient_table_query): Added a test
546            for using a Column object as the "right" parameter to a query.
547    
548    2003-05-19  Frank Koormann  <[email protected]>
549    
550            * Thuban/version.py (get_changelog_date):
551            Catch exceptions if ChangeLog does not exist.
552    
553            * Thuban/UI/view.py (MapCanvas.Export): Bugfix
554    
555    2003-05-19  Frank Koormann  <[email protected]>
556    
557            Extended version information for Thuban
558    
559            * Thuban/version.py: New, version information for Thuban: Last
560            modification date and last ChangeLog entry date.
561    
562            * Thuban/UI/mainwindow.py (MainWindow.About()): Extended version
563            information: Display Thuban, wxPython and Python version.
564    
565    2003-05-16  Bernhard Herzog  <[email protected]>
566    
567            * Thuban/Model/save.py: Remove some unused imports including the
568            __future__ import for nested_scopes as Thuban relies on Python 2.2
569            now.
570            (XMLWriter.encode): Remove the special case for a None argument.
571            In the saver encode is always called with a string argument.
572    
573    2003-05-16  Bernhard Herzog  <[email protected]>
574    
575            * Thuban/UI/__init__.py: Remove the work-around for the locale bug
576            in wxPython (at least when usinvg wxGTK) prior to 2.4. The symptom
577            of the bug was that e.g. float("1.2") would fail. Thuban now
578            requires 2.4.x.
579            
580    2003-05-16  Frank Koormann   <[email protected]>
581    
582            Printing enhancement and WMF export (under Win32)
583    
584            * Thuban/UI/renderer.py (ExportRenderer): New, derived from
585            ScreenRenderer. Renders Map, Legend and Scalebar for export.
586            (PrinterRenderer): New, derived from ExportRenderer. Replaces the old
587            PrintRender.
588    
589            * Thuban/UI/view.py (MapPrintout.__init__): Enhanced parameter set
590            to fullfil information needed for PrinterRenderer.
591            (MapCanvas.Export): New. Export Map (currently only to WMF on Win32).
592            (MapCanvas.Print): Adapted to new MapPrintout.
593            (OutputTransform): General calculations to transform from canvas
594            coordinates to export/printing devices.
595    
596            * Thuban/UI/mainwindow.py (MainWindow.ExportMap()): New. Added also
597            new method_command to call ExportMap, with platform dependency (only
598            __WXMSW__)
599      
600            * Thuban/UI/scalebar.py (ScaleBar.DrawScaleBar): Position and Size
601            of scalebar drawing area as new parameters.
602            
603            * Thuban/Model/scalebar.py (roundInterval): round long instead of int
604    
605            * Thuban/UI/legend.py (ScalebarBitmap.__SetScale):
606            Update to extended scalebar.DrawScalebar header.
607    
608            * test/test_export.py: New, test Thuban.UI.view.OutputTransform()
609    
610            * test/test_scalebar.py: Made test executable as standalone.
611    
612    2003-05-16  Bernhard Herzog  <[email protected]>
613    
614            * Thuban/Model/table.py (Table): Remove this compatibility alias
615            for DBFTable.
616    
617            * test/test_table.py: Import DBFTable as Table because that alias
618            doesn't exist anymore.
619    
620            * Thuban/UI/classgen.py: Remove some unused imports
621    
622    2003-05-14  Jonathan Coles   <[email protected]>
623    
624            * Thuban/Model/classgen.py (ClassGenerator.GenSingletonsFromList):
625            Fix docstring.
626            (ClassGenerator.GenUniformDistribution): Fix spelling of method name.
627            (ClassGenerator.GenQuantiles): Use the left/right brackets and min/max
628            values of the supplied range to determine the beginning and end
629            bounds of the generated classes.
630    
631            * Thuban/Model/range.py (Range.number_re): Now accepts floats that
632            do not have a leading 0 (.5 is now accepted as well as 0.5).
633    
634            * Thuban/UI/classgen.py (ClassGenDialog.OnOK): Fix name of method
635            call to ClassGenerator.GenUniformDistribution.
636    
637            * Thuban/UI/projdialog.py (ProjFrame.__do_layout): Fix Windows
638            layout bug with the 'Projection' label.
639    
640            * test/support.py (FloatTestCase): New. Needed for the Range tests.
641    
642            * test/test_range.py: New. Imported from SciParam.
643    
644    2003-05-12  Jonathan Coles   <[email protected]>
645    
646            * Thuban/UI/classgen.py (GenQuantilesPanel.GetList): Replace call
647            to table.UniqueValues() with calls that retrieve all the values
648            from the table. This will need to be replaced by a method on table
649            which can simply return the list (perhaps more efficiently).
650    
651    2003-05-12  Jonathan Coles   <[email protected]>
652    
653            The return value of ClassGenerator.CalculateQuantiles has changed.
654            Refer to the documentation for details.
655    
656            * test/test_classgen.py: Modified Quantile tests to use the
657            new return values.
658    
659            * Thuban/Model/classgen.py
660            (ClassGenerator.GenQuantiles): Add comments describing the parameters,
661            use new return values from CalculateQuantiles to produce the correct
662            range bounds in the Classification.
663            (ClassGenerator.CalculateQuantiles): Add more comments describing
664            the return values and parameters. Make minor adjustments to improve
665            the legibility of the code. Fix problem with adjusted not being set
666            in most cases.
667    
668    2003-05-12  Frank Koormann <[email protected]>
669            
670            * Thuban/Model/save.py (XMLWriter.encode()): Explicite call to unicode
671            and latin1. Fixes #1851 finally.
672    
673    2003-05-09  Jonathan Coles   <[email protected]>
674    
675            * test/test_classgen.py: New. Tests the Quantile algorithm.
676    
677            * Thuban/Model/classgen.py (ClassGenerator.CalculateQuantiles):
678            Clean up debugging statement, add comments, fix a small bug in the
679            returned adjusted percentiles.
680            
681    2003-05-09  Jonathan Coles   <[email protected]>
682    
683            Introduces Range class from SciParam into the ClassGroupRange class,
684            and such ranges can now be saved and loaded from disk.
685    
686            Quantiles are now available in the Classification Generator.
687    
688            Initial support for building Queries on a table. Doesn't do anything
689            but run some tests.
690    
691            * Thuban/Model/classification.py: Explicit imports.
692            (ClassGroupRange): Use the Range class to store the underlying
693            range information. The interface remains the same, except for
694            GetRange(), and you can also supply a Range object as the min
695            parameter to SetRange or __init__.
696    
697            * Thuban/Model/load.py (XMLReader.encode): New. Encodes the given
698            string appropriately for use in Thuban. Fixes RTbug #1851.
699            (SessionLoader.end_projection): Handle the context of the
700            projection tag a bit better by looking at what objects are not
701            None. There was an assumption that a projection tag for a map
702            could occur before any layers.
703            (SessionLoader.start_clrange): Provide backward compatibility for
704            reading min/max values as well as the new range parameter.
705    
706            * Thuban/Model/map.py: Explicit imports.
707    
708            * Thuban/Model/resource.py: Import _.
709            (ProjFileSaver.write): write header using projfile.dtd.
710    
711            * Thuban/Model/save.py: Explicit imports.
712            (XMLWriter.encode): New. Encode the given string from a format
713            used by Thuban into UTF-8. Fixes RTbug #1851.
714    
715            * Thuban/UI/classgen.py: Explicit imports.
716            (ClassGenDialog.__init__): Clean up the code and add support
717            for Quantiles.
718            (ClassGenDialog.OnOK): Add support for Quantiles.
719            (GenQuantilesPanel): New. Input panel for Quantiles.
720            (ClassGenerator, CustomRamp, MonochromaticRamp, GreyRamp, RedRamp,
721            GreenRamp, BlueRamp, HotToColdRamp): Move to Thuban/Model/classgen.py
722    
723            * Thuban/Model/classgen.py: New. Contains all the classes named above.
724    
725            * Thuban/UI/classifier.py: Explicit imports.
726            (ClassTable.GetValueAsCust, ClassTable.__ParseInput,
727            ClassTable.SetValueAsCustom): Reworked to use new Range class.
728    
729            * Thuban/UI/legend.py: Explicit imports.
730    
731            * Thuban/UI/mainwindow.py: Add support for the Join Dialog. Added
732            a Table menu and associated method calls.
733            (MainWindow.choose_color): Removed. No longer needed.
734    
735            * Thuban/UI/projdialog.py (ProjFrame.__VerifyButtons): Save button
736            should be disabled if no projection is selected in the available
737            list.
738    
739            * Thuban/UI/renderer.py: Explicit imports.
740    
741            * Thuban/UI/tableview.py (TableGrid.OnRangeSelect): Fix some issues
742            with correctly selecting the rows and issuing the right events.
743            Be sure to call Skip() to allow the grid to do some of its own
744            handling which allows the rows to actually be selected.
745            (LayerTableGrid.select_shapes): Rename from select_shape. Supports
746            selecting multiple shapes.
747            (LayerTableFrame): Support for building Queries.
748            (LayerTableFrame.select_shapes): Allow multiple shapes to be selected.
749    
750            * Thuban/UI/tree.py: Explicit imports.
751    
752            * Thuban/UI/view.py (MapCanvas): Delegate "SelectedShapes" so the
753            table view can call it.
754    
755            * test/test_classification.py: Explicit imports.
756            (TestClassification.test_ClassGroupRange): Fix test for new
757            Range class.
758    
759            * Doc/thuban.dtd: Add range parameter for clrange.
760    
761            * Thuban/Model/range.py: Taken from SciParam. Used as the underlying
762            object in ClassGroupRange, and also uesd for inputting ranges in
763            the classifer table and elsewhere.
764    
765            * Thuban/UI/join.py: New. Initial Join dialog. No real functionality
766            yet.
767    
768    2003-05-09  Frank Koormann <[email protected]>
769    
770            * Thuban/UI/scalebar.py (DrawScaleBar): Draw only if interval > 0.0.
771    
772    2003-05-08  Frank Koormann <[email protected]>
773    
774            Coding style updates
775    
776            * test/test_scalebar.py: Replaced tab indentation by spaces.
777    
778            * Thuban/UI/scalebar.py: Explicit imports.
779    
780    2003-05-08  Frank Koormann <[email protected]>
781    
782            * Thuban/UI/scalebar.py
783            (ScaleBar.DrawScalebar): Format string bug fixed.
784    
785    2003-05-08  Frank Koormann <[email protected]>
786    
787            Reorganization of scalebar component (no wx in Thuban/Model)
788    
789            * Thuban/Model/scalebar.py: Rendering moved to Thuban/UI/scalebar.py
790            (deriveInterval):
791            Calculate scalebar interval and unit which fits in width for scale.
792            (roundInterval): Round float.
793    
794            * Thuban/UI/scalebar.py (ScaleBar): Scalebar rendering
795    
796            * test/test_scalebar.py: Test for Thuban/Model/scalebar.py methods.
797    
798            * Thuban/UI/legend.py: Import Thuban.UI.scalebar
799    
800    2003-05-08  Frank Koormann <[email protected]>
801    
802            * Thuban/UI/legend.py (ScalebarBitmap.SetCanvas):
803            Initialize ScaleBar with canvas.map
804    
805            * Thuban/Model/scalebar.py (ScaleBar.roundInterval()): New,
806            round intervals to display smarter lengths
807            (ScaleBar.DrawScalebar): Draw Scalebar only if the map contains a
808            layer. If the maps has no projection applied grey the scalebar.
809    
810    2003-05-07  Frank Koormann <[email protected]>
811            
812            Basic Scalebar features added.
813    
814            * Thuban/Model/scalebar.py (ScaleBar): New, scalebar rendering.
815    
816            * Thuban/UI/legend.py (LegendPanel): Added scalebar bitmap
817            (ScaleBarBitmap): New, links the scalebar bitmap with view messages
818            and the renderer.
819    
820            * Thuban/UI/view.py (MapCanvas.set_view_transform): Issue SCALE_CHANGED.
821    
822            * Thuban/UI/messages.py: SCALE_CHANGED added.
823    
824    2003-05-07  Bernhard Herzog  <[email protected]>
825    
826            * Thuban/Model/session.py (Session.__init__): New instance
827            variable shapestores to hold a list of all open shapestore objects
828            (Session.ShapeStores): New. Accessor method for the shapestores
829            list.
830            (Session._add_shapestore, Session._clean_weak_store_refs): New.
831            Internal methods to maintain the shapestores list.
832            (Session.Tables): New. Return all tables open in the session.
833            (Session.OpenShapefile): Insert the new ShapeStore into the
834            shapestores list.
835    
836            * test/test_session.py (TestSessionSimple.test_initial_state): Add
837            tests for ShapeStores and Tables
838            (TestSessionWithContent.test_shape_stores)
839            (TestSessionWithContent.test_tables): New. Test cases for
840            ShapeStores and Tables
841    
842    2003-05-07  Bernhard Herzog  <[email protected]>
843    
844            * Thuban/Model/transientdb.py (TransientTableBase.ReadRowAsDict):
845            Add comments about the optimizations used.
846            (AutoTransientTable.ReadValue, TransientTableBase.ReadValue): New.
847            Implement the ReadValue table interface method.
848    
849            * test/test_transientdb.py
850            (TestTransientTable.run_iceland_political_tests)
851            (TestTransientTable.test_transient_joined_table): Add tests for
852            ReadValue
853    
854    2003-05-07  Frank Koormann <[email protected]>
855    
856            * Resources/Bitmaps/fulllayerextent.xpm,
857            Resources/Bitmaps/fullselextent.xpm: Replaced the place holders with
858            new icons.
859    
860    2003-05-06  Bernhard Herzog  <[email protected]>
861    
862            * Thuban/Model/transientdb.py (AutoTransientTable.SimpleQuery):
863            New. Simply delegate to the transient table's version.
864    
865            * test/test_transientdb.py
866            (TestTransientTable.test_auto_transient_table_query): New. Test
867            case for AutoTransientTable's SimpleQuery
868    
869    2003-05-06  Bernhard Herzog  <[email protected]>
870    
871            * Thuban/Model/transientdb.py (TransientTableBase.SimpleQuery):
872            Implement a simple query method for the query dialog
873            (TransientTableBase.create): Add an INTEGER PRIMARY KEY that holds
874            the row index or shapeid.
875            (TransientTable.create): Insert the right value of the row index
876            (TransientJoinedTable.create): Copy the row index of the left
877            table to the joined result table
878    
879            * test/test_transientdb.py
880            (TestTransientTable.test_transient_table_read_twice): Fix
881            doc-string
882            (TestTransientTable.test_transient_table_query): New. Test for the
883            SimpleQuery method
884    
885    2003-05-06  Bernhard Herzog  <[email protected]>
886    
887            Convert all table users to use the new table interface. This only
888            covers Thuban itself, not GREAT-ER or other applications built on
889            Thuban yet, so the compatibility interface stays in place for the
890            time being but it now issues DeprecationWarnings.
891    
892            Finally, the new Table interface has a new method, HasColumn.
893    
894            * Thuban/Model/table.py (OldTableInterfaceMixin): All methods
895            issue deprecation warnings when they're. The warnings refer to the
896            caller of the method.
897            (OldTableInterfaceMixin.__deprecation_warning): New. Helper method
898            for the deprecation warnings
899    
900            * test/test_table.py: Ignore the deprecation warnings for the old
901            table in the tests in this module. The purpose of the tests is to
902            test the old interface, after all.
903    
904            * test/test_transientdb.py
905            (TestTransientTable.run_iceland_political_tests): Use the
906            constants for the types. Add a test for HasColumn
907            (TestTransientTable.test_transient_joined_table): Adapt to new
908            table interface. Add a test for HasColumn
909            (TestTransientTable.test_transient_table_read_twice): Adapt to new
910            table interface
911    
912            * Thuban/UI/tableview.py (DataTable.SetTable, DataTable.GetValue):
913            Adapt to new table interface
914    
915            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Adapt to
916            new table interface
917    
918            * Thuban/UI/controls.py (RecordListCtrl.fill_list)
919            (RecordTable.SetTable): Adapt to new table interface
920    
921            * Thuban/UI/classifier.py (Classifier.__init__)
922            (Classifier.__init__): Adapt to new table interface
923    
924            * Thuban/UI/classgen.py (ClassGenDialog.__init__)
925            (GenUniformPanel._OnRetrieve, GenUniquePanel._OnRetrieve): Adapt
926            to new table interface
927    
928            * Thuban/Model/transientdb.py (TransientTableBase.HasColumn)
929            (AutoTransientTable.HasColumn): Implement the new table interface
930            method
931            (AutoTransientTable.ReadRowAsDict, AutoTransientTable.ValueRange)
932            (AutoTransientTable.UniqueValues): Adapt to new table interface
933    
934            * Thuban/Model/layer.py (Layer.SetShapeStore, Layer.GetFieldType):
935            Adapt to new table interface
936    
937            * test/test_layer.py (TestLayer.open_shapefile): Helper method to
938            simplify opening shapefiles a bit easier.
939            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
940            (TestLayer.test_point_layer): Use the new helper method
941            (TestLayer.test_get_field_type): New. Test for the GetFieldType
942            method
943    
944            * test/test_dbf_table.py (TestDBFTable.test_has_column): Test for
945            the new table method
946    
947            * test/test_memory_table.py (TestMemoryTable.test_has_column):
948            Test for the new table method HasColumn
949    
950    2003-05-06  Jonathan Coles   <[email protected]>
951    
952            Addresses the "Selection Extent" wish of RTbug #1787.
953    
954            * Resources/Bitmaps/fulllayerextent.xpm,
955            Resources/Bitmaps/fullselextent.xpm: Bitmaps for layer and selection
956            extent. These are just place holders for the real bitmaps.
957    
958            * Thuban/Model/layer.py (Shape): Since a Shape is immutable only
959            calculate the bounding box once (the first time compute_bbox() is
960            called).
961            (Layer.ShapesBoundingBox): New. Given a list of shape ids, return
962            the bounding box for the shapes in lat/long coordinates.
963    
964            * Thuban/UI/mainwindow.py: Added new "Full selection extent" menu
965            option.
966            (MainWindow.has_selected_shapes): New. Returns true if there are
967            any selected shapes.
968            (MainWindow.FullSelectionExtent): New. Calls
969            MapCanvas.FitSelectedToWindow() when the user selects the menu option.
970            (_has_selected_shapes): New. Returns true if there are any
971            selected shapes.
972    
973            * Thuban/UI/selection.py (Selection.HasSelectedShapes): New. Returns
974            true if there are any selected shapes.
975    
976            * Thuban/UI/view.py (MapCanvas): Added delegated method
977            HasSelectedShapes.
978            (MapCanvas.FitSelectedToWindow): New. Centers and scales any selected
979            shapes on the canvas using the map projection (if any).
980    
981            * test/test_layer.py (TestLayer.test_arc_layer): Add some tests
982            for Layer.ShapesBoundingBox().
983    
984    2003-05-06  Bernhard Herzog  <[email protected]>
985    
986            * Resources/Projections/defaults.proj: Fix spelling of Mercator
987    
988    2003-05-05  Jonathan Coles   <[email protected]>
989    
990            Addresses the "Full Layer Extent" wish of RTbug #1787.
991    
992            * Resources/Projections/defaults.proj: Added UK National Grid.
993    
994            * Thuban/UI/mainwindow.py: Added new "Full layer extent" menu option.
995            (MainWindow.FullLayerExtent): New. Calls MapCanvas.FitLayerToWindow()
996            when the user selects the menu option.
997    
998            * Thuban/UI/view.py (MapCanvas.FitLayerToWindow): New. Centers and
999            scales the given layer on the canvas using the map projection.
1000    
1001    2003-05-05  Bernhard Herzog  <[email protected]>
1002    
1003            Convert the table implementations to a new table interface. All
1004            tables use a common mixin class to provide backwards compatibility
1005            until all table users have been updated.
1006    
1007            * Thuban/Model/table.py (OldTableInterfaceMixin): Mixin class to
1008            provide backwards compatibility for table classes implementing the
1009            new interface
1010            (DBFTable, MemoryTable): Implement the new table interface. Use
1011            OldTableInterfaceMixin as base for compatibility
1012            (DBFColumn, MemoryColumn): New. Column description for DBFTable
1013            and MemoryTable resp.
1014    
1015            * test/test_dbf_table.py: New. Test cases for the DBFTable with
1016            the new table interface.
1017    
1018            * test/test_memory_table.py: New. Test cases for the MemoryTable
1019            with the new table interface.
1020    
1021            * test/test_table.py: Document the all tests in this file as only
1022            for backwards compatibility. The equivalent tests for the new
1023            interface are in test_memory_table.py and test_dbf_table.py
1024            (MemoryTableTest.test_read): field_info should be returning tuples
1025            with four items
1026            (MemoryTableTest.test_write): Make doc-string a more precise.
1027    
1028            * Thuban/Model/transientdb.py (TransientTableBase): Convert to new
1029            table interface. Derive from from OldTableInterfaceMixin for
1030            compatibility.
1031            (TransientTableBase.create): New intance variable column_map to
1032            map from names and indices to column objects
1033            (TransientTable.create): Use the new table interface of the input
1034            table
1035            (AutoTransientTable): Convert to new table interface. Derive from
1036            from OldTableInterfaceMixin for compatibility.
1037            (AutoTransientTable.write_record): Removed. It's not implemented
1038            yet and we still have to decide how to handle writing with the new
1039            table and data framework.
1040    
1041            * test/test_transientdb.py
1042            (TestTransientTable.run_iceland_political_tests)
1043            (TestTransientTable.test_transient_joined_table): Use the new
1044            table interface
1045    
1046    2003-05-05  Jonathan Coles   <[email protected]>
1047    
1048            This is namely a collection of UI updates to improve user interactivity.
1049            Tabbing between controls now exists and you can use ESC to close dialog
1050            boxes; ENTER will active the default button.
1051    
1052            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Rearrange the
1053            order that the controls are created so that tabbing works correctly.
1054            (ClassGenDialog.OnOK): Renamed from _OnGenerate() so that the
1055            wxDialog can handle the default button correctly.
1056            (ClassGenDialog.OnCancel): Renamed from _OnCloseBtn() for the
1057            same reasons as for OnOK.
1058            (GenUniformPanel._OnRetrieve): Call wxBeginBusyCursor/wxEndBusyCursor
1059            when we ask the table for the maximum/minimum values of a field
1060            which could take a very long time.
1061    
1062            * Thuban/UI/classifier.py (Classifier.__init__): Rearrange the
1063            order that the controls are created so that tabbing works correctly.
1064            (SelectPropertiesDialog.__init__): Rearrange the order that the
1065            controls are created so that tabbing works correctly.
1066    
1067            * Thuban/UI/dialogs.py: Copied NonModalDialog box and changed it
1068            to derive from a wxDialog but behave like the original implementation
1069            which was derived from a wxFrame. wxDialog provides useful key
1070            handling functionality like ESC calling OnCancel and ENTER calling
1071            OnOK which is lost with wxFrame.
1072    
1073            * Thuban/UI/mainwindow.py: Add "..." to menu items that will open
1074            new dialogs.
1075    
1076            * Thuban/UI/projdialog.py (ProjFrame.__init__): Rearrange the
1077            order that the controls are created so that tabbing works correctly.
1078            (ProjFrame.OnApply): Renamed from _OnTry() to use wxDialog behaviour.
1079            (ProjFrame.OnOK): Renamed from _OnOK() to use wxDialog behaviour.
1080            (ProjFrame.OnCancel): Renamed from _OnClose() to use wxDialog behaviour.
1081            (ProjPanel.__init__): Add "Airy" to the list of ellipsoids so we
1082            can provide the "UK National Grid" as a default projection.
1083            (UTMPanel.__init__): Rearrange the order that the controls are
1084            created so that tabbing works correctly.
1085    
1086    2003-05-05  Bernhard Herzog  <[email protected]>
1087    
1088            * extensions/thuban/wxproj.cpp: Fix some of the comments.
1089            (project_point): If a map projection but no layer projection is
1090            given, convert degrees to radians before applying the map
1091            projection.
1092    
1093            * Thuban/UI/tableview.py (TableGrid.disallow_messages)
1094            (TableGrid.allow_messages): New methods to make it possible to
1095            inhibit message sending.
1096            (TableGrid.issue): Only send the message if not inhibited.
1097            (LayerTableGrid.select_shape): Use the new methods to make sure
1098            that no ROW_SELECTED message is sent while we're updating the
1099            selected rows to match the selected shapes.
1100    
1101    2003-05-02  Jan-Oliver Wagner <[email protected]>
1102    
1103            Implementation of MemoryTable.
1104    
1105            * Thuban/Model/table.py (MemoryTable): New. Quite simple table
1106            implementation that operates on a list of tuples. All of the data
1107            are kept in the memory.
1108    
1109            * test/test_table.py (MemoryTableTest): New.
1110    
1111            * test/test_transientdb.py (SimpleTable): Removed.
1112            (TestTransientTable.test_transient_joined_table,
1113            (TestTransientTable.test_transient_table_read_twice): Replaced
1114            SimpleTable by MemoryTable.
1115    
1116    2003-04-30  Jonathan Coles   <[email protected]>
1117    
1118            * Data/iceland_sample.thuban: Now contains correct projections
1119            for each of the layers.
1120    
1121            * Resources/Projections/defaults.proj: Geographic projection
1122            contains unit conversion parameter.
1123    
1124    2003-04-30  Jonathan Coles   <[email protected]>
1125    
1126            The most important part of this putback is the projection changes.
1127            It should now be possible to specify the projection that a layer
1128            is in and then specify a different projection for the map. The
1129            projection dialog has an extra parameter for a geographic projection
1130            which lets the user select if the input is in degrees or radians.
1131    
1132            * Thuban/Model/layer.py (Layer.ShapesInRegion): Fix docstring
1133            to say that the parameter is a tuple of unprojected
1134            points (which is what the callers to this method were assuming).
1135            Also, since the points are unprojected we need to projected them.
1136    
1137            * Thuban/UI/legend.py (LegendTree.MoveCurrentItemUp,
1138            LegendTree.MoveCurrentItemDown): If the layer or any of the layer's
1139            groups are selected, move the layer up/down. Fixes RTbug #1833.
1140    
1141            * Thuban/UI/mainwindow.py: Move menu item map_rename up.
1142    
1143            * Thuban/UI/projdialog.py (ProjFrame._OnSave): Add missing
1144            parameter in call to SetClientData.
1145            (GeoPanel): Add support for selecting the units that the
1146            source data is in (Radians or Degrees).
1147    
1148            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Optimize
1149            the rendering loop by reducing the number of if's, removing the
1150            unnecessary try/except block, and checking if the old group
1151            is the same as the new one (which happens a lot if there is
1152            no classification, or lots of shapes are in the same group).
1153    
1154            * Thuban/UI/view.py (MapCanvas.OnPaint): Add a try/except block
1155            around the redraw routine to try to catch problems that the user
1156            may create by selecting invalid projections for the data set and
1157            map. Clears the display if there are any problems and prints the
1158            error.
1159            (MapCanvas.do_redraw): Use DC.Clear() instead of drawing a filled
1160            rectangle.
1161    
1162            * extensions/thuban/wxproj.cpp (project_point): First invert the
1163            supplied point (which should be in projected coordinates) using
1164            the layer's projection and then project the point using the
1165            map's projection.
1166            (project_points): Use project_point() to project each point.
1167    
1168    2003-04-30  Jan-Oliver Wagner <[email protected]>
1169    
1170            * Thuban/Model/layer.py (Layer.SetShapeStore): Fixed a bug:
1171            don't set the Classification to None if the classfication field
1172            is None (ie only a DEFAULT).
1173    
1174    2003-04-30  Bernhard Herzog  <[email protected]>
1175    
1176            * Thuban/UI/view.py: Fix some typos.
1177    
1178            * Thuban/UI/mainwindow.py (MainWindow.identify_view_on_demand): Do
1179            not pop up the dialog if the selection becomes empty (this could
1180            happen if e.g. a new selection is opened while the identify tool
1181            is active and dialog had been closed)
1182    
1183    2003-04-30  Bernhard Herzog  <[email protected]>
1184    
1185            * Thuban/Model/transientdb.py (TransientTableBase.__init__): New
1186            instance variable read_record_last_result
1187            (TransientTableBase.read_record): Make sure reading the same
1188            record twice works. The implementation uses the new instance
1189            variable read_record_last_result
1190    
1191            * test/test_transientdb.py
1192            (TestTransientTable.test_transient_table_read_twice): New test
1193            case for the above bug-fix.
1194    
1195    2003-04-29  Jonathan Coles   <[email protected]>
1196    
1197            * Thuban/common.py: Removed. No longer needed Str2Num. RTbug #1832.
1198    
1199            * Thuban/UI/classgen.py: Remove all uses of Str2Num.
1200    
1201            * Thuban/UI/classifier.py: Remove all uses of Str2Num.
1202            (ClassTable.SetValueAsCustom): Rename keyword argument in
1203            ClassGroup* constructors to match argument name.
1204    
1205    2003-04-29  Bernhard Herzog  <[email protected]>
1206    
1207            * Thuban/Model/session.py (Session.Destroy): Explicitly close the
1208            transient DB if it exists to make sure it doesn't leave a journal
1209            file in the temp directory.
1210    
1211            * Thuban/Model/transientdb.py (TransientDatabase.close): Set
1212            self.conn to None after closing the connection to make sure it's
1213            not closed twice
1214    
1215    2003-04-29  Jonathan Coles   <[email protected]>
1216    
1217            Add a visible parameter in the layer XML tag. The default value is
1218            "true". If anything other than "false" is specified we also assume
1219            "true". Addresses RTbug #1025.
1220    
1221            * Doc/thuban.dtd: Add visible parameter to a layer.
1222    
1223            * Thuban/Model/layer.py (BaseLayer.__init__): Change default value
1224            of visible from 1 to True.
1225            (Layer.__init__): Change default value of visible from 1 to True.
1226    
1227            * Thuban/Model/load.py (SessionLoader.start_layer): Read visible
1228            parameter.
1229    
1230            * Thuban/Model/save.py (SessionSaver.write_layer): Save visible
1231            parameter.
1232    
1233            * test/test_load.py: Add new test data contents_test_visible.
1234            (LoadSessionTest.setUp): save test data.
1235            (LoadSessionTest.testLayerVisibility): Test if the visible flag
1236            is loaded correctly.
1237    
1238            * test/test_save.py (SaveSessionTest.testSingleLayer): Add test
1239            for saving an invisible layer.
1240    
1241    2003-04-29  Jonathan Coles   <[email protected]>
1242    
1243            * Thuban/UI/mainwindow.py (MainWindow.SetMap): Look up the
1244            legend dialog box and tell it to change its map to the one
1245            supplied to SetMap(). Fixes RTbug #1770.
1246    
1247    2003-04-29  Bernhard Herzog  <[email protected]>
1248    
1249            Next step of table implementation. Introduce a transient database
1250            using SQLite that some of the data is copied to on demand. This
1251            allows us to do joins and other operations that require an index
1252            for good performance with reasonable efficiency. Thuban now needs
1253            SQLite 2.8.0 and pysqlite 0.4.1. Older versions may work but I
1254            haven't tested that.
1255            
1256            * Thuban/Model/transientdb.py: New. Transient database
1257            implementation.
1258    
1259            * test/test_transientdb.py: New. Tests for the transient DB
1260            classes.
1261    
1262            * Thuban/Model/session.py (AutoRemoveFile, AutoRemoveDir): New
1263            classes to help automatically remove temporary files and
1264            directories.
1265            (Session.__init__): New instance variables temp_dir for the
1266            temporary directory and transient_db for the SQLite database
1267            (Session.temp_directory): New. Create a temporary directory if not
1268            yet done and return its name. Use AutoRemoveDir to have it
1269            automatically deleted
1270            (Session.TransientDB): Instantiate the transient database if not
1271            done yet and return it.
1272    
1273            * Thuban/Model/data.py (ShapefileStore.__init__): Use an
1274            AutoTransientTable so that data is copied to the transient DB on
1275            demand.
1276            (SimpleStore): New class that simply combines a table and a
1277            shapefile
1278    
1279            * Thuban/Model/table.py (Table, DBFTable): Rename Table into
1280            DBFTable and update its doc-string to reflect the fact that this
1281            is only the table interface to a DBF file. Table is now an alias
1282            for DBFTable for temporary backwards compatibility.
1283    
1284            * Thuban/UI/application.py (ThubanApplication.OnExit): Make sure
1285            the last reference to the session goes away so that the temporary
1286            files are removed properly.
1287    
1288            * test/test_load.py (LoadSessionTest.tearDown): Remove the
1289            reference to the session to make sure the temporary files are
1290            removed.
1291    
1292    2003-04-29  Bernhard Herzog  <[email protected]>
1293    
1294            * Thuban/Model/load.py (XMLReader.__init__, XMLReader.read): Turn
1295            the __parser instance variable into a normal local variable in
1296            read. It's only used there and read will never be called more than
1297            once. Plus it introduces a reference cycle that keeps can keep the
1298            session object alive for a long time.
1299    
1300    2003-04-29  Jonathan Coles   <[email protected]>
1301    
1302            * Thuban/Model/proj.py (Projection): Removed Set*() methods to make
1303            Projection an immutable item. Fixes RTbug #1825.
1304            (Projection.__init__): Initialize instance variables here.
1305            (ProjFile.Replace): New. Replace the given projection object with
1306            the new projection object. This solves the problem of needing the
1307            mutator Projection.SetProjection() in the ProjFrame class and
1308            allows a projection to change parameters without changing its
1309            location in the file.
1310    
1311            * Thuban/UI/mainwindow.py (MainWindow.SaveSessionAs): Dialog should
1312            be of type wxSAVE and should verify overwriting a file.
1313    
1314            * Thuban/UI/projdialog.py (ProjFrame._OnSave): Use the new
1315            ProjFile.Replace() method instead of the mutator
1316            Projection.SetProjection(). Also requires that we reassign the
1317            client data to the new projection.
1318    
1319            * test/test_proj.py (TestProjection.test): Test GetName() and
1320            GetAllParameters()
1321            (TestProjFile.test): Remove tests for Set*() methods. Add tests
1322            for Replace().
1323    
1324    2003-04-25  Jonathan Coles   <[email protected]>
1325    
1326            * Thuban/Model/save.py (SessionSaver.write_projection): Make sure
1327            to save the name of the projection.
1328    
1329            * test/test_save.py (SaveSessionTest.testLayerProjection): New
1330            test to verify layer projections are saved correctly.
1331    
1332    2003-04-25  Jonathan Coles   <[email protected]>
1333    
1334            * Thuban/Model/proj.py (Projection.SetName): Set the name
1335            to "Unknown" if name is None.
1336            (Projection.SetAllParameters): New. Set the projection's
1337            parameter list to the one supplied.
1338            (Projection.SetProjection): New. Set the projection's
1339            properties to those of the supplied Projection.
1340    
1341            * Thuban/UI/mainwindow.py (MainWindow.MapProjection): Set
1342            the dialog title to include the map's title.
1343            (MainWindow.LayerProjection): Set the dialog title to include
1344            the layer's title.
1345    
1346            * Thuban/UI/projdialog.py (ProjFrame.__ShowError): Consolidate
1347            error dialogs into a single method call.
1348            (ProjFrame.__VerifyButtons): Add more states to check.
1349            (ProjFrame.__GetProjection): Return the current state of an
1350            edited projection or None.
1351            (ProjFrame.__FillAvailList): Remove checks for states that
1352            shouldn't exist.
1353            (ProjFrame._OnNew): Clear all selected items and supply
1354            a projection panel if necessary.
1355    
1356            * test/test_proj.py (TestProjFile.test): Add tests for
1357            ProjFile.SetAllParameters, ProjFile.SetProjection,
1358            ProjFile.SetName.
1359    
1360    2003-04-25  Jonathan Coles   <[email protected]>
1361    
1362            * Thuban/UI/projdialog.py (ProjFrame.__FillAvailList): Now
1363            takes an optional argument to select the current projection.
1364            This does not guarantee that the item is visible due to
1365            limited wxWindows functionality. Fixes RTBug #1821.
1366    
1367    2003-04-25  Jonathan Coles   <[email protected]>
1368    
1369            * Thuban/Model/load.py (SessionLoader.start_projection): Remember
1370            the projection name and use it when constructing the Projection
1371            object.
1372    
1373            * Thuban/Model/proj.py (Projection.__init__): Change the default
1374            value for 'name' to None and then test if name is equal to None
1375            in the body of the constructor. This way the caller doesn't have to
1376            know what the default value should be. Namely, useful in load.py
1377            where we have to pick a default value if the 'name' parameter
1378            doesn't exist in the XML file.
1379    
1380            * test/test_load.py (LoadSessionTest.testLayerProjection): New.
1381            Tests a file where a layer has a projection.
1382    
1383    2003-04-25  Jonathan Coles   <[email protected]>
1384    
1385            * Thuban/Model/layer.py (Layer.TreeInfo): Add an item to the
1386            tree for projection information.
1387    
1388            * Thuban/Model/load.py (XMLReader.GetFilename): Renamed from
1389            XMLReader.GetFileName.
1390            (SessionLoader): Added support for loading projection tags that
1391            appear inside a layer.
1392    
1393            * Thuban/Model/proj.py (ProjFile): Document the class. Move
1394            back to using a list because the order of the projections in
1395            the file is important to maintain. Fixes RTbug #1817.
1396    
1397            * Thuban/Model/resource.py: Rename calls to ProjFile.GetFileName
1398            to ProjFile.GetFilename.
1399    
1400            * Thuban/Model/save.py (SessionSaver.write_layer): Save projection
1401            information.
1402    
1403            * Thuban/UI/projdialog.py (ProjFrame._OnAddToList): Renamed from
1404            ProjFrame._OnSaveAs. Removed old dead code from previous
1405            implementation.
1406            (ProjFrame._OnExport): Add support for exporting more than one
1407            projection to a single file.
1408            (ProjFrame.__FillAvailList): use string formatting (% operator)
1409            to build strings that are (partly) translated. Fixes RTbug #1818.
1410    
1411            * test/test_proj.py (TestProjFile.test): New. Tests the base ProjFile
1412            class.
1413    
1414    2003-04-24  Bernhard Herzog  <[email protected]>
1415    
1416            * po/es.po: Updated Spanish translation by Daniel Calvelo Aros
1417    
1418            * po/fr.po: New. French translation by Daniel Calvelo Aros
1419    
1420            * Thuban/UI/projdialog.py (ProjFrame._OnSaveAs): Don't translate
1421            empty strings.
1422    
1423    2003-04-24  Jonathan Coles   <[email protected]>
1424    
1425            * Thuban/Model/layer.py (Layer.GetProjection): New. Needed to
1426            implement the interface that the ProjFrame dialog expects.
1427    
1428            * Thuban/Model/proj.py (Projection.SetName): New. Allows the
1429            name of the projection to be changed.
1430            (ProjFile): Use a dictionary instead of a list so that removing
1431            projections is easier and we are sure about uniqueness.
1432            (ProjFile.Remove): Remove the given projection object.
1433    
1434            * Thuban/Model/resource.py (GetSystemProjFiles, GetUserProjFiles):
1435            Return a list with only one projection file instead of searching for
1436            any projection file. This simplifies many things if the user can
1437            only have one system file and one user file.
1438    
1439            * Thuban/UI/classgen.py: Change all references to
1440            genCombo to genChoice.
1441    
1442            * Thuban/UI/mainwindow.py: Add a Projection option under the
1443            layer menu.
1444            (MainWindow.LayerProjection): New. Open up a projection window
1445            for a layer.
1446    
1447            * Thuban/UI/projdialog.py: Large changes to how the dialog is
1448            laid out. Use three panels instead of one. One for the list of
1449            projections, one for the edit controls, and one for the buttons.
1450            Fixed resizing problems so that the dialog resizes correctly
1451            when the projection panel changes. Added import/export, save, and
1452            new buttons/functionality.
1453    
1454    2003-04-24  Bernhard Herzog  <[email protected]>
1455    
1456            First step towards table management. Introduce a simple data
1457            abstraction so that we replace the data a layer uses more easily
1458            in the next step.
1459    
1460            * Thuban/Model/data.py: New file with a simple data abstraction
1461            that bundles shapefile and dbffile into one object.
1462    
1463            * Thuban/Model/session.py (Session.OpenShapefile): New method to
1464            open shapefiles and return a shape store object
1465    
1466            * Thuban/Model/layer.py (Layer.__init__): Pass the data as a store
1467            object instead of a shapefile filename. This introduces a new
1468            instance variable store holding the datastore. For intermediate
1469            backwards compatibility keep the old instance variables.
1470            (open_shapefile): Removed. No longer needed with the shape store.
1471            (Layer.SetShapeStore, Layer.ShapeStore): New methods to set and
1472            get the shape store used by a layer.
1473            (Layer.Destroy): No need to explicitly destroy the shapefile or
1474            table anymore.
1475    
1476            * Thuban/UI/mainwindow.py (MainWindow.AddLayer)
1477            (MainWindow.AddLayer): Use the session's OpenShapefile method to
1478            open shapefiles
1479    
1480            * Thuban/Model/load.py (ProcessSession.start_layer): Use the
1481            session's OpenShapefile method to open shapefiles
1482    
1483            * test/test_classification.py
1484            (TestClassification.test_classification): Use the session's
1485            OpenShapefile method to open shapefiles and build the filename in
1486            a more platform independed way
1487    
1488            * test/test_layer.py (TestLayer.setUp, TestLayer.tearDown):
1489            Implement to have a session to use in the tests
1490            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
1491            (TestLayer.test_point_layer, TestLayer.test_empty_layer): Use the
1492            session's OpenShapefile method to open shapefiles
1493            (TestLayerLegend.setUp): Instantiate a session so that we can use
1494            it to open shapefiles.
1495            (TestLayerLegend.tearDown): Make sure that all references to
1496            layers and session are removed otherwise we may get a resource
1497            leak
1498    
1499            * test/test_map.py (TestMapAddLayer.test_add_layer)
1500            (TestMapWithContents.setUp): Instantiate a session so that we can
1501            use it to open shapefiles.
1502            (TestMapWithContents.tearDown): Make sure that all references to
1503            layers, maps and sessions are removed otherwise we may get a
1504            resource leak
1505            ("__main__"): use support.run_tests() so that more info about
1506            uncollected garbage is printed
1507    
1508            * test/test_save.py (SaveSessionTest.testSingleLayer): Use the
1509            session's OpenShapefile method to open shapefiles
1510            ("__main__"): use support.run_tests() so that more info about
1511            uncollected garbage is printed
1512    
1513            * test/test_selection.py (TestSelection.tearDown): Make sure that
1514            all references to the session and the selection are removed
1515            otherwise we may get a resource leak
1516            (TestSelection.get_layer): Instantiate a session so that we can
1517            use it to open shapefiles.
1518            ("__main__"): use support.run_tests() so that more info about
1519            uncollected garbage is printed
1520    
1521            * test/test_session.py (TestSessionBase.tearDown)
1522            (TestSessionWithContent.tearDown): Make sure that all references
1523            to the session and layers are removed otherwise we may get a
1524            resource leak
1525            (TestSessionWithContent.setUp): Use the session's OpenShapefile
1526            method to open shapefiles
1527    
1528    2003-04-24  Jonathan Coles   <[email protected]>
1529    
1530            * Thuban/Model/load.py (XMLReader.read): Should have been checking
1531            if the file_or_filename object had the 'read' attribute.
1532    
1533    2003-04-23  Jonathan Coles   <[email protected]>
1534    
1535            * Thuban/Model/resource.py: Fixes RTbug #1813.
1536            (ReadProjFile): Add documentation about which exceptions are raised.
1537            Always pass the exceptions up to the caller.
1538            (GetProjFiles): If the directory can't be read return an empty list.
1539            If any of the proj files can't be read skip that file and go
1540            on to the next one.
1541    
1542            * test/test_proj.py: Added test cases to handle nonexistent files,
1543            unreadable files, and files that don't parse correctly.
1544    
1545    2003-04-23  Jonathan Coles   <[email protected]>
1546    
1547            Projection dialog. Allows the user to select from a list
1548            of projection templates and optionally edit them and save new ones.
1549    
1550            * Thuban/UI/projdialog.py (ProjFrame): New. Main dialog.
1551            (ProjPanel): Base class for projection specific panels.
1552            (TMPanel): Projection panel for Transverse Mercartor.
1553            (UTMPanel): Projection panel for Universal Transverse Mercartor.
1554            (LCCPanel): Projection panel for Lambert Conic Conformal.
1555            (GeoPanel): Projetion panel for Geographic Projection.
1556    
1557    2003-04-23  Jonathan Coles   <[email protected]>
1558    
1559            * Thuban/Model/load.py (XMLReader): Renamed from XMLProcessor to
1560            promote symmetry. There now exists XMLReader and XMLWriter.
1561            (XMLReader.read): New. Call to read the given file descriptor or
1562            filename.
1563            (XMLReader.close): New. Make sure the file is closed.
1564            (XMLReader.GetFileName): New. Return just the file name that is being
1565            read from.
1566            (XMLReader.GetDirectory): New. Return just the directory of the file
1567            that is being read.
1568            (XMLReader.AddDispatchers): New. Take a dictionary which contains
1569            the names of functions to call as the XML tree is parsed.
1570            (XMLReader.startElementNS): Updated to use new dispatcher dictionary.
1571            (XMLReader.endElementNS): Updated to use new dispatcher dictionary.
1572            (SessionLoader): Removed class variables start_dispatcher and
1573            end_dispatcher since this functionality is now part of a class
1574            instance. Fixes RTbug #1808.
1575            (SessionLoader.__init__): Add dispatcher functions.
1576            (load_xmlfile): Code was moved into the XMLReader.read().
1577            (load_session): Use modified SessionLoader.
1578    
1579            * Thuban/Model/map.py (Map.GetProjection): New. Returns the
1580            map's projection.
1581    
1582            * Thuban/Model/proj.py (Projection.GetParameters): Renamed to
1583            GetAllParameters.
1584            (Projection.GetParameter): Returns the value for the given parameter.
1585    
1586            * Thuban/Model/resource.py: Use XMLReader and XMLWriter.
1587            (GetProjFiles): Renamed from GetProjections. Now returns a list
1588            of ProjFile objects.
1589            (GetSystemProjFiles): Renamed from GetSuppliedProjections. Returns
1590            a list of ProjFile objects whose files are not user defined.
1591            (GetUserProjFiles): Renamed from GetUserProjections. Returns a
1592            list of ProjFile objects whose files are user defined.
1593            (ProjFileReader): Extend new XMLReader.
1594    
1595            * Thuban/Model/save.py (XMLWriter): Renamed from XMLSaver to
1596            promote symmetry.
1597    
1598            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Use a wxChoice
1599            control instead of a wxComboBox. wxChoice controls do not generate
1600            events as the uses highlights possible choices which fixes problems
1601            with resizing the dialog when the use selects an option.
1602    
1603            * Thuban/UI/classifier.py (Classifier.__init__): Use a wxChoice
1604            control instead of a wxComboBox.
1605    
1606            * Thuban/UI/mainwindow.py (MainWindow.Projection): Use new projection
1607            dialog.
1608    
1609            * test/test_proj.py (TestProjection.test): New tests for GetParameter
1610            method.
1611    
1612    2003-04-22  Bernhard Herzog  <[email protected]>
1613    
1614            * Thuban/UI/mainwindow.py: Remove some unused imports and global
1615            constants
1616    
1617            * Thuban/UI/identifyview.py (IdentifyListCtrl.selected_shape)
1618            (IdentifyGridCtrl.selected_shape): Use table, not shapetable.
1619    
1620    2003-04-17  Bernhard Herzog  <[email protected]>
1621    
1622            * Thuban/Model/layer.py: Don't import LAYER_LEGEND_CHANGED.
1623            (Layer): Update doc-string since LAYER_LEGEND_CHANGED is not used
1624            anymore.
1625            (Layer.BoundingBox, Layer.GetFieldType, Layer.NumShapes)
1626            (Layer.ShapeType, Layer.Shape): No need to call
1627            self.open_shapefile since it's always called in __init__
1628    
1629            * Thuban/UI/application.py (ThubanApplication.MainLoop): Removed.
1630            In wxPython 2.4 there's no need to extend MainLoop anymore since
1631            wxPython itself makes sure OnExit is called.
1632    
1633    2003-04-16  Jonathan Coles   <[email protected]>
1634    
1635            Initial putback of projection management code. Includes new
1636            classes to read and write projection files. The current load
1637            and save classes were abstracted a bit so they could be reused.
1638            The Projection class was extended to provide new methods and
1639            have a name.
1640    
1641            * Thuban/Model/load.py (XMLProcessor): New. Contains all the
1642            general XML reading methods that were part of ProcessSession.
1643    
1644            * Thuban/Model/proj.py (Projection.__init__): Accepts an optional
1645            name.
1646            (ProjFile): New. Represents a file that contains projection
1647            information.
1648    
1649            * Thuban/Model/resource.py: New. Contains general utilities
1650            for read and writing projection files.
1651    
1652            * Thuban/Model/save.py (XMLSaver): New. Contains all the
1653            general XML writing methods that were part of SessionSaver.
1654            (SessionSaver): Renamed from Saver.
1655    
1656            * test/test_proj.py: New test cases for the projection
1657            file read and write functions.
1658    
1659    2003-04-16  Jonathan Coles   <[email protected]>
1660    
1661            * Thuban/Model/classification.py: Use repr() around values
1662            in the ClassGroup*.__repr__() methods so it is clearer when
1663            a value is a string and when it is a number.
1664    
1665            * test/test_load.py: Rework the classification test to test
1666            that we can load old files.
1667            (testLabels): Test a file where the groups have labels.
1668    
1669    2003-04-16  Bernhard Herzog  <[email protected]>
1670    
1671            Safer implementation of the performance enhancements of the
1672            low-level renderer:
1673            
1674            * extensions/thuban/wxproj.cpp (extract_projection)
1675            (extract_pointer): Rename extract_projection to extract_pointer
1676            and redefine its purpose to return the pointer stored in a CObject
1677            returned by the object's cobject method. Update all callers.
1678            (s_draw_info, free_draw_info, draw_polygon_init): Implement the
1679            handling of these low-level parameters so that each s_draw_info
1680            instance is handled as a CObject at python level that also
1681            contains real references to the actual python objects which
1682            contain the values in the struct. Add free_draw_info as the
1683            destructor.
1684            (draw_polygon_shape): Add the py_draw_info parameter which must a
1685            cobject containing an s_draw_info pointer.
1686    
1687            * Thuban/UI/renderer.py (MapRenderer.polygon_render_param): New
1688            method to instantiat the low-level render parameter
1689            (MapRenderer.draw_shape_layer): Use the new method. Remove some
1690            commented out code.
1691            (MapRenderer.draw_polygon_shape): Make the first parameter not the
1692            layer but the low-level render parameter
1693            (ScreenRenderer.draw_shape_layer): Use the low-level render
1694            parameter.
1695    
1696    2003-04-15  Jonathan Coles   <[email protected]>
1697    
1698            * Thuban/Model/classification.py: Implemented __repr__ for
1699            the ClassGroup* classes to make debugging a bit easier.
1700            (ClassGroup.SetLabel): Check that the string is an instance
1701            of StringTypes not StringType. Accounts for Unicode strings.
1702    
1703            * Thuban/Model/color.py: Implemented __repr__ to make
1704            debugging a bit easier.
1705    
1706            * Thuban/Model/save.py (Saver.write_classification): Need to
1707            save the group label.
1708    
1709            * test/test_load.py (testClassification): New. Loads the
1710            iceland_sample_test.thuban file and checks if it was loaded
1711            correctly.
1712    
1713    2003-04-15  Jonathan Coles   <[email protected]>
1714    
1715            * extensions/thuban/wxproj.cpp (draw_polygon_init): New. Used
1716            to improve rendering performance by initializing the variables
1717            that are not change each time draw_polygon_shape() is called.
1718            The values are stored in a global struct draw_info.
1719            (draw_polygon_shape): Removed initialization code that is
1720            now in draw_polygon_init().
1721    
1722            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Make
1723            drawing initialization call to draw_polygon_init()
1724            (MapRenderer.draw_polygon_shape): Use new signature of
1725            draw_polygon_shape.
1726    
1727            * Thuban/UI/classgen.py (GenUniformPanel): Fix spin control
1728            weirdness by setting the range to (1, maxint).
1729    
1730            * Thuban/Model/classification.py (ClassGroupProperties): Make
1731            instance variables private and optimize comparison operator
1732            by first checking if the color references are the same.
1733            (ClassGroupSingleton): Make instance variables private.
1734            (ClassGroupRange): Make instance variables private.
1735    
1736            * HOWTO-Release: Filled in missing steps for releasing packages.
1737    
1738    2003-04-15  Bernhard Herzog  <[email protected]>
1739    
1740            First stab at internationalized messages:
1741    
1742            * Thuban/__init__.py (_): Implement the translation function for
1743            real using the python gettext module.
1744    
1745            * Thuban/UI/classifier.py (ClassTable.GetRowLabelValue): Don't
1746            translate empty strings.
1747    
1748            * Thuban/UI/application.py (ThubanApplication.read_startup_files):
1749            Add a missing space to a warning message
1750    
1751            * po/README: New. Notes about the management of the translation
1752            files.
1753    
1754            * po/Makefile: New. Makefile to help manage the translation files.
1755    
1756            * po/es.po: New. Spanish translation by Daniel Calvelo Aros
1757    
1758            * MANIFEST.in: Include the *.mo files in Resources/Locale and the
1759            translations and support files in po/
1760    
1761            * setup.py (data_files): Add the *.mo files to the data_files too
1762    
1763            * README: Add note about the translations when building from CVS
1764    
1765    2003-04-14  Jonathan Coles   <[email protected]>
1766    
1767            * Thuban/UI/dock.py: Fixes some window resizing problems most
1768            noticable under windows. Always assume the button bitmaps will
1769            be there. Code clean up.
1770            (DockabelWindow.Dock, DockableWindow.UnDock): Force all the
1771            images for the dock/undock button to the same images.
1772            Work around for RTbug #1801.
1773    
1774            * Thuban/UI/legend.py (LegendPanel.__init__): The toolbar should
1775            be allowed to grow within the sizer. Fixes a bug under Windows
1776            where the toolbar wasn't being drawn.
1777    
1778    2003-04-14  Frank Koormann   <[email protected]>
1779    
1780            * Resources/Bitmaps/dock_12.xpm, Resources/Bitmaps/undock_12.xpm:
1781            Updated design to try to make the button functionality more
1782            transparent.
1783    
1784    2003-04-14  Jonathan Coles   <[email protected]>
1785    
1786            * Thuban/UI/legend.py (LegendPanel.__init__): Call Create() to
1787            finalize the intialization of the panel.
1788    
1789            * Thuban/UI/dock.py (DockPanel.Create): New. Finalizes the
1790            creation of the panel. Should be the last thing called in the
1791            initializer of a subclass.
1792    
1793            * Thuban/UI/classgen.py (ClassGenDialog.__init__): Actively
1794            set the current selections in the combo boxes. This is needed
1795            under Windows.
1796    
1797            * Thuban/UI/classifier.py (Classifier.__init__): Add a top
1798            level panel to the dialog so that the background colors are
1799            consistent under Windows.
1800    
1801    2003-04-11  Jonathan Coles   <[email protected]>
1802    
1803            * Thuban/UI/classgen.py: Change color ramps to start at white
1804            not black.
1805    
1806            * Thuban/UI/legend.py: Enable/disable the legend buttons when
1807            the legend changes. Fixes RTbug #1793.
1808    
1809            * test/test_classification.py: Added test for copying of
1810            classifications.
1811    
1812    2003-04-11  Jonathan Coles   <[email protected]>
1813    
1814            * Thuban/UI/resource.py: New. Centralize the loading of resources
1815            such as bitmaps.
1816    
1817            * Thuban/UI/classgen.py (GenUniquePanel.__init__): Reordered buttons,
1818            added images to the move buttons, added 'reverse' button.
1819            (CustomRampPanel.__init__): Added images to the move buttons.
1820            (GreyRamp): New. Generates a ramp from white to black.
1821            (HotToColdRamp): New. Generates a ramp from cold to hot colors.
1822    
1823            * Thuban/UI/classifier.py: Refactored ID's from ID_CLASSIFY_* to
1824            ID_PROPERTY_*.
1825            (Classifier.__init__): Minor changes to the layout.
1826            (Classifier._OnTitleChanged): Listen for when the user edits the
1827            title and update the dialog's title and the layer's title.
1828    
1829            * Thuban/UI/dock.py: Use new bitmaps for the control buttons.
1830    
1831            * Thuban/UI/legend.py: Use new bitmaps for the control buttons.
1832            (LegendTree._OnMsgLayerTitleChanged): Change the displayed title
1833            if the layer's title changes.
1834    
1835            * Thuban/UI/mainwindow.py: Added new menu item and associated code
1836            to open a dialog to rename the map.
1837            (MainWindow): Use new resource class to import bitmaps.
1838    
1839    2003-04-11  Jonathan Coles   <[email protected]>
1840    
1841            * Resources/Bitmaps/close_12.xpm, Resources/Bitmaps/dock_12.xpm,
1842            Resources/Bitmaps/group_use.xpm, Resources/Bitmaps/group_use_all.xpm,
1843            Resources/Bitmaps/group_use_none.xpm,
1844            Resources/Bitmaps/group_use_not.xpm,
1845            Resources/Bitmaps/hide_layer.xpm,
1846            Resources/Bitmaps/layer_properties.xpm,
1847            Resources/Bitmaps/lower_layer.xpm, Resources/Bitmaps/raise_layer.xpm,
1848            Resources/Bitmaps/show_layer.xpm, Resources/Bitmaps/undock_12.xpm:
1849            New.
1850    
1851    2003-04-10  Jonathan Coles   <[email protected]>
1852    
1853            * Thuban/Model/classification.py: (ClassGroupRange.__init__):
1854            Should pass group to ClassGroup constructor.
1855    
1856    2003-04-10  Jonathan Coles   <[email protected]>
1857    
1858            * Thuban/Model/classification.py: (ClassGroup): Move all the common
1859            methods of the derived classes ([Set|Get]Properties(), __eq__, __ne__)
1860            here. Implement SetVisible(), IsVisible().
1861            (ClassGroup.__init__): Add group parameter which acts as a copy
1862            constructor.
1863    
1864            * Thuban/UI/classifier.py (ClassTable): Add a new column for the
1865            "Visible" check boxes.
1866            (Classifier): Rename the buttons and refactor the code to match
1867            the new labels.
1868    
1869            * Thuban/UI/legend.py: Classify button is now called "Properties".
1870            Refactored the code to change variable names.
1871            (LegendTree.__FillTreeLayer): Only list a group if it is visible.
1872    
1873            * Thuban/UI/mainwindow.py: MainWindow.OpenClassifier renamed to
1874            MainWindow.OpenLayerProperties. MainWindow.LayerEditProperties
1875            renamed to MainWindow.LayerEditProperties.
1876            (MainWindow.ToggleLegend): Don't include map name in legend title.
1877            (MainWindow.SetMap): Added the map name to the window title.
1878            (MainWindow.LayerFillColor, MainWindow.LayerTransparentFill,
1879            MainWindow.LayerOutlineColor, MainWindow.LayerNoOutline): Removed.
1880            Functionality is found in the layer properties dialog.
1881    
1882            * Thuban/UI/renderer.py (MapRenderer.draw_shape_layer): Only
1883            draw visible groups.
1884    
1885    2003-04-09  Jonathan Coles   <[email protected]>
1886    
1887            * Thuban/UI/classgen.py: Modifications to allow simple
1888            addition and selection of new color schemes.
1889            (MonochromaticRamp): New. Generates a ramp between two colors.
1890            (RedRamp): New. Generates a ramp of all red.
1891            (GreenRamp): New. Generates a ramp of all green.
1892            (BlueRamp): New. Generates a ramp of all blue.
1893    
1894    2003-04-09  Jonathan Coles   <[email protected]>
1895    
1896            * Thuban/Model/classification.py (Classification.__deepcopy__):
1897            Need to copy over field and fieldType attributes.
1898    
1899            * Thuban/Model/table.py (Table.field_range): New. Retrive the
1900            maximum and minimum values over the entire table for a given
1901            field.
1902            (Table.GetUniqueValues): New. Retrieve all the unique values
1903            in the table for a given field.
1904    
1905            * Thuban/UI/classgen.py: Renamed GenRangePanel to GenUniformPanel.
1906            (GenUniquePanel): New. Controls to allow the user to select
1907            which unique field values they would like in the classification.
1908            (CustomRampPanel): Code that was in ClassGenDialog that allows
1909            the user to select the properties for a custom ramp.
1910            (ClassGenerator.GenUniformDistribution): Was called GenerateRanges.
1911    
1912            * Thuban/UI/classifier.py: Removed a lot of debugging code.
1913            (Classifier._SetClassification): Callback method so that the
1914            class generator can set the classification in the grid.
1915            (ClassGroupPropertiesCtrl): New. Encapsulates the drawing and
1916            editing of a group properties class into a wxWindows control.
1917    
1918            * Thuban/UI/dock.py: It was decided that if the user closes
1919            a dockable window the window should simply hide itself. That
1920            way if the user wants to show the dock again it appears in the
1921            same place as it was when it was closed.
1922            (DockableWindow.Destroy): Call renamed method OnDockDestroy().
1923            (DockableWindow._OnButtonClose): Hide the window instead of
1924            destroying it.
1925            (DockableWindow._OnClose): Hide the window instead of
1926            destroying it.
1927    
1928            * Thuban/UI/legend.py (LegendTree): Use a private method to
1929            consistently set the font and style of the text. Fixes RTbug #1786.
1930    
1931            * Thuban/UI/mainwindow.py: Import just the Classifier class.
1932    
1933    2003-04-07  Bernhard Herzog  <[email protected]>
1934    
1935            * Thuban/UI/mainwindow.py (main_menu): Move the toggle_legend item
1936            to the map module
1937    
1938    2003-04-07  Bernhard Herzog  <[email protected]>
1939    
1940            * Thuban/UI/mainwindow.py (MainWindow.ShowSessionTree): Removed in
1941            favor of ToggleSessionTree
1942            (MainWindow.ToggleSessionTree): New method to toggle visibility of
1943            the session tree.
1944            (MainWindow.SessionTreeShown): New method to return whether the
1945            session tree is currently shown.
1946            (MainWindow.ToggleLegend): New method to toggle visibility of the
1947            legend
1948            (MainWindow.ShowLegend): Implement in terms of ToggleLegend and
1949            LegendShown
1950            (MainWindow.LegendShown): New method to return whether the legend
1951            is currently shown.
1952            (_method_command): Add checked parameter so we can define check
1953            menu items
1954            (_has_tree_window_shown, _has_legend_shown): Use the appropriate
1955            mainwindow methods.
1956            (show_session_tree, show_legend commands): Removed.
1957            (toggle_session_tree, toggle_legend commands): New commands to
1958            toggle the visibility of the dialogs
1959    
1960    2003-04-07  Jonathan Coles   <[email protected]>
1961    
1962            * Thuban/UI/classgen.py: Fix Windows problem.
1963    
1964            * Thuban/UI/dock.py: Fix Windows problem.
1965    
1966            * Thuban/UI/mainwindow.py: Use False instead of false.
1967            (MainWindow.ShowLegend): Remove unnecessary switch parameter.
1968    
1969    2003-04-07  Jonathan Coles   <[email protected]>
1970    
1971            Since we now say that the order of the groups in a classification
1972            matters, it makes sense to be able to manipulate that order. Most
1973            of the changes to Thuban/Model/classification.py are to that end.
1974    
1975            * Thuban/Model/classification.py (Classification.AppendGroup,
1976            Classification.InsertGroup, Classification.ReplaceGroup,
1977            Classification.RemoveGroup, Classification.GetGroup): Do as the
1978            names imply.
1979            (Classification.FindGroup): This was called GetGroup, but GetGroup
1980            takes an index, while FindGroup takes a value.
1981            (Classification.__deepcopy__): Copy all the groups, BUT NOT THE LAYER
1982            REFERENCE. Currently there is a cyclic reference between the layer
1983            and its classification. If the classification doesn't need to know
1984            its owning layer we can change this, since it may make sense to be
1985            able to use the same classification with different layers.
1986    
1987            * Thuban/Model/load.py: Use Classification.AppendGroup(), not AddGroup()
1988    
1989            * Thuban/UI/classgen.py: Use Classification.AppendGroup(),
1990            not AddGroup()
1991    
1992            * Thuban/UI/classifier.py: Now that we can depend on the order in
1993            a Classification and have methods to manipulate that order we don't
1994            need to use our own data structures in the grid. We can simply make
1995            the grid/table access the information they need from a copy of
1996            the classification object.
1997            (Classifier._OnCloseBtn): Event handler for when the user clicks
1998            'Close'. This is needed so if the user applies changes and then
1999            continues to change the table the user has the option of discarding
2000            the most recent changes and keeping what they applied.
2001    
2002            * Thuban/UI/mainwindow.py: Put "Show Legend" and "Show Session Tree"
2003            into the same group.
2004    
2005            * extensions/thuban/wxproj.cpp (check_version): If Thuban is compiled
2006            with a really old version of proj, PJ_VERSION won't even be defined.
2007            If it isn't defined then just compile so that the function always
2008            returns Py_False.
2009    
2010            * test/test_classification.py: Fix tests to use the renamed methods.
2011            Still need to write tests for the new methods.
2012    
2013    2003-04-04  Jonathan Coles   <[email protected]>
2014    
2015            * Thuban/UI/classifier.py (Classifier.__SelectField): Move the
2016            call to SetSelection out of the method and before the call
2017            to __SelectField in __init__. This prevents a recursion of events
2018            when _OnFieldSelect is triggered by the user.
2019    
2020    2003-04-04  Jonathan Coles   <[email protected]>
2021    
2022            * Thuban/Model/classification.py: Rename Color.None to
2023            Color.Transparent.
2024            (ClassGroupProperties.SetLineColori, ClassGroupProperties.SetFill):
2025            Don't bother copying the color, since Colors are immutable.
2026    
2027            * Thuban/Model/color.py, Thuban/Model/layer.py, Thuban/Model/load.py,
2028            Thuban/UI/classifier.py, Thuban/UI/mainwindow.py,
2029            Thuban/UI/renderer.py, Thuban/UI/view.py:
2030            Rename Color.None to Color.Transparent.
2031        
2032            * test/test_classification.py, test/test_load.py: Rename Color.None
2033            to Color.Transparent.
2034    
2035    2003-04-04  Jonathan Coles   <[email protected]>
2036    
2037            * Thuban/Model/classification.py: Fix assert calls.
2038            (ClassGroupProperties.SetLineColor, ClassGroupProperties.SetFill):
2039            Copy the color parameter rather than hold onto a reference.
2040    
2041            * Thuban/Model/color.py (Color.__copy__, Color.__deepcopy): Copy
2042            the color object.
2043            (NoColor.__copy__, NoColor.__deepcopy): Return 'self' so that we
2044            are sure there exists only one refernce to Color.None in the system.
2045            This allows us to use 'is' rather than the comparision functions.
2046            
2047            * Thuban/Model/save.py: Fix assert calls.
2048            
2049            * Thuban/UI/classifier.py: Fix assert calls.
2050            (ClassGrid._OnCellDClick): Call up to the classifier to open the
2051            dialog to edit the groups properties.
2052            (ClassGrid._OnCellResize): Make sure that the scollbars are drawn
2053            correctly if a cell is resized.
2054            (ClassTable.SetClassification): New. Changes the classification
2055            that is in the table.
2056            (ClassTable.__SetRow): Allow groups to be prepended.
2057            (Classifier): New code for opening the EditProperties and
2058            GenerateRanges dialogs.
2059            (SelectPropertiesDialog.__GetColor): Only set the color in the
2060            color dialog if the current color is not None.
2061            
2062            * Thuban/UI/dock.py: Fix assert calls.
2063            
2064            * Thuban/UI/legend.py: Fix assert calls.
2065            
2066            * Thuban/UI/renderer.py: Fix assert calls.
2067            
2068            * Thuban/UI/classgen.py (ClassGenDialog): Dialog for generating
2069            classifications.
2070            (GenRangePanel): Panel specific to range generation.
2071            (GenSingletonPanel): Panel specific to singleton generation.
2072            (ClassGenerator): Class responsible for actually generating
2073            the classification from the data gathered in the dialog box.
2074            (PropertyRamp): Generates properties whose values range from
2075            a starting property to an ending property.
2076    
2077    2003-04-03  Bernhard Herzog  <[email protected]>
2078    
2079            * test/support.py (print_garbage_information): New function that
2080            prints information about still connected messages and memory
2081            leaks.
2082            (run_suite): Removed.
2083            (run_tests): New function for use as a replacement of
2084            unittest.main in the test_* files. This one calls
2085            print_garbage_information at the end.
2086    
2087            * test/runtests.py (main): Use support.print_garbage_information
2088    
2089            * test/test_layer.py: Use support.run_tests instead of
2090            unittest.main so we get memory leak information
2091            (TestLayer.test_arc_layer, TestLayer.test_polygon_layer)
2092            (TestLayer.test_point_layer, TestLayer.test_empty_layer)
2093            (TestLayerLegend.test_visibility): Call the layer's Destroy method
2094            to fix a memory leak.
2095    
2096            * test/test_classification.py: Use support.run_tests instead of
2097            unittest.main so we get memory leak information
2098            (TestClassification.test_classification): Call the layer's Destroy
2099            method to fix a memory leak.
2100    
2101  2003-04-02  Bernhard Herzog  <[email protected]>  2003-04-02  Bernhard Herzog  <[email protected]>
2102    
2103          * extensions/thuban/wxproj.cpp (check_version, check_version_gtk):          * extensions/thuban/wxproj.cpp (check_version, check_version_gtk):

Legend:
Removed from v.595  
changed lines
  Added in v.1051

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26