-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog.1
2642 lines (1795 loc) · 88 KB
/
ChangeLog.1
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
/*
See ChangeLog file for newer changes
====================================
1.3.28 2001-11-30
C API to gamalib C++ classes and functions (see gamalib/c/api/capi_demo.c)
******************************************
- Functions for printing formatted output were moved from
gamaprog/linux/gama/review
to new location
gamalib/local/results/text.
It is planned for future versions to produce adjustment results
in XML (functions in directory local/results/xml) and current
text functions shell be rewritten to process the XML data as
their input
1.3.27 2001-11-28
- bug in GKFparser / zero reference standard deviation m0 etc. in
XML input (Jan Pytel)
- program `slovnikar' changed to generate all undefined texts set to
"internal error : program must call function set_gama_language()"
1.3.26 2001-11-24
- slope distances with corresponding zenith angles are used to fake
horizontal distances when computing approximate coordinates xy
(internaly in class Acord)
- GKFparser class member functions
double implicit_stdev_distance(double d) const;
double implicit_stdev_direction() const;
double implicit_stdev_angle() const;
declared to be public (were private)
1.3.25 2001-11-22
- bug in `approximate coordinates' (when creating a local
approximate coordinates object all observations were copied and
not only horizontal observations, ie not only horizontal
distances, directions and angles)
diff -r1.2 g2d_coordinates.h
137c137
< OD.for_each(Observation::CopyTo(SM));
---
> OD.for_each(Observation::CopyHorizontalTo(SM));
1.3.24 2001-11-17
- added directory gamalib/c/api for C API interface functions to
gamalib and basic functions for handling GaMaLib C++ exceptions
from C.
Include <gamalib/c_api.h> for C API interface to GaMaLib
- program gama doesn't cut off input characters before tag
<?xml...?> and after </gama-xml> tag (from this version, this must
be done outside `gama')
- into function GKFparser::error(const char* text) added test
diff -r1.20 gkfparser.h
169a170,172
> // store only the first detected error
> if(errCode) return 1;
When debugging C API to GaMaLib, C program `capi_demo' reported
different error messages then `gama'. The reason was that `gama'
reads XML input by lines and C `capi_demo' reads input into a
buffer (1024 chars). Expat detected the error, but continued
processing the whole buffer and thus `capi_demo' reported the
last error detected by `expat'.
1.3.23 2001-11-03
- remaining Czech comments translated to English
- subdirectory gamalib/local/nacrt was removed. "nacrt" (sketch)
contained classes for producing network sketch in xfig format and
it was used in gama only as a conditional compile. I decided to
removed it now because translating comments would not be enough,
it needs all class and function names to be translated to English
and the more, it needs update to reflect different orientation of
coordinate axes. I would like to put it back when it is all in
English but I want to discuss it with its author first (Jan Pytel
is now bussy with Qt based GUI and "sketch" can wait)
- added warning message (appended to network description) if
obsoleted GaMa XML attributes are used (see GKFparser.cpp)
- renamed Format class members (output precisions in fixed format):
diff -r1.2 format.h # cvs diff ... edited/shorten
33,35c33,35
< static int souradnice_p;
< static int grady_p;
< static int str_chyby_p;
---
> static int coordinates_p;
> static int centesimal_degrees_p;
> static int standard_deviations_p;
39c39
< static int sour_p(int n = souradnice_p)
---
> static int coord_p(int n = coordinates_p)
45c45
< static int grad_p(int n = grady_p)
---
> static int gon_p(int n = centesimal_degrees_p)
51c51
< static int str_p(int n = str_chyby_p)
---
> static int stdev_p(int n = standard_deviations_p)
1.3.22 2001-11-02
- Former (sub)library Median is now considered to be integral part of
GaMaLib,
extern const char* GaMaLib_Median_version;
is no longer used. Here comes the English translation of Median
changelog (zmeny.cpp):
# 0.7.6 2000-07-18
# - renamed classes PointData a ObservationList; see changes
# in gamalib-1.1.09 and following (AC)
# 0.7.5 2000-04-26
# - added blocks try/catch in methods of Vypocet, see
# g_fce.cpp (AC)
# 0.7.4 1999-12-12
# - removed conditional compile directives NonStdCpp and
# similar minor changes.
# - a change in Vyber_reseni::Vypocet()
# 0.7.3 1999-07-09
# - removed func. PtrSmer etc. see GaMaLib 0.9.14 (AC)
# 0.7.2 1999-07-06
# - pribl_b.h / function ZnameStan(SezMer::const_iterator)
# For testing of orientation shift must be called function
# test_z(int), testing the number of orientation shifts is
# not correct (AC)
# 0.7.1 1999-06-18
# - bug: infinite loop in PriblSour::Vypocetni_cyklus()
# 0.7.0 1999-06-15
# - removed a bug in multiple orientation shifts
# 0.6.1 1999-05-31
# - removed a lesser bug in PriblSour::Pocitej_vetknuti()
# 0.6.0 1999-05-29
# - into class PriblSour added functions: SezMer Vypoctene()
# returns list of computed points; SezCB Nevypoctene() list
# of points for which compution of coordiantes failed
# 0.5.0 1999-05-23
# - Long jump in version numbering. Basic functionality is
# more or less finished, can cope with "inserted" (sticked
# in) configurations. For transformation from local
# coordinate system, similarity transformation with minimum
# of identical points is used.
# 0.1.0 1999-02-21
# - added class PriblSour; only inserted polygons (travers)
# are missing
# 0.0.6 1999-02-17
# - corrected bug in Kruznice::Vypocet() (double value of
# angles was used)
#
# 0.0.5 1998-08-18
# - PriblSeznam renamed to PriblSour, general method Vypocet
# [computation] for all unknowns, point list, single point;
# interface for approximate coordinates should be stable from
# now
# 0.0.4 1998-08-02
# - Change in computation of resulting coordinates; median is
# used instead of average
# 0.0.3
# - another constructor and method Vypocet() with different
# number of parameters in Pribl_bod
# 0.0.2
# - Dynamic_cast removed and functions PtrDelka(), PtrSmer() and
# PtrUhel() are used instead, see GaMaLib 0.4.0. added #ifndef
# NonStdCpp for namespaces.
# 0.0.1 1998-06-28
# - GaMaLib_Median changelog started by Jiri Vesely
-- removed filese gamalib/local/median/zmeny.[h|cpp] (median
changelog).
-- in subdirectory median *.[h|cpp] files g_fce, g_ulohy, pribl_b,
pribl_s and vyjimky renamed to g2d_helper, g2d_cogo,
g2d_point, g2d_coordinates and g2d_exception
See median/README_cvs_diff.txt for details (in gamalib-1.3.22.tgz)
1.3.21 2001-10-29
- gmatvec version 0.9.14
- in ChangeLog (this file) all remaining Czech texts were
translated to English. Next step is going to be thorough revision
of GaMa sources -- all Czech comments will be translated.
- a minor change (typo) in review "test of linearization ..."
- in constructor PointID::PointID(const char*) allowed zero
pointers (Jan Pytel). The question is if it wouldn't be better to
throw an exception?
1.3.20 2001-09-05
- one more change in gamalib/xml/encoding.cpp to avoid warning
message:
RCS file: /home/CVS/gama/gamalib/xml/encoding.cpp,v
retrieving revision 1.5
diff -r1.5 encoding.cpp
332c332,338
< static int itab=iso_8859_2_unicode((int*)tab);
---
> // static int itab=iso_8859_2_unicode((int*)tab);
> static bool init_tab = true;
> if (init_tab)
> {
> iso_8859_2_unicode((int*)tab);
> init_tab = false;
> }
1.3.19 2001-09-05
- a lot of changes by Jan Pytel needed to compile with new version
of g++ (gcc version 2.96 20000731 / Red Hat Linux 7.1 2.96-81);
see cvs-diff-1.3.18-1.3.19.txt
- and some other minor changes needed to compile with Microsoft
compiler; no problems with Borland compiler as usual (see
make-bc-1.3.19.txt and make-msc-1.3.19.txt)
1.3.18 2001-08-25
- for `inconsistent' coordinate systems sing of y coordinates are
changed and the sign is reversed on output
Index: gamaprog/linux/gama/review/adjusted_unknowns.h
===================================================================
RCS file: /home/CVS/gama/gamaprog/linux/gama/review/adjusted_unknowns.h,v
retrieving revision 1.11
diff -r1.11 adjusted_unknowns.h
37a38,39
>
> const int y_sign = Consistent(IS->PD, IS->OD) ? +1 : -1;
123c125
< out << b.y() << " ";
---
> out << y_sign*b.y() << " ";
125c127
< out << (x(i+1)/1000) << " ";
---
> out << y_sign*(x(i+1)/1000) << " ";
127c129
< out << (b.y()+x(i+1)/1000) << " ";
---
> out << y_sign*(b.y()+x(i+1)/1000) << " ";
223c225,227
< Double z = ( k->orientation() )*R2G;
---
> Double z = y_sign*( k->orientation() )*R2G;
> if (z < 0 ) z += 400;
> if (z > 400) z -= 400;
229,230c233,234
< out << x(i)/10000 << " ";
< z += x(i)/10000;
---
> out << y_sign*x(i)/10000 << " ";
> z += y_sign*x(i)/10000;
Index: gamaprog/linux/gama/review/error_ellipses.h
===================================================================
RCS file: /home/CVS/gama/gamaprog/linux/gama/review/error_ellipses.h,v
retrieving revision 1.6
diff -r1.6 error_ellipses.h
39a40,41
> const int y_sign = Consistent(IS->PD, IS->OD) ? +1 : -1;
>
126a129,132
> if (y_sign == -1)
> {
> alfa = 2*M_PI - alfa;
> }
162c168
< Double dy = x(i+1);
---
> Double dy = y_sign*x(i+1);
1.3.17 2001-08-20
- added classes LocalCoordinateSystem and AngularObservations
1.3.16 2001-08-05
- enhanced version of computation of approximate heights by Jan Pytel
- removed bug in the counts of computed coordinates (see class Acord)
1.3.15 2001-07-27
- term "empirical" replaced by "aposteriori" in output texts
"elev. " "h dif "
1.3.14 2001-07-25
- added command line parameter --version
- function PointID::to_string() introduced in 1.3.13 renamed to
PointID::str() .... inspired by std::stringstream.str() etc.
- class data member LocalNetwork::SB renamed to `PD' (point data)
as well as other public member functions with Czech names
1.3.13 2001-07-23
- a bug in template <class Iterator> void TrimWhiteSpaces(Iterator& b,
Iterator& e) corrected by Jan Pytel:
RCS file: /home/CVS/gama/gamalib/intfloat.h,v
retrieving revision 1.4
diff -r1.4 intfloat.h
45d44
< bool ws, pws = false;
47,53c46,47
< {
< ws = isspace(*i);
< if (!pws && ws) z = i;
< pws = ws;
< ++i;
< }
< e = z;
---
> if (!isspace(*(i++))) z = i;
> e = z;
- new sorting scheme for PointIDs by Jan Pytel: positive integers
first and then strings (see pointid.h)
1.3.12 2001-07-22
- minor changes needed to compile with bc
1.3.11 2001-07-20
- modified version of gmatvec/svd.h is used in this version trying
to avoid problems with convergence in SVD::diagonalization();
it is not solution of the problem but just a dirty hack:
RCS file: /home/CVS/gama/gmatvec/svd.h,v
retrieving revision 1.15
diff -r1.15 svd.h
602a603,605
> bool try_to_recover = true;
> start:
>
655c658,670
< if (its++ == 30) throw Exc("No convergence in SVD");
---
> if (its++ == 30)
> if(try_to_recover)
> {
> for (int i=1; i<=n; i++)
> if (norm + ABS(sd1[i]*1e-3) == norm)
> sd1[i] = 0;
> try_to_recover = false;
> goto start;
> }
> else
> {
> throw Exc("No convergence in SVD");
> }
1.3.10 2001-07-18
- test on zero number of unknowns in LocalNetwork::vyrovnani_()
1.3.09 2001-07-15
- in gama.cpp added test for networks without unknowns (all points
fixed and no orientations)
- replace approximate z coordinate by adjusted one in refinement of
unknown parameters in iterated adjustment
1.3.08 2001-07-14
- adjusted bearings greater than 400g reduced to interval <0, 400)
- program gen-test for generating random crash test input data
(see gamaprog/linux/gama/examples/gen-test):
a) points with "singular coordinates xy" are removed before
adjustment (if all points, but one, are set fixed and the
resulting normal equations are singular)
b) check for observation sets with directions pointing to the same
target station
c) indeterminable points are detected and removed (coordinates
with standard deviation greater then 10 meters)
1.3.07 2001-07-11
- new xml output in <<operator(ostrem&, PointData&) in pobs/write.cpp
- corrected error on linearization of zenith angle (mistaken name s for d)
< Double k = 10*R2G/(s*sd*sd);
---
> Double k = 10*R2G/(d*sd*sd);
< Double pz = -k * s * s;
---
> Double pz = -k * d * d;
- linearization of slope distances
< Double s, sd;
< bearing_sdistance(PD[obs->from()], PD[obs->to()], s, sd);
---
> // Double s, sd;
> // bearing_sdistance(PD[obs->from()], PD[obs->to()], s, sd);
40,42c40,46
< Double px = ( cbod.x() - sbod.x() ) / sd;
< Double py = ( cbod.y() - sbod.y() ) / sd;
< Double pz = ( cbod.z() - sbod.z() ) / sd;
---
> Double dx = cbod.x() - sbod.x();
> Double dy = cbod.y() - sbod.y();
> Double dz = cbod.z() - sbod.z();
> Double sd = sqrt(dx*dx + dy*dy + dz*dz);
> Double px = dx / sd;
> Double py = dy / sd;
> Double pz = dz / sd;
- removed obscure functions bearing_sdistance (pobs/bearing.h)
- corrected error in Point::set_constrained_z()
- changed order of points in the review of adjusted unknowns --- points
are sorted by their IDs in this version
- added test into class GKFparser for variance-covariance matrix
to be positive definite
- added test into class Observation for identical standpoint and target
points (and similarly into class Angle for second/right target)
1.3.06 2001-07-09
- new class Acord for computation of approximate coordinates (xy,
xyz and z); current version is just a wrapper for "median" with
simple computation of unknown heights (cogo removed in this
version).
- new review of approximate coordinates
- added new function Point::active() and renamed the following
functions in Point class:
s/ set_fixed_point/ set_fixed_xy/
s/ set_free_point/ set_free_xy/
s/ set_constrained_point/ set_constrained_xy/
s/ set_fixed_height/ set_fixed_z/
s/ set_free_height/ set_free_z/
s/ set_constrained_height/ set_constrained_z/
s/ unset_network_point/ unused_xy/
s/ unset_height_point/ unused_z/
s/ unused_point/ unused/
s/ network_point/ active_xy/
s/ fixed_point/ fixed_xy/
s/ free_point/ free_xy/
s/ constrained_point/ constrained_xy/
s/ fixed_height/ fixed_z/
s/ free_height/ free_z/
s/ constrained_height/ constrained_z/
s/ height_point/ active_z/
1.3.05 2001-06-30
- optional parameter --algorith svd | gso (classes LocalNetwork
and OLS rewritten as base virtual classes to enable algoritmh
switching)
1.3.04 2001.06.26
- tag <dh/> allowed inside <obs> section (apart from <height-differences>)
- introduced constrained heights and new XML syntax for definition of
point type in adjustment <point fix="..." adj="..." />
1.3.03 2001.06.18
- minor corrections in translation of adjustment output (review.lang)
1.3.02 2001.06.16
- first version of English translation of adjustment results
1.3.01 2001.06.14
- implicit language is set to English
- nonstandard code "cz" can be used for Czech apart from standard "cs"
- dir. gamaprog/gama/linux/prehled renamed to gamaprog/gama/linux/review;
file zakladni_parametry renamed to general_parameters etc.
1.3.00 2001.06.12
######################################################
### ###
### new unstable version 1.3.xx ###
### ###
######################################################
There is no stable version following version 1.1; version 1.3.00 is
practically identical to 1.1.66. The first goal of version 1.3 is
to translate Czech adjustment output into English.
1.1.66 2001.05.08
- new function set_language (we don't use GNU gettext, but changing for
gettext should be easy if needed)
- optional parameter "--language en|cz" in the program gama (only
error messages in this version)
1.1.65 2001.05.05
- bad XML tag in pobs/local/write.cpp (was <obs at="..." must be
<obs from="...")
- bug in the output of linearization test (iterated adjustment)
1.1.64 2001.05.03
- first version of adjustment of observed vectors
Note: test of abs. terms is skipped for Coordinates and Vectors
1.1.63 2001.04.27
- the following names were renamed:
Point.test_yxz --> test_xyz
test_yx test_xy
etc. [Krovak coordinates are usually presented as (y,x) and not
(x,y) but Krovak is a local Czech coordinate system and
traditional order of its coordinates is unusual] and
smernik --> bearing
delka distance
- added structures XYZ, XY and Z for safer Point constructors (see
rgrep -I "Point::" gamalib)
- added new tags into gama-xml.dtd : s-distance, z-angle,
height-differences, dh, vectors, vec
- "single distances" and "single angles" removed from XML input,
ie. distances and angles outside the tag <obs> (GKFparser)
- class GKFparser rewritten to reflect latest chnges in DTD
suggested by Jan Kolar (Kolda)
- no identical file names (in different directories) in Makefiles;
see gamalic/local/observation_local.cpp
- [gamaprog/linux/gama/prehled/opravy_pozorovani.h] estimation of
"real errors of observed and adjusted values are calculated only
for uncorrelated observations
1.1.62 2001.04.24
- added attribute version into tag gama-xml (gama-xml.dtd).
Attribute version can be omitted in this version, the only
acceptable value is "2.0" (question: should attribute `value' be
redefined in DTD as #REQUIRED ?)
- added CVS keyword "Id:" into all source files (*.h, *.cpp)
Note: Petr Doubrava reported problems with MSC makefiles; the
source of problems are compiler switches (not clear why)
1.1.61 2001.04.21
- namespace GaMaLib_Median renamed to namespace Median (first of all
because of problems with MSC but we do not need it anyway)
- added Makefiles for Microsoft Visual C++ (first draft tested
under NT with Developers Studio 6.0 -- only static library at
this version; as I know almost nothing about windows platform,
my makefiles are undoubtedly clumsy) AC
- corrected two bugs in gama-xml.dtd (v. 2.03 -- thanks to Jan Pytel
and Jan Kolar)
1.1.60 2001.04.16
- gamalib/revision.[h|cpp] moved to gamalib/local (Jan Pytel),
similarly moved gamadata.[h|cpp], point.h and directories
gamalib/pobs and gamalib/median; in directory gamalib/ now
should be remaining no files dependent on local coordinates (?)
- added file scripts/for-all-gkf.bat for bulk computations under
windows
- removed file scripts/MrProper (now done by Makefile)
1.1.59 2001.04.14
- corrected Makefile for bcc32, revision.h a linearization.h
according to suggestions by Petr Soucek
- minor change in main Makefile (to implicitly compile all project
or print help on the first use)
1.1.58 2001.04.08
- coefficients of project equations for slope distancec and
zenith angles and function smernik_sdelka (Jan Pytel)
- changes in usage of sparse matrix of project equations Asp
Comment: output of project equations matrix is correct only
for uncorrelated observations ... new general format
is needed!
1.1.57 2001.04.01
Finished transition to new calculation of project equations and
revision of observations (from class Observation removed all methods
with relations to coordinate system)
- class NetInfo renamed to LocalNetwork (gamalib/local/network.*)
- added new directory gamalib/observation/write (similarly
gamalib/local)
1.1.56 2001.03.31
Preparation for transition to new computation of project
equations. Until now old virtual functions revision() and
linearization() are still called but now through independent classes
Revision and Linearization, which are independent on classes derived
from base class Observation. AC
- added template class SparseGeneralMatrix (directory gamalib/sparse)
for computation of project equation coefficients
- in InfoNet (temporarily?) removed working vector of weights `w'
- new class LocalNetwork (in directory gamalib/local), in future
shall replace class InfoNet; all references to InfoNet rewritten
to LocalNetWork.
- new abstract classes Revision and Linearization
- new classes LocalRevision and LocalLinearization (meanwhile
only formally; they rely on existing "revision" and
calculation of coeffificients from classes derived from Observation).
- renamed classes (and corresponding files)
SlopeDistance to S_Distance
ZenithAngle to Z_Angle
HeightDiff to H_Diff
1.1.55 2001.03.24
######################################
### ###
### GNU General Public Licence ###
### ###
######################################
1.1.54 2001.03.21
- removed forgotten `#include <vector>' in point.h (Jan Pytel)
- added observation types SlopeDistance and ZenithAngle (Jan Pytel);
meanwhile only as formal non-functioning model!
Comment: SlopeDistance derived directly from class
Observation and not from class Distance; this might
be discussed, but suppose this to be the best way (AC)
- processing of types SlopeDistance and ZenithAngle added to class
GKFparser but meanwhile not into outpue gama/prehled (AC)
1.1.53 2001.03.18
- corrected two "bugs" reported by borland compiler (in fact
I am not quite sure if they are realy bugs)
1.1.52 2001.03.17
- rewritten computation of approximate heights void
ApproximateHeights::execute()
1.1.51 2001.03.16
- debuging adjustment of leveling network (first working version)
- new names (renamed just those functions that I have changed):
NetInfo::redakce_bodu() ==> NetInfo::revision_points()
NetInfo::redakce_mereni() NetInfo::revision_observations()
NetInfo::nedef_yx() NetInfo::undefined_coordinates()
NetInfo::rovnice_oprav(.*) NetInfo::project_equations(.*)
NetInfo::test_absl_clen(.*) NetInfo::test_abs_term(.*)
- removed bug in test of linearizations (I considered just first N
observations, where N was the number of unknowns); output was
changed to show only those observations that exceeds tollerance.
1.1.50 2001.03.14
- first version of observation type "height difference" and
"coordinate differences" (ie. components of observed vectors -
not tested yet!)
- added files INSTALL a README, minor changes in
script/upgrade-GaMa, script/build-gamalib-Makefile and others
(mainly filtering out of backup files using: grep -v \# | grep -v
\~ )
1.1.49 2001.03.02
- added files ChangeLog a TODO
- removed bug in SVD (gmatvec-0.9.11)
- added function BaseOLS::cond() { return 0; } for
computation/estimate of condition number
1.1.48 2001.03.01
- added file AUTHORS (first version is not very detailed), in Makefile
added compile gamalib with algorithm GSO
1.1.47 2001.02.26
- finished transition to GNU Lesser GPL
1.1.46 2001.02.25
- added text GNU Lesser GPL (re-edited text licence to LGPL in
gamaprog and gmatvec)
- added directory gamaprog/linux/gama/examples and enhanced Makefile
with computation of example input data
1.1.45 2001.02.23
- formal changes in naming of project GaMa/GaMaLib
- tar archive gamalib-a.b.c.tgz cintains all files in directory
gamalib-a.b.c, ie. in directory gamalib-"version number"
1.1.44 2001.02.22
- in class Observation renamed method at() to from(); (in xml input
files meanwhile left at="..." as a synonym for from="...")
- preparation for introduction of new types "height differences"
and "vectors""
1.1.43 2001.02.21
- reorganization of files pobs/\*.cpp (content of files
linearization.cpp, revision.cpp and write.cpp moved to new files
direction.cpp, distance.cpp, angle.cpp and xyz.cpp; files
revision.cpp a linearization.cpp removed)
- minor chages in scripts (mainly scripts/upgrade-GaMa)
1.1.42 2001.02.12
- bug in print of "type of unknown"
1.1.41 2000.12.04
- preparation for CVS (scripts/GaMaLib_archiv and scripts/gMatVec)
- renamed member functions of class Point:
s/vloz_yx/set_yx/g
s/vloz_z/set_z/g
s/zrus_yx/unset_yx/g
s/zrus_z/unset_z/g
s/nastav_pevny_bod/set_fixed_point/g
s/nastav_urcovany_bod/set_free_point/g
s/nastav_operny_bod/set_constrained_point/g
s/nastav_dana_vyska/set_fixed_height/g
s/nastav_urcovana_vyska/set_free_height/g
s/zrus_bod_site/unset_network_point/g
s/zrus_vyskovy_bod/unset_height_point/g
s/bod_nepouzit/unused_point/g
s/bod_site/network_point/g
s/pevny_bod/fixed_point/g
s/urcovany_bod/free_point/g
s/operny_bod/constrained_point/g
s/dana_vyska/fixed_height/g
s/urcovana_vyska/free_height/g
s/vyskovy_bod/height_point/g
Comment: I had been waiting with the renaming of these functions
until final version of English tag names in input XML is
settled. It's not clear if there will be some more
changes in XML or not but there is no reason to wait any
more. Let's just hope that possible future changes won't
be principal.
1.1.40 2000.12.03
- corrected files Makefile-slovnikar, Makefile-utf8-ascii and
Build_GaMa
1.1.39 2000.11.11
- added directory gamaprog/linux and added scripts for generating
filese for borland make in directory gamaprog/borland from linux'
makefiles
- directives #include "prehled/..." changed to #include <prehled/...>
1.1.38 2000.10.09
- removed bug in function << (std::ostream& str, PointData& sez);
output of point (was wrongly at="..." instead of correct id="...")
1.1.37 2000.10.08
- added a tiny program scripts/utf8-ascii.cpp as an alternative to
recode, which is not available in slink
1.1.36 2000.10.06
- script build-doc-html changed to work both in potato and slink
- basic data structure scheme added to html documentations of classes
for handling observables
1.1.35 2000.09.21
- in XML allowed white spaces before and after numerical value of
attributes, (see intfloat.h) - corrected (unused) template function
Read_Sparse_Abw
1.1.34 2000.09.11
- change in print of adjusted observations (in the case of
"observed coordinates" I have to enable columns wider than 12
characters)
- corrected error in xml output of adjusted coordinates
- into collection ef examples added test data for sequantial
adjustment, or in other words test on input type "observed
coordinates" (after manusripta Mervart-Cimbalnik: "Vyssi geodezie 2).
Comment: pay attention to aposteriory variances
1.1.33 2000.08.29
- changed the order of indexing unknowns XYZ in project equations
(used to be YX); orientation shifts are marked as 'R' (used to be
'Z'); in the order XY are now printed adjusted coordinates to ouptut.
- removed "test on suspiciously big corrections" in function for
testing linearization errors.
1.1.32 2000.08.27
- corrected mistakes in collection of examples in descriptions
(sed!), minor improvement of script build-doc-html, removed bug
in script build-gamalib-Makefile, removed bug in gamalib_dep
(must the path to gamalib for files withous explicit path
specification)
- in virtual functions write (Observation) replaces Chzech tags
by their English equivalents
- preparation for adjustment of correlated observations
1.1.31 2000.08.23
- in scprits/Build_GaMa corrected generating of Makefile for
gama.cpp (unified with makefiles for gamalib and expat)
- gama-xml.dtd 2.00; all test converted to new format (changed
attribute `typ' to 'xy')
1.1.30 2000.08.21
- for computing of approximate values of coordinates we copy to
local working observation list only horizontal directions, angles
anf distances (see template class Observation::CopyHorizontalTo
used in template std::for_each)
- lesser changes in structure of directories, scripts etc.:
directory spript renamed to scripts; added new Makefile for
compile of expat; gamalib2html and slovnikar moved to directory
scripts.
- added scripts/gamalib_dep.cpp for computing dependences for
generating makefiles (I haven't found, how easily removed
references to system libraries as generated by g++; I would
like to generate makefile for bcc compiler in future)
- corrected two typos in gkfparser.lang and gama.lang (JV)
1.1.29 2000.08.17
- new version gmatvec 0.9.8 (transiton to g++ 2.95.2 / Debian potato)
- into template function XML_adjusted_coordinates added third parameter
bool, to control if covariance matrix of adjusted coordinates should
be writen to output or not.
- in script/build-dictionaries replace command for removal of accents
2UTF -r iso8859-2 < language.cz | cstocs il2 ascii > language.cpp