-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
11700 lines (8915 loc) · 440 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2012-06-12 13:41 manfred-e
* src/saga_core/saga_api/module.cpp: saga_api: fix gcc build error
2012-06-08 10:29 oconrad
* src/modules/grid/grid_tools/Grid_Merge.cpp,
src/modules/grid/grid_tools/Grid_Merge.h: grid_tools, mosaicking:
renamed from 'merge grids', new options added for overlapping
areas (min, max, mean, feathering/blending)
2012-06-07 15:35 oconrad
* src/saga_core/saga_gui/project.cpp,
src/saga_core/saga_gui/project.h: saga_gui, project: versioning
added (backward compatility, choosing correct symbology for
rgb-coded grids)
2012-06-07 15:33 oconrad
* src/saga_core/saga_api/parameter.cpp,
src/saga_core/saga_api/parameters.h: saga_api,
CSG_Parameters_Grid_Target: alternative init_user() function
added
2012-06-06 14:33 oconrad
* src/saga_core/saga_api/module.cpp,
src/saga_core/saga_api/module.h,
src/saga_core/saga_api/module_library.cpp,
src/saga_core/saga_api/module_library.h,
src/saga_core/saga_cmd/saga_cmd.cpp,
src/saga_core/saga_gui/res_commands.cpp,
src/saga_core/saga_gui/res_commands.h,
src/saga_core/saga_gui/wksp_module.cpp,
src/saga_core/saga_gui/wksp_module_manager.cpp: saga_api,
saga_cmd, saga_gui: creating module documentation files. related
to saga-gis-developer mailing list thread:
http://sourceforge.net/mailarchive/forum.php?thread_name=4FCEF035.3010604%40faunalia.it&forum_name=saga-gis-developer
2012-06-04 15:48 oconrad
* src/saga_core/saga_gui/wksp_grid.cpp,
src/saga_core/saga_gui/wksp_grid.h: saga_gui, drawing grids:
multi-processor support not for file-cached/compressed grids
2012-06-04 15:46 oconrad
* src/saga_core/saga_api/shapes_polygons.cpp: saga_api, polygon
clipping: precision bug
2012-06-04 09:43 reklov_w
* src/modules_io/gdal/io_gdal/gdal_driver.cpp: io_gdal,
gdal_driver: fix unicode issue in message output of gdal error
message
2012-06-01 15:13 oconrad
* src/modules/shapes/shapes_tools/shapes_buffer.cpp,
src/modules/shapes/shapes_tools/shapes_buffer.h: shapes_buffer:
bug fixes and improvements, using polygon offset method of
clipper library
2012-06-01 10:56 oconrad
* src/modules/shapes/shapes_tools/shapes_buffer.cpp,
src/modules/shapes/shapes_tools/shapes_buffer.h: shapes_buffer:
bug fixes and improvements, using polygon offset method of
clipper library
2012-06-01 08:43 oconrad
* src/modules/shapes/shapes_grid/Grid_Polygon_Clip.cpp,
src/modules/shapes/shapes_grid/Grid_Polygon_Clip.h: clip grid
with polygon: 'crop grid to data' is now optionally (disabled by
default)
2012-06-01 08:34 reklov_w
* src/saga_core/saga_cmd/module_library.cpp: saga_cmd: fix quoting
of parameters (with spaces)
2012-05-31 11:24 oconrad
* src/saga_core/saga_api/clipper.cpp,
src/saga_core/saga_api/shapes.h,
src/saga_core/saga_api/shapes_polygons.cpp: saga_api, polygon
clipping: simplify and buffer functions added, including a
necessary patch to clipper library (limiting number of vertices
when adding an arc)
2012-05-30 16:52 oconrad
* src/saga_core/saga_api/geo_functions.cpp: saga_api,
sg_get_crossing(): bug fix, crossing position has not been set
under certain circumstances
2012-05-30 16:51 oconrad
* src/saga_core/saga_api/clipper.cpp,
src/saga_core/saga_api/clipper.hpp: saga_api, clipper: update to
v4.8.3
2012-05-30 13:48 oconrad
* src/modules_io/gdal/io_gdal/gdal_import.cpp: io_gdal, import
grid: corrected transformation counter
2012-05-30 13:05 oconrad
* src/modules/shapes/shapes_grid/Grid_Polygon_Clip.cpp,
src/modules/shapes/shapes_grid/Grid_Polygon_Clip.h: clip grid
with polygon: clip region now also takes respect of no-data
values in supplied grids
2012-05-30 13:04 oconrad
* src/saga_core/saga_cmd/module_library.cpp: saga_cmd: file names
for output object lists can be specified now, e.g.:
saga_cmd shapes_grid 7 -POLYGONS=buf.shp -INPUT=a;b;c
-OUTPUT=a_buf;b_buf;c_buf
2012-05-30 13:00 oconrad
* src/saga_core/saga_api/module.h: saga_api, module_grid:
additional grid system functions exposed
2012-05-30 12:59 oconrad
* src/saga_core/saga_api/mat_tools.cpp,
src/saga_core/saga_api/mat_tools.h: saga_api, math_tools:
sg_get_digit_count(int number) added
2012-05-25 12:52 oconrad
* src/modules_io/gdal/io_gdal/gdal_import.cpp: gdal_import:
improved transformation options, optionally import only a subset
from multiband grids
2012-05-25 12:32 oconrad
* src/modules_io/gdal/io_gdal/gdal_driver.cpp,
src/modules_io/gdal/io_gdal/gdal_driver.h,
src/modules_io/gdal/io_gdal/gdal_import.cpp,
src/modules_io/gdal/io_gdal/gdal_import.h: gdal_import: improved
transformation options, optionally import only a subset from
multiband grids
2012-05-25 12:30 oconrad
* src/saga_core/saga_api/geo_classes.cpp,
src/saga_core/saga_api/geo_tools.h: saga_api, csg_rect: union()
function added that takes a single point (csg_point)
2012-05-25 12:29 oconrad
* src/saga_core/saga_api/grid.cpp: saga_api, csg_grid: default
no-data value for byte grids set to '0' (instead of '-127')
2012-05-25 08:34 oconrad
* src/modules/grid/grid_spline/Gridding_Spline_Base.cpp:
multi-level-b-spline: point-loading bug fixed
2012-05-24 06:55 manfred-e
* src/modules/grid/grid_analysis/Grid_AHP.cpp: modules:
grid_analysis: Analytical Hierarchy Process: calculation fix
2012-05-21 14:22 reklov_w
* src/modules/pointcloud/pointcloud_tools/pc_reclass_extract.cpp,
src/modules/pointcloud/pointcloud_tools/pc_reclass_extract.h: PC
Reclassifier/Subset Extractor: optionally create new attribute
with reclassification result
2012-05-14 10:34 reklov_w
* src/saga_core/saga_api/dataobject.cpp: saga_api: changing default
NoData range of data objects from -99999;-999 to -99999;-99999 in
order to avoid problems with marine data
2012-05-14 10:04 reklov_w
* src/modules/shapes/shapes_tools/Makefile.am,
src/modules/shapes/shapes_tools/QueryParser.cpp,
src/modules/shapes/shapes_tools/QueryParser.h: shapes_tools: fix
Makefile.am and remove depreciated files
2012-05-14 09:58 oconrad
* src/saga_core/saga_gui/wksp_table.cpp: saga_gui, wksp_table: bug
fix, parameter initializing
2012-05-11 14:28 oconrad
* src/saga_core/saga_api/table_io.cpp: saga_api, table_io:
recognizing no-data values loading/saving text tables
2012-05-11 14:27 oconrad
* src/modules/table/table_tools/Join_Tables.cpp,
src/modules/table/table_tools/Join_Tables.h,
src/modules/table/table_tools/MLB_Interface.cpp: table_tools: a
simple 'append columns from other table' tool
2012-05-11 13:47 reklov_w
* src/saga_core/saga_gui/wksp_data_manager.cpp: saga_gui: fix error
if saga_gui is closed and saga_gui.cfg file is not existing
("can't remove file")
2012-05-10 11:37 oconrad
* src/modules/grid/grid_calculus/Grid_Calculator.cpp: saga_api,
formula parser: get_value() made const, easier usage for parallel
processing
2012-05-10 11:36 oconrad
* src/modules/grid/grid_calculus/Grid_Plotter.cpp,
src/modules/pointcloud/pointcloud_tools/pc_attribute_calculator.cpp,
src/modules/table/table_calculus/Fit.cpp,
src/saga_core/saga_api/mat_formula.cpp,
src/saga_core/saga_api/mat_tools.h,
src/saga_core/saga_api/mat_trend.cpp: saga_api, formula parser:
get_value() made const, easier usage for parallel processing
2012-05-10 11:25 reklov_w
* src/modules_io/shapes/io_shapes/pointcloud_to_text_file.cpp,
src/modules_io/shapes/io_shapes/pointcloud_to_text_file.h: point
cloud to text file: enhancements (speed)
2012-05-10 11:16 oconrad
* src/saga_core/saga_gui/wksp_pointcloud.cpp: saga_gui, pointcloud:
display correct settings for rgb coded attribute
2012-05-10 10:04 reklov_w
* src/saga_core/saga_gui/wksp_pointcloud.cpp: saga_gui,
wksp_pointcloud.cpp: fix parameter enable for RGB coloring
2012-05-07 14:23 manfred-e
* src/modules/grid/grid_analysis/owa.cpp: modules: grid_analysis:
ordered weight average: bug fix (ignored values/grids)
2012-05-03 09:33 reklov_w
* src/saga_core/saga_cmd/module_library.cpp: saga_cmd /
module_library.cpp: set svn eol keyword and convert to LF
2012-05-03 09:31 reklov_w
* src/saga_core/saga_cmd/module_library.cpp: saga_cmd: change usage
of wxCommandLineParse (SetCmdLine) to prevent re-setting of
locale; fixes unintended usage of ',' as decimal separator during
argument parsing and module execution
2012-05-02 15:37 oconrad
* src/modules/grid/grid_gridding/Shapes2Grid.cpp,
src/modules/grid/grid_gridding/Shapes2Grid.h: grid_gridding,
shapes to grid: polygon match for either grid nodes or cells
(latter can be useful for polygon sizes around or less than the
grid cell sizes)
2012-05-02 15:35 oconrad
* src/modules/grid/grid_tools/Grid_Gaps_Resampling.cpp: grid_tools,
close gaps (resampling): prevent possible non-stop loops
2012-04-27 12:49 oconrad
* src/saga_core/saga_gui/wksp_layer.cpp: saga_gui/wksp_layer: 'save
as ...' dialog, suggests a file name
2012-04-27 12:47 oconrad
* src/modules/grid/grid_tools/Grid_Gaps_Resampling.cpp,
src/modules/grid/grid_tools/Grid_Gaps_Resampling.h: 'close gaps
with resampling' module: further options added
2012-04-27 12:45 oconrad
* src/modules/grid/grid_gridding/Shapes2Grid.cpp,
src/modules/grid/grid_gridding/Shapes2Grid.h: 'shapes2grid'
module: output of just '0/1' (data/no-data) option added (instead
of attribute values)
2012-04-27 12:43 oconrad
* src/modules/shapes/shapes_tools/shapes_extents.cpp: 'get shapes'
extent' module: get 'total extent' option added
2012-04-26 15:44 oconrad
* src/dev_tools/dev_tools.vcxproj, src/dev_tools/tl_extract.cpp:
dev_tools: updated to saga 2.1.0
2012-04-26 15:44 oconrad
* src/modules/grid/grid_tools/Grid_Gaps_Resampling.cpp,
src/modules/grid/grid_tools/Grid_Gaps_Resampling.h,
src/modules/grid/grid_tools/MLB_Interface.cpp,
src/modules/grid/grid_tools/Makefile.am,
src/modules/grid/grid_tools/grid_tools.vcxproj,
src/modules/grid/grid_tools/grid_tools.vcxproj.filters: grid tool
added: close gaps using stepwise resampling
2012-04-26 15:42 oconrad
* src/saga_core/saga_api/grid.h: saga_api/grid: is_InGrid_byPos(),
optional check for no-data
2012-04-26 15:41 oconrad
* src/saga_core/saga_api/mat_matrix.cpp,
src/saga_core/saga_api/mat_spline.cpp: saga_api: memory
allocation check
2012-04-26 12:02 reklov_w
* src/modules/grid/grid_tools/Grid_Tiling.cpp,
src/modules/grid/grid_tools/Grid_Tiling.h: Grid Tools - Tiling:
added possibility to write output (individually) to disk
2012-04-26 11:58 manfred-e
* src/modules_io/gdal/io_gdal/gdal_driver.cpp,
src/modules_io/gdal/io_gdal/gdal_export.cpp,
src/modules_io/gdal/io_gdal/gdal_export_geotiff.cpp: modules:
io_gdal: improved error handling for raster and geotiff export
2012-04-24 14:02 reklov_w
* src/modules_io/gdal/io_gdal/gdal_driver.cpp: gdal_driver.cpp: fix
string issue
2012-04-24 11:42 manfred-e
* src/saga_core/saga_gui/Makefile.am: saga_gui: fixes tracker id
3432061: hardcoded MLIBPATH
2012-04-24 09:44 manfred-e
* src/modules_io/gdal/io_gdal/gdal_driver.cpp,
src/modules_io/gdal/io_gdal/gdal_driver.h,
src/modules_io/gdal/io_gdal/gdal_export.cpp,
src/modules_io/gdal/io_gdal/gdal_export_geotiff.cpp: modules:
io_gdal: added gdal Creation Options support for raster export
2012-04-24 09:04 oconrad
* src/modules_io/table/io_table/io_table_txt.cpp: table import
(text): minor bug fix
2012-04-17 14:22 oconrad
* src/saga_core/saga_cmd/callback.cpp,
src/saga_core/saga_cmd/callback.h,
src/saga_core/saga_cmd/module_library.cpp,
src/saga_core/saga_cmd/module_library.h,
src/saga_core/saga_cmd/saga_cmd.cpp: saga_cmd: solving external
module dependencies (e.g. in ta_compound>basic ta) and some minor
optimizations
2012-04-13 09:54 oconrad
* src/modules_io/shapes/io_shapes/MLB_Interface.cpp,
src/modules_io/shapes/io_shapes/Makefile.am,
src/modules_io/shapes/io_shapes/io_shapes.vcxproj,
src/modules_io/shapes/io_shapes/io_shapes.vcxproj.filters,
src/modules_io/shapes/io_shapes/wktb.cpp,
src/modules_io/shapes/io_shapes/wktb.h,
src/saga_core/saga_api/shapes_ogis.cpp: added: import/export
simple features, well known text (wkt) format
2012-04-12 08:23 reklov_w
* src/saga_core/saga_api/geo_functions.cpp: saga_api,
geo_functions, SG_Get_Crossing: fix (avoid) precision issue in
case vertices are identical by explicit test for equality
2012-04-11 17:50 reklov_w
* src/modules/shapes/shapes_tools/shapes_generate.cpp: generate
shapes module: small bug fix for first id
2012-04-11 17:35 oconrad
* src/modules_terrain_analysis/terrain_analysis/ta_morphometry/tc_iwahashi_pike.cpp,
src/modules_terrain_analysis/terrain_analysis/ta_morphometry/tc_iwahashi_pike.h:
morphometry: terrain classification after iwahashi & pike (2007,
geomorphology)
2012-04-10 21:39 reklov_w
* src/modules/shapes/shapes_tools/MLB_Interface.cpp,
src/modules/shapes/shapes_tools/Makefile.am,
src/modules/shapes/shapes_tools/shapes_generate.cpp,
src/modules/shapes/shapes_tools/shapes_generate.h,
src/modules/shapes/shapes_tools/shapes_tools.vcxproj,
src/modules/shapes/shapes_tools/shapes_tools.vcxproj.filters: new
module "generate shapes" added to MLB Shapes-Tools: Allows to
generate point, line or polygon shapes from a table with x and y
coordinates and an identifier
2012-04-05 09:55 oconrad
* src/modules_terrain_analysis/terrain_analysis/ta_morphometry/MLB_Interface.cpp,
src/modules_terrain_analysis/terrain_analysis/ta_morphometry/Makefile.am,
src/modules_terrain_analysis/terrain_analysis/ta_morphometry/ta_morphometry.vcxproj,
src/modules_terrain_analysis/terrain_analysis/ta_morphometry/ta_morphometry.vcxproj.filters,
src/modules_terrain_analysis/terrain_analysis/ta_morphometry/tc_iwahashi_pike.cpp,
src/modules_terrain_analysis/terrain_analysis/ta_morphometry/tc_iwahashi_pike.h:
morphometry: terrain classification after iwahashi & pike (2007,
geomorphology)
2012-04-05 08:42 oconrad
* src/modules_io/esri_e00/io_esri_e00/ESRI_E00_Import.cpp: e00
import: bug fixes, memory leaks
2012-04-05 08:36 oconrad
* src/modules_geostatistics/geostatistics/geostatistics_kriging/semivariogram.h:
modules: 'geostatistics' renamed to 'spatial and geostatistics'
(for correctness)
2012-03-30 14:21 oconrad
* src/modules/grid/grid_filter/Filter_Rank.cpp,
src/modules/grid/grid_filter/Filter_Rank.h: grid_filter/rank
filter: bug fix and performance improvements
2012-03-30 14:20 oconrad
* src/saga_core/saga_api/grid.h,
src/saga_core/saga_api/grid_system.cpp: saga_api,
grid_cell_adressor: squared 'radius' option added
2012-03-30 14:19 oconrad
* src/modules_geostatistics/geostatistics/geostatistics_grid/MLB_Interface.cpp,
src/modules_geostatistics/geostatistics/geostatistics_kriging/MLB_Interface.cpp,
src/modules_geostatistics/geostatistics/geostatistics_points/MLB_Interface.cpp,
src/modules_geostatistics/geostatistics/geostatistics_regression/MLB_Interface.cpp:
modules: 'geostatistics' renamed to 'spatial and geostatistics'
(for correctness)
2012-03-29 15:38 oconrad
* src/saga_core/saga_gui/wksp_grid.cpp,
src/saga_core/saga_gui/wksp_layer.cpp,
src/saga_core/saga_gui/wksp_pointcloud.cpp,
src/saga_core/saga_gui/wksp_shapes.cpp: saga_gui: colour
classification parameters, further enhancements
2012-03-29 15:37 oconrad
* src/saga_core/saga_gui/dlg_base.cpp,
src/saga_core/saga_gui/dlg_list_grid.cpp: saga_gui: grid list
dialog, grid system selector visibility bug
2012-03-29 09:06 reklov_w
* src/modules_geostatistics/geostatistics/geostatistics_grid/GSGrid_Zonal_Statistics.cpp,
src/modules_geostatistics/geostatistics/geostatistics_grid/GSGrid_Zonal_Statistics.h:
Zonal Grid Statistics: fix bug 'Zonal Grid Statistics - noData
handling - ID: 3512321' and further improvements
2012-03-28 17:17 oconrad
* src/modules/table/table_tools/MLB_Interface.cpp,
src/modules/table/table_tools/Makefile.am,
src/modules/table/table_tools/table_change_field_type.cpp,
src/modules/table/table_tools/table_change_field_type.h,
src/modules/table/table_tools/table_tools.vcxproj,
src/modules/table/table_tools/table_tools.vcxproj.filters,
src/saga_core/saga_api/table.cpp,
src/saga_core/saga_api/table_io.cpp,
src/saga_core/saga_gui/helper.cpp,
src/saga_core/saga_gui/res_commands.cpp,
src/saga_core/saga_gui/res_commands.h,
src/saga_core/saga_gui/view_table.cpp,
src/saga_core/saga_gui/view_table.h,
src/saga_core/saga_gui/view_table_control.cpp,
src/saga_core/saga_gui/view_table_control.h: saga_api, saga_gui,
table_tools: change a table field's data type (e.g. from integer
to text)
2012-03-27 16:41 oconrad
* src/saga_core/saga_gui/active_legend.cpp,
src/saga_core/saga_gui/active_legend.h,
src/saga_core/saga_gui/wksp_grid.cpp,
src/saga_core/saga_gui/wksp_layer.cpp,
src/saga_core/saga_gui/wksp_layer_classify.cpp,
src/saga_core/saga_gui/wksp_layer_classify.h,
src/saga_core/saga_gui/wksp_layer_legend.cpp,
src/saga_core/saga_gui/wksp_layer_legend.h,
src/saga_core/saga_gui/wksp_map.cpp,
src/saga_core/saga_gui/wksp_map.h,
src/saga_core/saga_gui/wksp_pointcloud.cpp,
src/saga_core/saga_gui/wksp_pointcloud.h,
src/saga_core/saga_gui/wksp_shapes.cpp,
src/saga_core/saga_gui/wksp_shapes_line.cpp,
src/saga_core/saga_gui/wksp_shapes_line.h,
src/saga_core/saga_gui/wksp_shapes_point.cpp,
src/saga_core/saga_gui/wksp_shapes_point.h,
src/saga_core/saga_gui/wksp_shapes_polygon.cpp,
src/saga_core/saga_gui/wksp_shapes_polygon.h,
src/saga_core/saga_gui/wksp_tin.cpp,
src/saga_core/saga_gui/wksp_tin.h: saga_gui: colour
classification and legend stuff
2012-03-16 14:03 reklov_w
* src/saga_core/saga_gui/wksp_grid.cpp: saga_gui, wksp_grid: fix
string issue
2012-03-15 16:54 oconrad
* src/modules_io/grid/io_grid_image/grid_import.cpp,
src/saga_core/saga_gui/view_histogram.cpp,
src/saga_core/saga_gui/wksp_grid.cpp,
src/saga_core/saga_gui/wksp_layer.cpp,
src/saga_core/saga_gui/wksp_layer_classify.cpp,
src/saga_core/saga_gui/wksp_layer_classify.h,
src/saga_core/saga_gui/wksp_layer_legend.cpp,
src/saga_core/saga_gui/wksp_shapes.cpp: saga_gui:
discrete/graduated colour classification implemented (graduated
now interpolates colours from discrete palette)
2012-03-15 16:51 oconrad
* src/modules_projection/pj_proj4/pj_proj4/crs_assign.cpp: set
projection: automatic update of description tab (saga_gui)
2012-03-14 10:24 oconrad
* src/modules/shapes/shapes_polygons/Polygon_SelfIntersection.cpp:
module added: 'self-intersection' for polygons of one layer
2012-03-14 10:03 oconrad
* src/modules/shapes/shapes_polygons/MLB_Interface.cpp,
src/modules/shapes/shapes_polygons/Makefile.am,
src/modules/shapes/shapes_polygons/Polygon_SelfIntersection.cpp,
src/modules/shapes/shapes_polygons/Polygon_SelfIntersection.h,
src/modules/shapes/shapes_polygons/shapes_polygons.vcxproj,
src/modules/shapes/shapes_polygons/shapes_polygons.vcxproj.filters:
module added: 'self-intersection' for polygons of one layer
2012-03-13 15:02 oconrad
* src/modules/shapes/shapes_polygons/MLB_Interface.cpp,
src/modules/shapes/shapes_polygons/Makefile.am,
src/modules/shapes/shapes_polygons/Polygon_Clip.cpp,
src/modules/shapes/shapes_polygons/Polygon_Clip.h,
src/modules/shapes/shapes_polygons/shapes_polygons.vcxproj,
src/modules/shapes/shapes_polygons/shapes_polygons.vcxproj.filters:
shapes_polygon: polygon clipping for shapes
2012-03-13 15:00 oconrad
* src/modules_io/gdal/io_gdal/MLB_Interface.cpp,
src/modules_io/gdal/io_gdal/Makefile.am,
src/modules_io/gdal/io_gdal/io_gdal.vcxproj,
src/modules_io/gdal/io_gdal/io_gdal.vcxproj.filters,
src/modules_io/gdal/io_gdal/ogr_export_kml.cpp,
src/modules_io/gdal/io_gdal/ogr_export_kml.h: io_gdal: kml export
module, including automated projection to geographic coordinates
2012-03-12 16:17 oconrad
* src/modules_geostatistics/geostatistics/geostatistics_regression/grid_multi_grid_regression.cpp,
src/modules_geostatistics/geostatistics/geostatistics_regression/point_multi_grid_regression.cpp,
src/modules_geostatistics/geostatistics/geostatistics_regression/point_multi_grid_regression.h,
src/saga_core/saga_api/mat_regression_multiple.cpp,
src/saga_core/saga_api/mat_tools.h: saga_api,
csg_regression_multiple: optional cross validation added
2012-03-12 16:17 oconrad
* src/modules_recreations/recreations/recreations_fractals/Grid_FractalDimension.cpp,
src/modules_recreations/recreations/recreations_fractals/Grid_FractalDimension.h,
src/modules_terrain_analysis/terrain_analysis/ta_morphometry/RealArea.cpp,
src/modules_terrain_analysis/terrain_analysis/ta_morphometry/RealArea.h:
modules, geomorphometry, fractal geometry: surface area
calculation
2012-03-08 17:08 oconrad
* src/modules/grid/grid_analysis/Grid_CVA.cpp,
src/modules/grid/grid_analysis/Grid_CVA.h: change vector
analysis: reworked and improved
2012-03-06 11:09 reklov_w
* src/modules_io/shapes/io_shapes_las/las_info.cpp: LAS Info: fix
broken strings in message output (wx2.9 issue)
2012-03-01 08:31 oconrad
* src/saga_core/saga_gui/res/saga.ger.txt: saga_gui/resources:
updated german tranlation table (many thanx again to juergen
brunke)
2012-02-29 17:57 oconrad
* src/saga_core/saga_api/quadtree.cpp,
src/saga_core/saga_api/shapes.h: saga_api, quadtree: fixing linux
link error
2012-02-29 15:44 oconrad
* src/modules_io/gdal/io_gdal/gdal_import.cpp: io_gdal,
gdal_import: bug fix loading subgrids without gui (e.g. netcdf
from saga_cmd)
2012-02-29 10:38 reklov_w
* src/saga_core/saga_gui/saga.cpp: saga_gui: fix Process_Wait() to
avoid endless loop
2012-02-28 16:31 oconrad
* src/modules_geostatistics/geostatistics/geostatistics_kriging/kriging_base.cpp,
src/modules_geostatistics/geostatistics/geostatistics_kriging/kriging_base.h,
src/modules_geostatistics/geostatistics/geostatistics_kriging/kriging_ordinary.cpp,
src/modules_geostatistics/geostatistics/geostatistics_kriging/kriging_ordinary.h,
src/modules_geostatistics/geostatistics/geostatistics_kriging/kriging_ordinary_global.cpp,
src/modules_geostatistics/geostatistics/geostatistics_kriging/kriging_ordinary_global.h,
src/modules_geostatistics/geostatistics/geostatistics_kriging/kriging_universal.cpp,
src/modules_geostatistics/geostatistics/geostatistics_kriging/kriging_universal.h,
src/modules_geostatistics/geostatistics/geostatistics_kriging/kriging_universal_global.cpp,
src/modules_geostatistics/geostatistics/geostatistics_kriging/kriging_universal_global.h:
kriging interpolation: support for parallel processing
2012-02-28 16:30 oconrad
* src/saga_core/saga_api/mat_formula.cpp,
src/saga_core/saga_api/mat_tools.h: saga_api, formula parser:
support for parallel processing
2012-02-28 16:29 oconrad
* src/saga_core/saga_api/geo_functions.cpp,
src/saga_core/saga_api/geo_tools.h,
src/saga_core/saga_api/quadtree.cpp,
src/saga_core/saga_api/shapes.h: saga_api, quadtree search
engine: support for polar coordinates and parallel processing
2012-02-21 13:34 reklov_w
* src/modules/shapes/shapes_polygons/Polygon_Geometrics.cpp:
polygon properties module: bug fix (invalid parameter identifier)
in case optional output is set to [create]
2012-02-21 13:27 reklov_w
* src/modules/shapes/shapes_polygons/shape_index.cpp: shapes
indices module: bug fix to enable copying of geometry in case
optional output is set to [create]; fix division by zero (area)
2012-02-13 21:07 reklov_w
* src/saga_core/saga_api/parameters.cpp: saga_api, parameters.cpp:
eliminating gcc compiler warning: ignoring return value of ‘int
fscanf(FILE*, const char*, ...)’ and warning: ‘pParameter’ may be
used uninitialized in this function
2012-02-13 20:38 reklov_w
* src/saga_core/saga_gui/saga.cpp, src/saga_core/saga_gui/saga.h:
saga_gui: locale setting workaround for wxwidgets 2.9.3, more
comments in the sources.
2012-02-06 09:14 reklov_w
* src/saga_core/saga_api/parameters.cpp: saga_api,
parameters/Set_Parameter(): add parameter type point cloud
2012-02-03 11:38 oconrad
* src/modules/shapes/shapes_points/gps_track_aggregation.cpp,
src/modules/shapes/shapes_points/gps_track_aggregation.h:
shapes_point, gps_track_aggregation: enhanced fixed time span
option
2012-02-02 15:24 reklov_w
* src/saga_core/saga_gui/saga_frame.cpp: saga_gui: fix (wxgtk)
display of scatterplot toolbar on gui startup
2012-02-02 14:15 reklov_w
* src/saga_core/saga_gui/saga_frame.cpp: saga_gui: fix (wxgtk)
EVT_SIZE of wxMDIParentFrame by explicitly connecting (and
disconnecting) the wxObjectEventFunction. prevented a response
when resizing the main window (no redraw)
2012-02-02 10:49 reklov_w
* src/saga_core/saga_gui/saga_frame.cpp: saga_gui: fix (wxgtk)
placement of progress bar by temporary hack found in wxwidgets
statbar sample
2012-02-01 10:02 reklov_w
* src/saga_core/saga_gui/data_source_files.cpp: saga_gui,
CData_Source_Files: fix 'Gtk-CRITICAL **:
gtk_widget_set_size_request: assertion height >= -1 failed'
within wxGenericDirCtrl constructor by setting File Filter
afterwards
2012-01-31 07:33 reklov_w
* src/saga_core/saga_gui/saga_frame.cpp: saga_gui: fix event
handling of map view toolbar
2012-01-26 16:28 oconrad
* src/modules/shapes/shapes_polygons/Polygons_From_Lines.cpp: lines
to polygon conversion: optionally as one single multipolygon
object
2012-01-26 13:53 oconrad
* src/modules/shapes/shapes_points/gps_track_aggregation.cpp,
src/modules/shapes/shapes_points/gps_track_aggregation.h:
shapes_point, gps_track_aggregation: bug fixes, distance
calculation for lat/lon, enhanced time span aggregation
2012-01-26 13:51 oconrad
* src/saga_core/saga_api/geo_functions.cpp,
src/saga_core/saga_api/geo_tools.h: saga_api, geo_functions: new
function for calculation of distances in polar coordinates
(longitude/latitude)
2012-01-26 13:47 oconrad
* src/modules_io/table/io_table/io_table_txt.cpp,
src/modules_io/table/io_table/io_table_txt.h: io_table:
CTable_Text_Import_Fixed_Cols, enhanced imput option
2012-01-26 13:44 oconrad
* src/modules/grid/grid_calculus/Fuzzify.cpp: grid_calculus: bug
fix, fuzzify
2012-01-26 13:43 oconrad
* src/modules_images/modules_imagery/imagery_classification/MLB_Interface.cpp,
src/modules_images/modules_imagery/imagery_classification/Makefile.am,
src/modules_images/modules_imagery/imagery_classification/classify_supervised_polygons.cpp,
src/modules_images/modules_imagery/imagery_classification/classify_supervised_polygons.h,
src/modules_images/modules_imagery/imagery_classification/imagery_classification.vcxproj,
src/modules_images/modules_imagery/imagery_classification/imagery_classification.vcxproj.filters:
imagery_classification: supervised polygon classification added
2012-01-19 14:46 reklov_w
* src/modules/shapes/shapes_lines/line_simplification.cpp: line
simplification module: fix corrupt characters in description
string and add parameter descriptions
2012-01-18 11:08 reklov_w
* src/modules_io/grid/io_grid_image/MLB_Interface.cpp,
src/modules_io/grid/io_grid_image/grid_export.cpp: io_grid_image:
fix duplicate image handlers
2012-01-18 09:57 reklov_w
* src/saga_core/saga_cmd/module_library.cpp: saga_cmd: fix
parameter setting of cmd line parser in case of strings
2012-01-16 15:46 reklov_w
* src/saga_core/saga_cmd/callback.cpp: saga_cmd: fix corrupt
message output (callbacks)
2012-01-15 19:05 reklov_w
* src/saga_core/saga_api/api_core.cpp,
src/saga_core/saga_api/api_core.h,
src/saga_core/saga_cmd/saga_cmd.cpp,
src/saga_core/saga_gui/wksp_module_manager.cpp: saga_api,
saga_gui, saga_cmd: implementation of methods to set and get the
MAX_NUM_THREADS to use with OMP in saga_api, module library
settings in saga_gui and flag for saga_cmd
2012-01-12 15:29 oconrad
* src/saga_core/saga_api/parameter.cpp: saga_api, parameter:
copying enabled flag on assign()
2012-01-12 15:27 oconrad
* src/modules_images/modules_imagery/imagery_classification/classify_supervised.cpp,
src/modules_images/modules_imagery/imagery_classification/classify_supervised.h,
src/saga_core/saga_api/mat_tools.cpp,
src/saga_core/saga_api/mat_tools.h: saga_api, module: supervised
classification for grids
2012-01-12 12:25 oconrad
* src/saga_core/saga_api/mat_tools.cpp,
src/saga_core/saga_api/mat_tools.h: saga_api: new class added for
supervised data classification
2012-01-11 21:48 manfred-e
* src/modules_io/grid/io_grid_image/grid_export.cpp: modules:
io_grid_images: increased precision for coordinates in word files
and kml files; fixes accuray problem with lat/long projection in
combination with high resolution grids
2012-01-10 09:19 oconrad
* src/saga_core/saga_api/mat_regression_multiple.cpp: saga_api,
multiple regression: backward regression used a (slightly) wrong
degree of freedom
2012-01-09 14:37 oconrad
* src/saga_core/saga_api/mat_regression_multiple.cpp: saga_api,
multiple regression: backward regression used a (slightly) wrong
degree of freedom
2012-01-06 13:42 reklov_w
* src/saga_core/saga_api/parameters.h: saga_api, parameters.h:
revert rev1284 (include of stdint.h causes serious problems under
windows, redefining integer types), and, as problematic method
Set_Value(int Value) is not used at all, simply remove it
2012-01-05 22:54 manfred-e
* src/modules/grid/grid_gridding/Shapes2Grid.cpp,
src/modules/shapes/shapes_grid/Grid_Polygon_Clip.cpp,
src/modules/shapes/shapes_grid/Grid_Statistics_AddTo_Polygon.cpp:
modules: shapes_grid, grid_gridding: fix for missing last column
in result grids
2012-01-05 14:29 oconrad
* src/modules_contrib/garden/garden_webservices/garden_webservices.vcxproj:
garden_webservices: compiling mswvc x64 targets (fixed)
2012-01-05 14:08 oconrad
* src/saga_core/saga_api/module.cpp,
src/saga_core/saga_api/parameter.cpp,
src/saga_core/saga_api/parameter_data.cpp,
src/saga_core/saga_api/parameters.cpp,
src/saga_core/saga_api/parameters.h: saga_api, parameters: bug
fix, creating optional output data
2012-01-04 15:32 oconrad
* src/modules/shapes/shapes_polygons/Polygon_Union.cpp: module,
polygon dissolve: bug fix (dissolve all)
2012-01-04 14:53 oconrad
* src/saga_core/saga_api/parameters.cpp: saga_api,
module/parameters: input check depends on how module is managed
2012-01-04 14:52 oconrad
* src/modules_terrain_analysis/terrain_analysis/ta_channels/D8_Flow_Analysis.cpp,
src/saga_core/saga_api/table.cpp: saga_api, table: don't allow
empty field names
2012-01-04 13:54 oconrad
* src/saga_core/saga_gui/parameters_properties.cpp,
src/saga_core/saga_gui/wksp_module_manager.cpp: saga_gui:
combobox (propertygrid) assertion removed, wx to saga string
conversion
2012-01-04 11:18 reklov_w
* src/saga_core/saga_cmd/saga_cmd.cpp,
src/saga_core/saga_gui/saga.cpp: SAGA GUI, SAGA CMD: set
LC_NUMERIC locale to C in order to assure . as decimal separator
in string operations
2012-01-04 10:59 oconrad
* src/saga_core/saga_gui/wksp_data_manager.cpp,
src/saga_core/saga_gui/wksp_data_menu_file.cpp: saga_gui: recent
files menu (bug fix)
2012-01-04 10:46 oconrad
* src/saga_core/saga_api/grid_memory.cpp,
src/saga_core/saga_api/module.cpp,
src/saga_core/saga_api/parameters.cpp: saga_api: prevent modules
to crash on grid memory allocation failure
2012-01-03 10:59 manfred-e
* src/saga_core/saga_cmd/Makefile.am: saga_cmd: fix default search
path for module libraries on linux
2012-01-03 10:49 manfred-e
* src/saga_core/saga_api/parameters.h: saga_api: gcc warning
int-to-pointer-cast
2012-01-02 16:01 oconrad
* src/saga_core/saga_gui/callback.cpp,
src/saga_core/saga_gui/project.cpp,
src/saga_core/saga_gui/project.h,
src/saga_core/saga_gui/view_map_3d_image.cpp,
src/saga_core/saga_gui/view_map_3d_image.h,
src/saga_core/saga_gui/view_table_control.cpp,
src/saga_core/saga_gui/view_table_control.h,
src/saga_core/saga_gui/wksp.cpp, src/saga_core/saga_gui/wksp.h,
src/saga_core/saga_gui/wksp_data_layers.cpp,
src/saga_core/saga_gui/wksp_data_layers.h,
src/saga_core/saga_gui/wksp_data_manager.cpp,
src/saga_core/saga_gui/wksp_data_manager.h,
src/saga_core/saga_gui/wksp_data_menu_file.cpp,
src/saga_core/saga_gui/wksp_data_menu_file.h,
src/saga_core/saga_gui/wksp_grid_manager.cpp,
src/saga_core/saga_gui/wksp_grid_manager.h,
src/saga_core/saga_gui/wksp_map_buttons.cpp,
src/saga_core/saga_gui/wksp_map_buttons.h,
src/saga_core/saga_gui/wksp_module.cpp,
src/saga_core/saga_gui/wksp_module.h,
src/saga_core/saga_gui/wksp_module_manager.cpp,
src/saga_core/saga_gui/wksp_module_manager.h,
src/saga_core/saga_gui/wksp_pointcloud_manager.cpp,
src/saga_core/saga_gui/wksp_pointcloud_manager.h,
src/saga_core/saga_gui/wksp_shapes_manager.cpp,
src/saga_core/saga_gui/wksp_shapes_manager.h,
src/saga_core/saga_gui/wksp_table_manager.cpp,
src/saga_core/saga_gui/wksp_table_manager.h,
src/saga_core/saga_gui/wksp_tin_manager.cpp,
src/saga_core/saga_gui/wksp_tin_manager.h: saga_gui: string
issues
2011-12-29 17:13 manfred-e
* src/modules_images/modules_vigra/vigra/vigra_distance.cpp,
src/modules_images/modules_vigra/vigra/vigra_edges.cpp,
src/modules_images/modules_vigra/vigra/vigra_fft.cpp,
src/modules_images/modules_vigra/vigra/vigra_morphology.cpp,
src/modules_images/modules_vigra/vigra/vigra_smoothing.cpp,
src/modules_images/modules_vigra/vigra/vigra_watershed.cpp:
modules: vigra: fix wx2.9 string issues (linux)
2011-12-27 13:10 reklov_w
* src/modules_io/db/io_odbc/table.cpp: io_odbc: fix warning 'taking
address of temporary'
2011-12-27 12:53 reklov_w
* src/modules_contrib/garden/garden_webservices/wms_import.cpp:
garden_webservices, wms import: fix wx2.9 string issues (warning:
taking address of temporary)
2011-12-27 12:46 reklov_w
* src/saga_core/saga_gui/helper.cpp,
src/saga_core/saga_gui/parameters_control.cpp,
src/saga_core/saga_gui/parameters_properties.cpp,
src/saga_core/saga_gui/project.cpp,
src/saga_core/saga_gui/view_histogram.cpp,
src/saga_core/saga_gui/view_table_control.cpp,
src/saga_core/saga_gui/wksp_base_control.cpp,
src/saga_core/saga_gui/wksp_grid.cpp,
src/saga_core/saga_gui/wksp_map.cpp: saga_gui: fix wx2.9 string
issues (warning: taking address of temporary)
2011-12-27 11:59 reklov_w
* src/saga_core/saga_cmd/module_library.cpp,
src/saga_core/saga_cmd/saga_cmd.cpp: saga_cmd: fix wx2.9 string
issues (warning: taking address of temporary, warning: cannot
pass objects of non-POD type ... call will abort at runtime)
2011-12-22 15:48 reklov_w
* Makefile.am, configure.in, src/dev_tools/Makefile.am,
src/modules/grid/grid_analysis/Makefile.am,
src/modules/grid/grid_calculus/Makefile.am,
src/modules/grid/grid_calculus_bsl/Makefile.am,