1 |
|
2003-05-21 Bernhard Herzog <[email protected]> |
2 |
|
|
3 |
|
* test/test_load.py: Remove unused imports and restructure the |
4 |
|
test code |
5 |
|
(LoadSessionTest): Split into one class for each test and turn |
6 |
|
LoadSessionTest itself into the base class for all such session |
7 |
|
tests. |
8 |
|
(ClassificationTest): New base class for load tests that test |
9 |
|
classifications |
10 |
|
(TestSingleLayer, TestLayerVisibility, TestClassification) |
11 |
|
(TestLabels, TestLayerProjection, TestRasterLayer): New classes |
12 |
|
for the individual tests |
13 |
|
|
14 |
|
* test/support.py (FileLoadTestCase.filename): New base class for |
15 |
|
file loading tests |
16 |
|
|
17 |
|
2003-05-21 Jan-Oliver Wagner <[email protected]> |
18 |
|
|
19 |
|
* Resources/Projections/defaults.proj: Renamed 'Universal Transverse |
20 |
|
Mercator' to 'UTM Zone 32' as a more convenient example. |
21 |
|
Added 'Gauss Krueger Zone 6'. |
22 |
|
|
23 |
|
* Data/iceland_sample_raster.thuban: political polygon now |
24 |
|
filled transparent to have the raster image visible at once. |
25 |
|
|
26 |
|
2003-05-21 Frank Koormann <[email protected]> |
27 |
|
|
28 |
|
* Thuban/UI/mainwindow.py (MainWindow): Renamed _OnClose() back to |
29 |
|
OnClose() to keep in sync with extensions. Internally Thuban |
30 |
|
still uses "underscored" names. |
31 |
|
|
32 |
|
2003-05-20 Jonathan Coles <[email protected]> |
33 |
|
|
34 |
|
This puts back Raster layer support. These layers support projections |
35 |
|
through the GDAL library. Currently, the CVS version is being used. |
36 |
|
There are no Debian packages available although this may change soon. |
37 |
|
A GDAL driver was extended to support writing to memory rather to |
38 |
|
files. |
39 |
|
|
40 |
|
There is still some work that needs to be done, such as some error |
41 |
|
handling when loading invalid images or when there is a problem |
42 |
|
projecting the image. This putback simply checks in the majority |
43 |
|
of the work. |
44 |
|
|
45 |
|
* setup.py: Add gdalwarp library extension. |
46 |
|
|
47 |
|
* Thuban/Model/layer.py (BaseLayer.HasClassification): New. |
48 |
|
Defaults to False, but can be overridden by subclasses if they |
49 |
|
support classification. |
50 |
|
(RasterLayer): New. Defines a new layer that represents an |
51 |
|
image. |
52 |
|
|
53 |
|
* Thuban/Model/load.py (SessionLoader.__init__): Add rasterlayer |
54 |
|
tag handler. |
55 |
|
(SessionLoader.start_layer): Encode the filename. |
56 |
|
(SessionLoader.start_rasterlayer, SessionLoader.end_rasterlayer): |
57 |
|
New. Supports reading a rasterlayer tag. |
58 |
|
|
59 |
|
* Thuban/Model/map.py (Map.BoundingBox): Fix typo in comment. |
60 |
|
|
61 |
|
* Thuban/Model/save.py (XMLWriter.encode): Don't assume that we |
62 |
|
get a string in Latin1. If we get such as string convert it to |
63 |
|
unicode first, otherwise leave if alone before encoding. |
64 |
|
(SessionSaver.write_layer): Add support for writing both Layers |
65 |
|
and RasterLayers. |
66 |
|
|
67 |
|
* Thuban/Model/transientdb.py (AutoTransientTable.SimpleQuery): |
68 |
|
The right argument may not be a string, it could also be a Column. |
69 |
|
|
70 |
|
* Thuban/UI/application.py (ThubanApplication.CreateMainWindow): |
71 |
|
Make initial window size 600x400. Fixes RTBug #1872. |
72 |
|
|
73 |
|
* Thuban/UI/classifier.py (Classifier.__init__): Rearrange how |
74 |
|
the dialog is constructed so that we can support layers that |
75 |
|
do not have classifications. |
76 |
|
(Classifier._OnTry): Only build a classification if the layer |
77 |
|
supports one. |
78 |
|
|
79 |
|
* Thuban/UI/legend.py: Change all checks that a layer is an |
80 |
|
instance of Layer into checks against BaseLayer. |
81 |
|
(LegendTree.__FillTreeLayer): Only add children to a branch if |
82 |
|
the layer supports classification. |
83 |
|
|
84 |
|
* Thuban/UI/mainwindow.py (MainWindow.NewSession, |
85 |
|
MainWindow.OpenSession): Don't proceed with an action if the |
86 |
|
user chooses Cancel when they are asked to save changes. |
87 |
|
(MainWindow.AddRasterLayer): New. Open a dialog to allow the |
88 |
|
user to select an image file. Create a new RasterLayer and add |
89 |
|
it to the map. |
90 |
|
|
91 |
|
* Thuban/UI/renderer.py (MapRenderer.render_map): Add support |
92 |
|
for rendering RasterLayer layers. |
93 |
|
(MapRenderer.draw_raster_layer): Actually method that calls |
94 |
|
the GDALWarp python wrapper and constructs an image from the |
95 |
|
data returned. |
96 |
|
|
97 |
|
* Thuban/UI/tableview.py (LayerTableFrame.__init__): Change the |
98 |
|
Choices symbols to match those used in the table query method. |
99 |
|
Replace deprecated method calls on table with new method names. |
100 |
|
|
101 |
|
* Thuban/UI/view.py (MapCanvas.set_view_transform): Try to limit |
102 |
|
how small the scale can get. This still needs more testing. |
103 |
|
|
104 |
|
* extensions/thuban/bmpdataset.cpp: New, but copied from GDAL. |
105 |
|
Provides a driver to output in .bmp format. |
106 |
|
|
107 |
|
* extensions/thuban/cpl_mfile.cpp, extensions/thuban/cpl_mfile.h: |
108 |
|
New. Provides IO routines which write to memory, rather than a file. |
109 |
|
|
110 |
|
* extensions/thuban/gdalwarp.cpp: New, but basically a direct copy |
111 |
|
of the gdalwarp utility provided in GDAL. Added function calls |
112 |
|
that can be accessed from python. |
113 |
|
|
114 |
|
* Data/iceland_sample_raster.thuban: New. Sample file that uses |
115 |
|
a raster layer. |
116 |
|
|
117 |
|
* Data/iceland/island.tfw, Data/iceland/island.tif: New. Raster |
118 |
|
layer image data. |
119 |
|
|
120 |
|
* Doc/thuban.dtd: Added rasterlayer attribute definition. |
121 |
|
|
122 |
|
* test/test_layer.py, test/test_load.py, test/test_save.py: Added |
123 |
|
tests associated with the raster layer code. |
124 |
|
|
125 |
|
* test/test_transientdb.py |
126 |
|
(TestTransientTable.test_auto_transient_table_query): Added a test |
127 |
|
for using a Column object as the "right" parameter to a query. |
128 |
|
|
129 |
|
2003-05-19 Frank Koormann <[email protected]> |
130 |
|
|
131 |
|
* Thuban/version.py (get_changelog_date): |
132 |
|
Catch exceptions if ChangeLog does not exist. |
133 |
|
|
134 |
|
* Thuban/UI/view.py (MapCanvas.Export): Bugfix |
135 |
|
|
136 |
2003-05-19 Frank Koormann <[email protected]> |
2003-05-19 Frank Koormann <[email protected]> |
137 |
|
|
138 |
Extended version information for Thuban |
Extended version information for Thuban |