forked from ecmwf/magics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
3707 lines (1892 loc) · 94.6 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
Changes in Magics++ (for developers - users should read 'NEWS')
===============================================================
These are the changes as recorded under Perforce. In 2013 the Magics code was
moved under Git.
The detailed history of changes can either be seen in Git or more user friendly
change list at
https://software.ecmwf.int/wiki/display/MAGP/Latest+News
============================================
Change 83492 on 2013/03/02 by cgs@cgs
Add CSV decoder in the python interface
Change 83485 on 2013/03/01 by cgs@cgs
Graph - Big fix in Wind Plotting
Change 83460 on 2013/03/01 by cgs@cgs
Tutorial - scaling netcdf + minput in geographical [integrate]
Change 83148 on 2013/02/20 by cgs@cgs
CurevArea - Fix issues with clipping [MAGP-152][integrate]
Change 83110 on 2013/02/19 by cgs@cgs
Legend - In metview the legend for advanced wind plotting was not reset between frame [ MAGP-204] [integrate]
Change 83097 on 2013/02/19 by cgs@cgs
Histogram - Fix setting of colours [METV-326][integrate]
Change 83071 on 2013/02/18 by cgi@cgi_metview_4
NetCDF matrix - fixed issue where automatic date Y axis was not plotting any data [METV-330]
Change 83067 on 2013/02/18 by cgm@magics_opensuse113
VERSION - 2.18.13
Change 82951 on 2013/02/14 by cgs@cgs
Axis - Precsion issue when computing ticks [MAGP-354][integrate]
Change 82936 on 2013/02/14 by cgs@cgs
Bar - implements graph_shade_dot_density and graph_shade_dot_size [MAGP-355][integrate]
Change 82924 on 2013/02/14 by cgm@magics_opensuse113
VERSION 2.18.12
Change 82766 on 2013/02/12 by cgs@cgs
Netcdf - fix problem in the setting date axis [METV-330][integrate]
Change 82645 on 2013/02/11 by cgm@magics_opensuse113
VERSION back to 2.18.11 for an other fix
Change 82642 on 2013/02/11 by cgs@cgs
Contour - test on array size [integrate]
Change 82621 on 2013/02/10 by cgm@magics_opensuse113
VERSION 2.18.12
Change 82525 on 2013/02/07 by cgs@cgs
Backward compatiblity - map_coastline_resolution was not pass to Magics [integrate]
Change 82474 on 2013/02/06 by cgs@cgs
Obs - ignore missing data - clip observations [MAGP-243][integrate]
Change 82317 on 2013/01/31 by cgs@cgs
Epsgram - fix automatic title in EpsXml ( used in MACC project) [MAGP-349][integrate]
Change 82286 on 2013/01/29 by cgm@magics_opensuse113
VERSION 2.18.11
Change 82271 on 2013/01/29 by cgs@cgs
Graph- increase default values for suppress_above and below parameters [MAGP-346][integrate]
Change 82262 on 2013/01/29 by cgs@cgs
Legend - adjust layout for wind legend [MAGP-347][integrate]
Change 82209 on 2013/01/28 by cgs@cgs
Contouring - small fix in the area computation [MAGP-342][integrate]
Change 82203 on 2013/01/26 by cgm@magicsIBM
COMPILE add options for aix
Change 82160 on 2013/01/24 by cgm@magics_opensuse113
VERSION 2.18.10
Change 82081 on 2013/01/22 by cgs@cgs
epsgram - update templates [MAGP-340]
Change 82072 on 2013/01/22 by cgs@cgs
epsgram - fix problem in eps template [MAGP-340]
Change 82010 on 2013/01/21 by cgs@cgs
fix bug in intergrate
Change 81958 on 2013/01/17 by cgs@cgs
Contouring - improve shading of falt fields [MAGP-306][integrate]
Change 81939 on 2013/01/17 by cgs@cgs
Contouring - Small fix in IntervalSelection [MAGP-336]
CartesianProjection - Fix bug in setting logarithmic axis [MAGP-332]
Change 81907 on 2013/01/16 by cgs@cgs
Contouring - Fix unwanted isolines [MAGP-334][integrate]
Change 81877 on 2013/01/15 by cgs@cgs
Netcdf - Fix in date setting [MAGP-333][integrate]
Change 81866 on 2013/01/14 by cgs@cgs
Date Axis - reverse date implemented [MAGP-312][integrate]
Change 81864 on 2013/01/14 by cgs@cgs
Axis - fix bug in months axis [MAGP-325][integrate]
Change 81862 on 2013/01/14 by cgs@cgs
Contouring : adjsutemnt of the IntervalList method [MAGP-317][integrate]
Change 81858 on 2013/01/14 by cgs@cgs
GridShading- Fix bug in CartesianView [MAGP-314][integrate]
Change 81854 on 2013/01/14 by cgs@cgs
Grib - ScanningMode was ignored foar regulargaussian [MAGP-311] [integrate]
Change 81848 on 2013/01/14 by cgs@cgs
Netcdf - Fix pb in XYMatrix using date [MAGP-331][integrate]
Change 81846 on 2013/01/14 by cgs@cgs
Netcdf : wrong matrix intilalisation when using a sub-area [MAGP-308][integrate]
Change 81838 on 2013/01/14 by cgm@magics_opensuse113
DRIVERS - remove 'cout'
Change 81836 on 2013/01/11 by cgs@cgs
Metview-Printing : fix bug when using multiple drivers [integrate]
Change 81808 on 2013/01/10 by cgs@cgs
Legend - missing legend in metview [MAGP-329][integrate]
Change 81805 on 2013/01/10 by cgs@cgs
Shading - Fix random shading in Metview [MAGP-328][integrate]
Change 81792 on 2013/01/10 by cgr@cgr
Qt driver: When font settings are used - text layout breaks MAGP-326
Change 81709 on 2013/01/07 by cgs@cgs
NetcdfDecoder - fix pb in getting the value for mssing data. [MAGP-319][integrate]
Change 81597 on 2012/12/28 by cgm@magicsIBM
COMPILE AIX disable shared library build (which caused 'magmlx' to fail)
Change 81534 on 2012/12/20 by cgi@cgi_metview_4
Axis: reduced the maximum number of geo axis labels from 20 to 10 in order to avoid overlapping [MAGP-315]
Change 81528 on 2012/12/20 by cgm@magics_opensuse113
DRIVERS - Correct possitioning of text around symbols [MAGP-177]
Change 81524 on 2012/12/19 by cgm@magics_opensuse113
DRIVERS - PS support rotated text if it contains special characters [MAGP-304]
Change 81523 on 2012/12/19 by cgm@magics_opensuse113
VERSION - 2.18.9
Change 81516 on 2012/12/19 by cgi@cgi_metview_4
NetCDF: fixed issue where some netCDF matrices were throwing an exception because of problems with floating-point precision. It's worth keeping an eye on this though. [MAGP-313]
Change 80682 on 2012/12/12 by cgs@cgs
Fix small bug in format.[integrate]
Change 80647 on 2012/12/12 by cgm@magics_opensuse113
LICENSE - remove unneccessary files which were highlighted in Palamida scan (MAGP-305)
Change 80577 on 2012/12/07 by cgm@magics_opensuse113
VERSION - 2.18.8
Change 80545 on 2012/12/06 by cgs@cgs
Contour - Small fix in GridShading [integrate]
Change 80536 on 2012/12/06 by cgs@cgs
take print out
Change 80531 on 2012/12/06 by cgs@cgs
Legend - Fix issues with users defined text entries [MAGP-296][integrate]
Change 80519 on 2012/12/06 by cgs@cgs
Netcdf- Handle transposed matrix definition + mssing value [MAGP-295] [MAGP-294][integrate]
Change 80515 on 2012/12/06 by cgm@magics_opensuse113
USE SCRIPTS - 2.18.6
Change 80491 on 2012/12/05 by cgs@cgs
Shading - smal fix in shading
Change 80487 on 2012/12/05 by cgm@magics_opensuse113
USE SCRIPTS - correct link to old++
Change 80480 on 2012/12/05 by cgm@magics_opensuse113
PYTHON - test on setting rpaths
Change 80479 on 2012/12/05 by cgm@magics_opensuse113
USE SCRIPTS - for release of 2.18.6 as default user version
Change 80466 on 2012/12/05 by cgm@magics_opensuse113
USE SCRIPTS - set 'new++' to 2.18.5 - use odb 0.9.21
Change 80465 on 2012/12/05 by cgm@magics_opensuse113
USE SCRIPTS - set old++ too 2.14.11
Change 80464 on 2012/12/05 by cgm@magics_opensuse113
VERSION 2.18.7
Change 80463 on 2012/12/05 by cgs@cgs
improve test in regression suite
Change 80457 on 2012/12/04 by cgm@magics_opensuse113
VERSION 2.18.6
Change 80447 on 2012/12/04 by cgs@cgs
Oda - Improved error message
Change 80446 on 2012/12/04 by cgs@cgs
Odb - improve error checking [integrate]
Change 80435 on 2012/12/04 by cgm@magics_opensuse113
ODB - move to version 0.9.21 (version used by RD)
Change 80427 on 2012/12/04 by cgm@magics_opensuse113
VERSION 2.18.5
Change 80424 on 2012/12/04 by cgs@cgs
Obstat - Fix Regression issues - Tick positionning + inputMatrix and grid shading [MAGP-292][integrate]
Change 80422 on 2012/12/04 by cgs@cgs
Improved symbol plotting
Change 80405 on 2012/12/03 by cgs@cgs
Print - small print removed
Change 80402 on 2012/12/03 by cgs@cgs
Legend - Fix histogram legend [MAGP-293][integrate]
Change 80376 on 2012/12/03 by cgm@magics_opensuse113
ODB - move to ODB_API 0.9.24
Change 80375 on 2012/12/03 by cgs@cgs
Obstat - Fix Regression issues - Tick positionning + inputMatrix and grid shading [MAGP-292] [integrate]
Change 80361 on 2012/12/02 by cgm@magics_opensuse113
USE SCRIPTS - changes for 2.18.2 release (mostly AIX)
Change 80338 on 2012/11/29 by cgs@cgs
Wind- Prevent wind crashing when bno wind to plot[MAGP-291][integrate]
Change 80319 on 2012/11/29 by cgm@magics_opensuse113
VERSION 2.18.4
Change 80285 on 2012/11/28 by cgs@cgs
Text - use of < was cousingan abort when using the static library [MAGP-290]
Change 80163 on 2012/11/22 by cgm@cgm_meshon
COMPILE remove scin option
Change 80099 on 2012/11/20 by cgm@magics_opensuse113
DRIVERS - CAIRO correct positioning in complex layouts (MAGP-244)
Change 80071 on 2012/11/20 by cgs@cgs
Cartesian Projection - small fix in logarithmic axis [MAGP-276] [integrate]
Change 80058 on 2012/11/19 by cgm@magics_opensuse113
DRIVERS - KMZ fix missing files fatal error MAGP-43
Change 80049 on 2012/11/19 by cgm@magics_opensuse113
VERSION - 2.18.3
Change 80039 on 2012/11/19 by cgm@magics_opensuse113
COMPILATION - remove scin call
Change 79835 on 2012/11/15 by cgs@cgs
Symbol - Allow blanking of text [MAGP-286][integrate]
Change 79815 on 2012/11/15 by cgs@cgs
Symbol - Allow resize of image when image are used as symbol [MAGP-283][integrate]
Change 79785 on 2012/11/14 by cgs@cgs
Contour - Small fix in contour [MAGP-280][integrate]
Change 79784 on 2012/11/14 by cgs@cgs
Contour - small fix in contouring [MAGP_280] [integrate]
Change 79734 on 2012/11/12 by cgs@cgs
Symbol - Add a new option "both" to symbol type to allow the value to be plotted next to the symbol. [MAGP-273]
Change 79626 on 2012/11/07 by cgm@cgm_meshon
PYTHON - move interface into separate sub directory to enable tests to run from this local build (MAGP-275)
Change 79625 on 2012/11/07 by cgm@cgm_meshon
TESTS - ensure environment variables are set correctly, so that the local build is used for tests and not a central installation (MAGP-275)
Change 79582 on 2012/11/07 by cgm@magics_opensuse113
DRIVERS Cairo - remove CairoDriverRaster which was anyway not used but caused compiler warnings
Change 79580 on 2012/11/06 by cgm@magics_opensuse113
DRIVERS Cairo - enable that antialias can be switched off MAGP-274
Change 79579 on 2012/11/06 by cgm@magics_opensuse113
TOOLS - correct spelling of MeteoroMagLogical (refactoring gone bad?)
Change 79410 on 2012/10/31 by cgs@cgs
TableDecoder - Fix crash in binning [MAGP-250][integrate]
Change 79257 on 2012/10/29 by cgs@cgs
Obs - Fix incompatibility between bufr and Json [integrate]
Change 79243 on 2012/10/29 by cgm@magics_opensuse113
VERSION 2.18.2 - maintenance
Change 79191 on 2012/10/25 by cgm@magics_opensuse113
PYTHON - avoid empty lib names / paths and include files in tarball if python is disabled
Change 79190 on 2012/10/25 by cgm@magics_opensuse113
VERSION - back to 2.18.1 (needs more changes for tarball)
Change 79189 on 2012/10/25 by cgm@magics_opensuse113
PYTHON - remove old interface
Change 79187 on 2012/10/25 by cgm@magics_opensuse113
MAKE - add missing file to build tarball
Change 79145 on 2012/10/25 by cgm@magics_opensuse113
VERSION 2.18.2 - maintenance
Change 79013 on 2012/10/22 by cgm@magics_opensuse113
PYTHON - changes for ECMWF libraries
Change 79012 on 2012/10/21 by cgm@cgm_meshon
PYTHON - update for outside-ECMWF installations
Change 78992 on 2012/10/19 by cgm@magics_opensuse113
BOOST - comment out version test which is not necessary
Change 78988 on 2012/10/19 by cgm@magics_opensuse113
MAKE- remove linker flag to be able to compile & link on MAC OS X
Change 78979 on 2012/10/19 by cgm@magics_opensuse113
MAKE - enable build of tarball if python is disabled
Change 78974 on 2012/10/19 by cgm@magics_opensuse113
MAKE - add missing file for tarball
Change 78932 on 2012/10/18 by cgr@cgr
ODB: ODB plotting fails if duplicated columns present in the input ODB MAGP-246
Change 78905 on 2012/10/17 by cgm@magics_opensuse113
VERSION 2.18.1
Change 78892 on 2012/10/17 by cgs@cgs
Fix linking issue after integration
Change 78871 on 2012/10/17 by cgs@cgs
Observations - enable use of users template to customise observation plotting [MAGP-243] [integrate]
Add Regression test suite
Change 78868 on 2012/10/17 by cgi@cgi_metview_4
BOOST: updated version to 1.50.0 in r2.18 branch
Change 78853 on 2012/10/17 by cgi@cgi_metview_4
CONTOUR: in Count level selection mode, set close-enough-to-zero to zero to avoid formatting issues with the legend [MAGP-242] [r2.18 branch]
Change 78729 on 2012/10/12 by cgs@cgs
MagML - allow import object
Change 78714 on 2012/10/11 by cgs@cgs
Symbol - Trajectory in MagML + improve connected symbol and text. [MAGP-238][integrate]
Change 78708 on 2012/10/11 by cgs@cgs
Proj4 - Add Projection EPSG:3857 + update the regression test suite [MAGP-192] [integrate]
Change 78682 on 2012/10/11 by cgs@cgs
SymbolPlotting - Close lats Interval for AdvancedTableMode [MAGP-240][integrate]
Change 78613 on 2012/10/10 by cgm@magics_opensuse113
PYTHON - set path to Fortran libraries (for Emoslib)
Change 78612 on 2012/10/09 by cgm@cgm_orion
PYTHON - make FLIB(S) more flexible
Change 78611 on 2012/10/09 by cgm@magics_opensuse113
PYTHON - updates to setup.py
Change 78602 on 2012/10/09 by cgr@cgr
API : Add thermodynamic functions MAGP-127
Change 78558 on 2012/10/08 by cgr@cgr
ODB : Record and make available information about the data points visualised in Metview MAGP-222
Change 78556 on 2012/10/08 by cgs@cgs
Python - Inoput Matrix conflict of parameters names [MAGP-236][integrate]
Change 78554 on 2012/10/08 by cgr@cgr
ODB : Record and make available information about the data points visualised in Metview MAGP-222
Change 78553 on 2012/10/08 by cgs@cgs
Grib - Grid values and metadata in Metview [MAGP-235] [integrate]
Change 78550 on 2012/10/05 by cgm@cgm_orion
PYTHON - fix for makefile to use new directory
Change 78549 on 2012/10/05 by cgm@magics_opensuse113
PYTHON - test for new python interface
Change 78527 on 2012/10/05 by cgr@cgr
Drivers : Improve plotting speed in the QtDdriver MAGP-233
Change 78519 on 2012/10/05 by cgs@cgs
Wind - Fix the WrapAround for rooated grids [ MAGP-232][integrate]
Input Matrix - Fix the WrapAround for Wind Plotting [ MAGP-231] [integrate]
Change 78489 on 2012/10/04 by cgs@cgs
InputData - Add input for CurveArea Plotting [Metview][MAG-230][integrate]
Change 78468 on 2012/10/04 by cgr@cgr
ODB : Record and make available information about the data points visualised in Metview MAGP-222
Change 78466 on 2012/10/04 by cgs@cgs
Wind plotting - fix the last blue arrow [MAGP-225][integrate]
Change 78464 on 2012/10/04 by cgs@cgs
Cleaning
Change 78463 on 2012/10/04 by cgs@cgs
cleaning
Change 78460 on 2012/10/04 by cgs@cgs
Contour - Improve shading of non global fields [MAGP-227] [integrate]
Contour - Fix issue for shading of flat fields [MAGP-229] [integrate]
Change 78433 on 2012/10/03 by cgm@magics_opensuse113
VERSION 2.18.0
Change 78428 on 2012/10/03 by cgs@cgs
Wind - Improve wind plotting for rotated grids. [MAGP-219] [integrate]
Contour - fix grid-shading issue for nonglobal fields [MAGP-227] [integrate]
Change 78427 on 2012/10/03 by cgs@cgs
Metview - Fix Highlight problem [MAGP-228] [integrate]
Change 78417 on 2012/10/03 by cgm@magics_opensuse113
VERSION 2.17.2
Change 78408 on 2012/10/03 by cgm@magics_opensuse113
INTEGRATE - AIX compiler changes from 2.16
Change 78370 on 2012/10/02 by cgs@cgs
Metview - Allow position_list in axis plotting [integrate]
Change 78305 on 2012/09/28 by cgs@cgs
contouring - optimisation
Change 78296 on 2012/09/28 by cgs@cgs
Cleaning - print
Change 78290 on 2012/09/28 by cgs@cgs
Regression Suite - Fix issues with grid and cell Shading [MAPG-223] [MAGP-210] [integrate]
Change 78279 on 2012/09/27 by cgm@cgm_meshon
MAKE - add header file required for GCC 4.7
Change 78257 on 2012/09/27 by cgs@cgs
contour - fix small bug wiith handling missing data
Change 78256 on 2012/09/27 by cgs@cgs
Grib - Implements wind plotting for rotated gribs [MAGP-219] [integrate]
Change 78153 on 2012/09/25 by cgs@cgs
Contour - optimisation and missing data [MAGP-221][integrate]
Change 78150 on 2012/09/25 by cgs@cgs
Contour - optimisation and missing data [MAGP-221][integrate]
Change 78028 on 2012/09/21 by cgi@cgi_metview_4
BUILD: removed Qt-OpenGL dependency (also removed Qt-Network dependency from Magics) [Metview 4.3 branch, Magics r2.18 branch]
Change 77935 on 2012/09/18 by cgs@cgs
Text - Fix position of text in titlebox [MAGP-220] [integrate from main]
Change 77909 on 2012/09/18 by cgm@magics_opensuse113
BRANCH - new branch for version 2.18 (for now still called 2.17.x)
Change 69349 on 2012/02/24 by cgs@cgs
Magics: Probkem in setting matrix.
Change 69335 on 2012/02/24 by cgs@cgs
magics:bug in input setting
Change 69334 on 2012/02/24 by cgs@cgs
Magics:
bug in cell_shading nearest method.
Bug in Matrix setting
Change 69304 on 2012/02/24 by cgs@cgs
Magics: Curve problem in a succession of regulat=r and data curve!
Change 68898 on 2012/02/22 by cgm@magics_opensuse113
DRIVERS PostScript backport fix for (HTML) text alignment MAGP-50
Change 68881 on 2012/02/22 by cgs@cgs
Magics: fix small issues in legend
Change 68838 on 2012/02/21 by cgs@cgs
Magics : problem with long time serie
Change 68088 on 2012/02/01 by cgi@cgi_metview_4
MAG++: updated maintenance branch to use the latest odb_api 0.9.9 (for the purpose of a new Metview 4.1.x internal release)
Change 68067 on 2012/01/31 by cgs@cgs
Magics: Fix for legend and symboltable mode
Change 67822 on 2012/01/24 by cgm@magics_opensuse113
VERSION 2.14.10
Change 67258 on 2012/01/19 by cgm@magics_opensuse113
USE SCRIPTS update for 2.14.9 (using GRIB_API 1.9.14)
Change 67177 on 2012/01/17 by cgm@magics_opensuse113
LOG clean-up of messages
Change 67118 on 2012/01/16 by cgm@magics_opensuse113
LICENSE correct license text
Change 67107 on 2012/01/16 by cgm@magics_opensuse113
DRIVERS KML clean-up minizip code
Change 67103 on 2012/01/16 by cgm@magics_mac
MAC clean-up of error message (converted it to info)
Change 67087 on 2012/01/16 by cgm@magics_mac
MAC update compile options
Change 67071 on 2012/01/16 by cgs@cgs
Magics: Locale cleaning
Change 67064 on 2012/01/16 by cgm@magics_mac
MAC CONFIG add option to overcome non-c++ aware linker
Change 67017 on 2012/01/13 by cgs@cgs
Magics: AxisTip position
Change 66793 on 2012/01/10 by cgs@cgs
Magics: AxisTip positionning + exception pb for static!
Change 66233 on 2012/01/02 by cgm@magics_opensuse113
CONFIG revert MAC change
Change 66232 on 2012/01/02 by cgm@magics_opensuse113
CONFIG for Mac (second try)
Change 66230 on 2012/01/02 by cgm@magics_opensuse113
VERSION update year to 2012
Change 66229 on 2012/01/02 by cgm@magics_opensuse113
MAC put back link option
Change 66228 on 2012/01/02 by cgm@magics_opensuse113
CONFIG update GRIB_API to version 1.9.14
Change 66099 on 2011/12/19 by cgm@magics_opensuse113
DOCS clean-up
Change 66094 on 2011/12/19 by cgs@cgs
Integrate bug fix in default colour for isoline label.
Change 66068 on 2011/12/18 by cgm@magics_opensuse113
INTEGRATE from main (2.15.0) to fix 10m resolution (admin) boundaries
Change 65980 on 2011/12/15 by cgm@magics_opensuse113
BOUNDARIES fix missing file error message reported by Iain on Metview
Change 65926 on 2011/12/14 by cgr@cgr
MAG+ Integrate from main: Apply "%d" formatting for integer values that can be casted into an integer when "(automatic)" format is used in symbol plotting.
Change 65878 on 2011/12/13 by cgs@cgs
Integration change: box border off
Change 65849 on 2011/12/12 by cgm@magics_opensuse113
VERSION 2.14.9
Change 65847 on 2011/12/12 by cgm@cgm_meshon
RPMS remove /usr/lib/Magics directory from installation
Change 65846 on 2011/12/11 by cgm@magics_opensuse113
PYTHON fix make check
Change 65845 on 2011/12/11 by cgm@cgm_meshon
PYTHON restructure swig directory to fix problems reported by MPI Hamburg
Change 65844 on 2011/12/11 by cgm@cgm_meshon
PYTHON clean-up of makefile (remove unused installation directory)
Change 65842 on 2011/12/10 by cgm@cgm_meshon
INTEGRATE fix for disputed boundaries back into 2.14 (Kosovo)
Change 65638 on 2011/12/02 by cgs@cgs
Magics : add a warning when map_coastline_resolution is set to high or medium
Change 65637 on 2011/12/02 by cgm@magics_opensuse113
CONFIG give simple version number for magics-config --version and set project name to Magics (instead of Magics++)
Change 65627 on 2011/12/02 by cgs@cgs
Magics typo
Change 65625 on 2011/12/02 by cgs@cgs
Integration change.
Change 65613 on 2011/12/02 by cgs@cgs
Magics: integration
Change 65605 on 2011/12/02 by cgs@cgs
Magics Small adjustement in lefgend
Change 65602 on 2011/12/02 by cgs@cgs
Integration change.
Change 65586 on 2011/12/01 by cgs@cgs
Magics integrate change for legend_histogram
Change 65570 on 2011/12/01 by cgs@cgs
Magics: symbol_input_marker_list
Change 65565 on 2011/12/01 by cgs@cgs
Magics .. Integration change.
Change 65511 on 2011/11/30 by cgm@magics_opensuse113
VERSION 2.14.8
Change 65482 on 2011/11/29 by cgs@cgs
Metview/magics: integrate!
Change 65465 on 2011/11/29 by cgs@cgs
Magics: more station on Classic metgrams
Change 65462 on 2011/11/29 by cgs@cgs
Magics: adjustement in positioning!
Change 65457 on 2011/11/29 by cgs@cgs
Magics/Metgram: Add Skopje(MK) in classic metgram template
Change 65455 on 2011/11/29 by cgs@cgs
Magics: fallback behaviour if info for obs/centre not found.
Change 65441 on 2011/11/28 by cgs@cgs
Magics: Observation plotting improvment + gloabl reduced gaussian grids.
Change 65411 on 2011/11/27 by cgm@magics_opensuse113
PCLOSE clean-up for footer
Change 65358 on 2011/11/25 by cgr@cgr
Integrate from main: Meta-data collector can now access grib scaling information.
Change 65341 on 2011/11/24 by cgm@magics_opensuse113
LOGGING flush output properly
Change 65336 on 2011/11/24 by cgm@magics_opensuse113
LOGGING reposition the footer after all processing
Change 65328 on 2011/11/24 by cgm@magics_opensuse113
COLOUR HSL sets now alpha if not given
Change 65327 on 2011/11/24 by cgm@magics_opensuse113
VERSION 2.14.7
Change 65309 on 2011/11/23 by cgs@cgs
Stupid pclose
Change 65298 on 2011/11/23 by cgm@magics
Remove random character
Change 65296 on 2011/11/23 by cgs@cgs
More on pclose
Change 65283 on 2011/11/23 by cgm@magics_opensuse113
LAYOUT fix bug obstat plots
Change 65280 on 2011/11/23 by cgm@magics_opensuse113
VERSION 2.14.6 & USE SCRIPTS
Change 65236 on 2011/11/22 by cgi@cgi_metview_4
MAG++: GeoPoints version of the table decoder now takes delimiter parameters into account [2.14 branch]
Change 65233 on 2011/11/22 by cgs@cgs_metview
Magics: axis_minor_tick_count fixed.
Change 65214 on 2011/11/22 by cgm@magics_opensuse113
DRIVERS reverse symbol plotting before outline was added ... was leaking (reported by Luciana)
Change 65183 on 2011/11/21 by cgm@magics_opensuse113
RPMS add dependency to gd-devel for installation
Change 65173 on 2011/11/20 by cgm@magics_opensuse113
NEW BRANCH r2.14 (used by emos)
Change 65171 on 2011/11/20 by cgm@magics_opensuse113
VERSION 2.14.5
Change 65169 on 2011/11/20 by cgm@magics_opensuse113
DRIVERS SVG optimise file size by writing hex color codes
Change 65162 on 2011/11/19 by cgm@magics_opensuse113
DRIVERS SVG optimise rendering of image data
Change 65154 on 2011/11/18 by cgs@cgs_metview
missing value
Change 65152 on 2011/11/18 by cgm@magics_opensuse113
DRIVERS symbols - make sure calour is set before line style is set
Change 65151 on 2011/11/18 by cgs@cgs_metview
Magics: legend can be turned off for a wind action
implement graph_x_missing_value graph_y_missing_value
Change 65149 on 2011/11/18 by cgm@magics_opensuse113
DRIVERS CAIRO put back plotting of cell array (wrong transparency values were causing problems)
Change 65148 on 2011/11/18 by cgm@magics_opensuse113
DRIVERS SVG reduce file size if cell array is used
Change 65147 on 2011/11/18 by cgm@magics_opensuse113
DRIVERS SVG set default to NOT use external files if possible
Change 65143 on 2011/11/18 by cgr@cgr
MAG++ DRIVERS symbols and their outlines are now rendered together
Change 65140 on 2011/11/18 by cgm@magics_opensuse113
RPMS update spec files after succesfull RPM builds for 2.14
Change 65137 on 2011/11/17 by cgm@magics_opensuse113
VERSION 2.14.4
Change 65135 on 2011/11/17 by maf@belleus
change to landsea to make GreatLakes behave themselves
Change 65134 on 2011/11/17 by cgm@magics_opensuse113
SRC-XML reorder tags into lines
Change 65124 on 2011/11/17 by cgr@cgr
MAG++ DRIVERS add symbol outlines
Change 65121 on 2011/11/17 by cgm@magics_opensuse113
DRIVERS contour label positioning - trial to avoid too many labels at biginning of contour
Change 65120 on 2011/11/17 by cgm@magics_opensuse113
BOUNDARIES hardcode min resolution to 50m until we fix 10m
Change 65117 on 2011/11/17 by maf@belleus
Modified shape files as follows:
- Redownloaded older (version 1.2) copies of naturalearthdata 10m physical files
- Renamed these files to resemble those in 50m and 110m cases (e.g. ne_xxxxx.shp)