-
Notifications
You must be signed in to change notification settings - Fork 1
/
smartmet-library-newbase.spec
1668 lines (1199 loc) · 73.4 KB
/
smartmet-library-newbase.spec
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
%bcond_with tests
%define DIRNAME newbase
%define LIBNAME smartmet-%{DIRNAME}
%define SPECNAME smartmet-library-%{DIRNAME}
%if 0%{?rhel} && 0%{rhel} < 9
%define smartmet_boost boost169
%else
%define smartmet_boost boost
%endif
%define smartmet_fmt_min 11.0.0
%define smartmet_fmt_max 12.0.0
Summary: newbase library
Name: %{SPECNAME}
Version: 24.12.16
Release: 1%{?dist}.fmi
License: MIT
Group: Development/Libraries
URL: https://github.com/fmidev/smartmet-library-newbase
Source: %{name}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: %{smartmet_boost}-devel
BuildRequires: bzip2-devel
BuildRequires: fmt-devel >= %{smartmet_fmt_min}, fmt-devel <= %{smartmet_fmt_max}
BuildRequires: gcc-c++
BuildRequires: gdal38-devel
BuildRequires: geos312-devel
BuildRequires: make
BuildRequires: rpm-build
BuildRequires: smartmet-library-macgyver-devel >= 24.10.4
BuildRequires: smartmet-library-gis-devel >= 24.8.7
%if %{with tests}
BuildRequires: smartmet-library-regression
%endif
Requires: smartmet-library-macgyver >= 24.10.4
Requires: smartmet-library-gis >= 24.8.7
Requires: %{smartmet_boost}-iostreams
Requires: %{smartmet_boost}-regex
Requires: %{smartmet_boost}-system
Requires: fmt-libs >= %{smartmet_fmt_min}, fmt-libs <= %{smartmet_fmt_max}
Requires: gdal38-libs
Requires: geos312
#TestRequires: %{smartmet_boost}-devel
#TestRequires: bzip2-devel
#TestRequires: gcc-c++
#TestRequires: gdal38-devel
#TestRequires: gdal38-libs
#TestRequires: make
#TestRequires: postgresql15-libs
#TestRequires: smartmet-library-gis-devel >= 24.8.7
#TestRequires: smartmet-library-macgyver-devel >= 24.10.4
#TestRequires: smartmet-library-macgyver >= 24.10.4
#TestRequires: smartmet-library-gis >= 24.8.7
#TestRequires: smartmet-library-regression
#TestRequires: smartmet-timezones
#TestRequires: zlib-devel
BuildRequires: python3
BuildRequires: python3-devel
BuildRequires: python-PyBindGen
Provides: %{LIBNAME}
Obsoletes: libsmartmet-newbase < 16.12.19
Obsoletes: libsmartmet-newbase-debuginfo < 16.12.19
%description
FMI newbase library
%prep
rm -rf $RPM_BUILD_ROOT
%setup -q -n %{SPECNAME}
%build
make %{_smp_mflags}
%if %{with tests}
make test %{_smp_mflags}
%endif
%install
%makeinstall
rm -f $RPM_BUILD_ROOT%{python3_sitearch}/newbase.so
strip $RPM_BUILD_ROOT%{_datadir}/smartmet/python/newbase.so
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(0775,root,root,0775)
%{_libdir}/libsmartmet-%{DIRNAME}.so
%package -n %{SPECNAME}-devel
Summary: FMI newbase development files
Provides: %{SPECNAME}-devel
Requires: %{SPECNAME} = %{version}-%{release}
Requires: smartmet-library-gis-devel >= 24.8.7
Requires: smartmet-library-macgyver-devel >= 24.10.4
Obsoletes: libsmartmet-newbase-devel < 16.12.19
%description -n %{SPECNAME}-devel
FMI newbase development files
%files -n %{SPECNAME}-devel
%defattr(0664,root,root,0775)
%{_includedir}/smartmet/%{DIRNAME}
####################################################################
%package -n %{SPECNAME}-static
Summary: FMI newbase static library
Provides: %{SPECNAME}-static
%description -n %{SPECNAME}-static
FMI newbase static library
%files -n %{SPECNAME}-static
%defattr(0664,root,root,0775)
%{_libdir}/libsmartmet-%{DIRNAME}.a
####################################################################
%package -n %{SPECNAME}-python
Summary: FMI newbase python bindings
Requires: %{SPECNAME} = %{version}-%{release}
Conflicts: python3-smartmet-library-newbase python36-smartmet-library-newbase
Requires: python3
%description -n %{SPECNAME}-python
FMI newbase python bindings
%files -n %{SPECNAME}-python
%{_datadir}/smartmet/python/newbase.so
%post -n %{SPECNAME}-python
for dir in /usr/lib64/python3*/site-packages; do ln -srfv %{_datadir}/smartmet/python/newbase.so $dir/newbase.so; done
%postun -n %{SPECNAME}-python
if [ $1 -eq 0 ]; then
for dir in /usr/lib64/python3*/site-packages; do if [ -L $dir/newbase.so ] ; then rm -fv $dir/newbase.so; fi; done
fi
%changelog
* Mon Dec 16 2024 Mika Heiskanen <[email protected]> - 24.12.16-1.fmi
- Added ensemble parameters for mean and stdev cloudiness parameters (QDTOOLS-235)
* Tue Dec 3 2024 Mika Heiskanen <[email protected]> - 24.12.3-1.fmi
- Improved error checking for multiqueryinfo
* Wed Nov 6 2024 Mika Heiskanen <[email protected]> - 24.11.6-1.fmi
- Added parameter ParticleNumberConcentration (STU-25609)
* Tue Oct 15 2024 Mika Heiskanen <[email protected]> - 24.10.15-1.fmi
- Removed landscape interpolation as obsolete
* Wed Sep 25 2024 Mika Heiskanen <[email protected]> - 24.9.25-1.fmi
- STU-24852: Add new parameters for MU CAPE and CIN
* Tue Sep 17 2024 Mika Heiskanen <[email protected]> - 24.9.17-1.fmi
- Added cloud ceiling height (feet) fractiles parameters (QDTOOLS-216)
* Wed Aug 21 2024 Andris Pavēnis <[email protected]> 24.8.21-3.fmi
- [python] Fix build and add test
* Wed Aug 21 2024 Andris Pavēnis <[email protected]> 24.8.21-2.fmi
- [python] Fix build and install for all installed Python3 versions
* Wed Aug 21 2024 Andris Pavēnis <[email protected]> 24.8.21-1.fmi
- Initial version of Python3 support integrated into smartmet-librar-newbase build instead of separate project
* Wed Aug 7 2024 Andris Pavēnis <[email protected]> 24.8.7-1.fmi
- Update to gdal-3.8, geos-3.12, proj-94 and fmt-11
* Fri Jul 12 2024 Andris Pavēnis <[email protected]> 24.7.12-1.fmi
- Replace many boost library types with C++ standard library ones
* Fri May 17 2024 Mika Heiskanen <[email protected]> - 24.5.17-2.fmi
- Added parameter 'WSI' for WIGOS station identifiers
* Fri May 17 2024 Mika Heiskanen <[email protected]> - 24.5.17-1.fmi
- Added -lsmartmet-macgyver
* Thu May 16 2024 Andris Pavēnis <[email protected]> 24.5.16-1.fmi
- Clean up boost date-time uses
* Mon May 6 2024 Andris Pavēnis <[email protected]> 24.5.6-1.fmi
- Use Date library (https://github.com/HowardHinnant/date) instead of boost date_time
* Wed Apr 24 2024 Mika Heiskanen <[email protected]> - 24.4.24-1.fmi
- Fixed creation of Mercator projections
* Wed Apr 17 2024 Mika Heiskanen <[email protected]> - 24.4.17-1.fmi
- Improved logic for parallel tasks
* Mon Mar 11 2024 Mika Heiskanen <[email protected]> - 24.3.11-1.fmi
- Use NFmiGdalArea instead of NFmiMercatorArea if lat_ts or lon_0 are not zero
* Thu Mar 7 2024 Mika Heiskanen <[email protected]> - 24.3.7-1.fmi
- Enable include and #define for NFmiSettings to make qdtext configuration simpler
* Fri Feb 23 2024 Mika Heiskanen <[email protected]> - 24.2.23-1.fmi
- Do not use boost::noncopyable
- Added safety check to projection parser
* Tue Jan 30 2024 Mika Heiskanen <[email protected]> - 24.1.30-1.fmi
- NFmiInfoAreaMask added multi-source data support (relates multiple synop and flash data usage).
- NFmiInfoAreaMask added support for model-climatology-data (era5 type data).
- NFmiInfoAreaMask added better observation station distance checking ability, new CheckPossibleObservationDistance method.
- NFmiInfoAreaMaskVertFunc added DoPeekZFunction and CalculateUsedPeekZPressureLevel methods.
- NFmiInfoAreaMaskVertFunc simplified IterateLevelsFromGroundUpward method.
- NFmiInfoAreaMaskProbFunc added support for observation data for probability calculations.
- Using NFmiCalculationParams UsedLatlon method to get wanted calculation point.
- Added support for ModAvg, ModMin and ModMax integration functions.
- Fixed NFmiInfoAreaMaskVertFunc::SearchLevels to handle also first level, previously skipped the 1st level.
- For Simple condition calculation added support for -> comparison operator which is so called continuous-equal
- Fixed level data height and pressure interpolation codes to work better in different data cases
- Removed usage of assignment operator (operator=) in NFmiAreaMask class hierarchy. Removed operator= methods from the child classes
- Now using NFmiCalculationParams's UsedLatlon method in calculations
- NFmiMacroParamValue class now has support for time-serial based smarttools calculations.
- NFmiCalculationParams has support for:
- special calculations (cross-section and time-serial).
- CalculationPoint type macroParam calculations (new member data itsActualCalculationPoint and new UsedLatlon and SetModifiedLatlon methods).
- Support for multi-data cases, like synop data has three queryData (Finland, Europe and World) with itsCurrentMultiInfoData data member.
- Support for observation max distance limiting (itsObservationRadiusInKm data member)
- Added new methods relating to fast bulk get methods (SetValues, SetLevelFromVec, DoSubParamConversions)
- Also simplified some of those fast bulk methods by using GetValues and GetPartialValues methods.
- Added new GetFixedPressureLevelIndex which returns decimal value of level index of given pressure, which can be used in interpolations in vertical dimension.
- Added ElapsedTimeFromLoadInSeconds virtual method that is not used in newbase classes, but in child classes in smarttools library. This is used detect if certain data is newly loaded or not.
- Fixed HeightValue and PressureValue methods to handle correctly the cross-section and time-serial case and always use time interpolation with them.
- Added FunctionDataTimeOffsetInHours and CheckPossibleObservationDistance implementations.
- NFmiAreaMaskImpl::Value method now uses NFmiCalculationParams's UsedLatlon method for actual wanted calculation point (there are normal calculation grid-points and then there are CalculationPoint type observation points that are used in different cases).
- Added several new Functiontype enum values for smarttools language.
- Added better support for limiting used observation station in used calculation grid by introducing CheckPossibleObservationDistance method.
- Moved some generally used DoShallowCopy functions in here to centralize them.
- Added new data-modifier class's includes to this combined includes file.
- Added couple new dataModifier classes to be used with smarttools language. These are used to calculate modular avg and min/max values. Modular parameters, lik
e wind direction, must be handled a bit differently then normal continuous parameters.
- Added couple new values to NFmiInfoData::Type enum, relating to SmartMet-workstation view layers.
- Changed FmiMaskOperation enum: 1. removed numeric values from all values except from the first one, 2. Added new kFmiMaskContinuouslEqual for smarttools calculations.
- New method SetValues, which is used to set e.g. one time-param-level grid values, using vector and startIndex and related step count
- New method IsReadOnly tells if queryData has been read with memory-mapped style (read-only) or into memory, which means that data can be modified
- Fixes to QueryInfoParamStateRestorer class
- Added new QueryInfoTotalStateRestorer class (restores all the dimensions, not just parameter)
- Added couple MetaWindParamUsage constructors
- Added IsLightningTypeData function
- Fixed GetUsedTimeIfModelClimatologyData function to handle also static queryData (like topography which have only one time)
- Fixed FindTimeIndicesForGivenTimeRange function
- Fixed theMaxWantedLocations parameter related crash bug in NFmiLocationBag::NearestLocations method.
- Added new NFmiNanoSecondTimer helper class for more precise time measuring
- Changed NFmiTimeDescriptor::GetIntersection method to const
* Tue Nov 21 2023 Mika Heiskanen <[email protected]> - 23.11.21-2.fmi
- Repackaged since MappedFile ABI changed
* Tue Nov 21 2023 Mika Heiskanen <[email protected]> - 23.11.21-1.fmi
- New parameters: IcingMassRate and IcingGrowthRate (BRAINSTORM-2788)
* Tue Nov 14 2023 Mika Heiskanen <[email protected]> - 23.11.14-1.fmi
- Added parameters WildFireWarning, CloudWaterDryAri, CloudIceDryAir, WildFireIndex
- Replaced boost date objects with macgyver DateTime and LocalDateTime
* Wed Oct 11 2023 Andris Pavēnis <[email protected]> 23.10.11-1.fmi
- Use Fmi::FileSystem for file compression support
* Tue Oct 3 2023 Andris Pavēnis <[email protected]> 23.10.3-1.fmi
- Add LZMA and ZSTD compressuion support for query data
* Wed Aug 30 2023 Mika Heiskanen <[email protected]> - 23.8.30-1.fmi
- Added SILAM parameters for smoke (BRAINSTORM-2649)
* Tue Aug 29 2023 Mika Heiskanen <[email protected]> - 23.8.29-1.fmi
- Update new EPS updraft helicity parameters (STU-22037)
* Mon Aug 21 2023 Andris Pavēnis <[email protected]> 23.8.21-1.fmi
- Use Fmi::MappedFile and remove Advise methods
* Mon Jul 31 2023 Mika Heiskanen <[email protected]> - 23.7.31-1.fmi
- Add four new parameters from ICON model
- snow temperature (SnowTemperature)
- mixing layer CAPE (CAPEMixingLayer)
- fraction of lake (fresh) water (FreshWaterFraction)
- direct short-wave radiation (RadiationSWDirect)
* Fri Jul 28 2023 Andris Pavēnis <[email protected]> 23.7.28-1.fmi
- Repackage due to bulk ABI changes in macgyver/newbase/spine
* Thu Jul 27 2023 Andris Pavēnis <[email protected]> 23.7.27-1.fmi
- Fix compiler warnings
* Mon Jul 10 2023 Andris Pavēnis <[email protected]> 23.7.10-1.fmi
- Use postgresql 15, gdal 3.5, geos 3.11 and proj-9.0
* Thu Jun 15 2023 Mika Heiskanen <[email protected]> - 23.6.15-1.fmi
- Fixed NFmiLocationBag::CoordinateMatrix to return all station coordinates
* Thu Feb 9 2023 Mika Heiskanen <[email protected]> - 23.2.9-1.fmi
- New probability parameters for AtmosphericIceGrowth (STU-20797)
* Mon Nov 14 2022 Mika Heiskanen <[email protected]> - 22.11.14-1.fmi
- New parameter LLFCloudTopFL
* Mon Aug 29 2022 Mika Heiskanen <[email protected]> - 22.8.29-1.fmi
- New parameter AtmosphericIceGrowth
* Wed Aug 24 2022 Mika Heiskanen <[email protected]> - 22.8.24-1.fmi
- Fixed resolution calculations in index mask tools
* Thu Jun 16 2022 Andris Pavēnis <[email protected]> 22.6.16-1.fmi
- Add support of HEL9, upgrade to libpqxx-7.7.0 (rhel8+) and fmt-8.1.1
* Fri Jun 10 2022 Mika Heiskanen <[email protected]> - 22.6.10-2.fmi
- Added NFmiAreaTools::CreateLegacyYKJArea with option for setting degrees/meters for the input coordinates
* Fri Jun 10 2022 Mika Heiskanen <[email protected]> - 22.6.10-1.fmi
- Fixed legacy YKJ area detection
* Thu Jun 9 2022 Mika Heiskanen <[email protected]> - 22.6.9-2.fmi
- Fixed NFmiAreaTools::CreateLegacyRotatedLatLonArea to take rotated coordinates and handle lat1 > lat2
* Thu Jun 9 2022 Mika Heiskanen <[email protected]> - 22.6.9-1.fmi
- Added NFmiAreaTools::CreateLegacyLatLonArea with option to set Pacific view
* Wed Jun 8 2022 Mika Heiskanen <[email protected]> - 22.6.8-2.fmi
- Allow legacy sphere to be specified either with +ellps=sphere, plain +R, plain +a or with +a == +b
* Wed Jun 8 2022 Mika Heiskanen <[email protected]> - 22.6.8-1.fmi
- Allow both legacy sphere and WGS84 spatial references for legacy NFmiXXXArea classes
* Mon Jun 6 2022 Mika Heiskanen <[email protected]> - 22.6.6-2.fmi
- Fixed NFmiAreaTools::CreateLegacyYKJArea to force meters as units
* Fri Jun 3 2022 Mika Heiskanen <[email protected]> - 22.6.3-1.fmi
- Added Fmi::LegacyMode
- Added NFmiArea::CreateFromCenter
- Added NFmiArea::CreateFromCorners
- Added NFmiArea::CreateFromReverseCorners
- Added NFmiArea::CreateFromCornerAndSize
- Added NFmiArea::CreateNewAreaByWorldRect which optionally allows enlarging the area
- Added new parameters for Himan: MaxProbabilityThunderstrom24h, WindGustDuration24h, MaxWindGust24h, MaxSevereThunderstormPotential24h
* Thu Jun 2 2022 Mika Heiskanen <[email protected]> - 22.6.2-2.fmi
- Added NFmiArea::SetGridSize for ABI compatibility
* Thu Jun 2 2022 Mika Heiskanen <[email protected]> - 22.6.2-1.fmi
- Fixed world wrap issue
* Wed Jun 1 2022 Mika Heiskanen <[email protected]> - 22.6.1-2.fmi
- Added NFmiArea::SimpleWKT for compatibility with the WGS84 branch
* Tue May 24 2022 Mika Heiskanen <[email protected]> - 22.5.24-1.fmi
- Changed several NFmiArea methods not to be inline for ABI compatibility with the WGS84 branch
* Fri May 20 2022 Mika Heiskanen <[email protected]> - 22.5.20-1.fmi
- NFmiFastQueryInfo::LatLon no longer returns a const reference due to ABI compability issues
- Removed NFmiFastQueryInfo::LatLonFast as obsolete
* Thu May 19 2022 Mika Heiskanen <[email protected]> - 22.5.19-1.fmi
- Added NFmiArea::CreateFromBBox for ABI compatibility with the WGS84 branch
* Wed May 18 2022 Mika Heiskanen <[email protected]> - 22.5.18-1.fmi
- Added convenience methods for creating legacy projections via NFmiAreaTools instead of direct constructors
* Thu Apr 28 2022 Mika Heiskanen <[email protected]> - 22.4.28-1.fmi
- New Enfuser parameters: LungDepositedSurfaceArea (LDSA) and BlackCarbonConcentration
- New power grid parameters: PowerOutagesByCounty and PowerOutagesByMunicipality
* Tue Mar 22 2022 Mika Heiskanen <[email protected]> - 22.3.22-1.fmi
- New parameters: SoaringFlightIndex, ThermalBirdMigrationIndex
* Fri Jan 21 2022 Andris Pavēnis <[email protected]> 22.1.21-1.fmi
- Repackage due to upgrade of packages from PGDG repo: gdal-3.4, geos-3.10, proj-8.2
* Tue Dec 7 2021 Andris Pavēnis <[email protected]> 21.12.7-1.fmi
- Update to postgresql 13 and gdal 3.3
* Wed Dec 1 2021 Mika Heiskanen <[email protected]> - 21.12.1-1.fmi
- New parameters: PowerOutput, PowerOutputSum
* Mon Nov 15 2021 Mika Heiskanen <[email protected]> - 21.11.15-1.fmi
- Added EDR (eddy dissipation rate) parameter
* Wed Oct 13 2021 Mika Heiskanen <[email protected]> - 21.10.13-1.fmi
- Print station coordinates with full accuracy
* Wed Sep 22 2021 Mika Heiskanen <[email protected]> - 21.9.22-1.fmi
- Added parameter RadiationDownLWClearSky
* Mon Sep 20 2021 Mika Heiskanen <[email protected]> - 21.9.20-1.fmi
- Added NFmiAreaMaskHelperStructures files
* Tue Sep 14 2021 Mika Heiskanen <[email protected]> - 21.9.14-1.fmi
- Added rail probability parameter
* Wed Jun 16 2021 Mika Heiskanen <[email protected]> - 21.6.16-1.fmi
- Use Fmi::Exception
* Mon Jun 7 2021 Mika Heiskanen <[email protected]> - 21.6.7-1.fmi
- Fixed self assignment issues
* Thu May 6 2021 Mika Heiskanen <[email protected]> - 21.5.6-1.fmi
- Fixed azimuthal projections to handle negative central/true latitudes correctly
* Thu Apr 22 2021 Mika Heiskanen <[email protected]> - 21.4.22-1.fmi
- Added NWCSAF parameters
* Sat Mar 20 2021 Mika Heiskanen <[email protected]> - 21.3.20-1.fmi
- Faster and disk friendlier grid interpolations
* Fri Mar 19 2021 Mika Heiskanen <[email protected]> - 21.3.19-1.fmi
- Fixed NFmiEquidistantArea to initialize the spatial reference for all constructor calls
* Tue Mar 9 2021 Mika Heiskanen <[email protected]> - 21.3.9-1.fmi
- Added move assignment and constructor for NFmiDataMatrix
* Tue Mar 2 2021 Mika Heiskanen <[email protected]> - 21.3.2-1.fmi
- Added parameter HardPackedSnowIndex (FIN: Polanne)
* Mon Mar 1 2021 Mika Heiskanen <[email protected]> - 21.3.1-1.fmi
- Faster construction of newbase times from Boost.Date_time ones
- Added numbers for metaparameters used by the SmartMet Server
* Fri Feb 26 2021 Mika Heiskanen <[email protected]> - 21.2.26-1.fmi
- Added enumerations for metaparameters which are usually calculated on the fly
* Mon Feb 22 2021 Anssi Reponen <[email protected]> - 21.2.22-1.fmi
- Added new PrecipitationAccumulation parameter (QDTOOLS-92)
* Sat Feb 20 2021 Mika Heiskanen <[email protected]> - 21.2.20-1.fmi
- Fixed NFmiRotatedLatLon PROJ.4 string after a copy paste error
* Thu Feb 18 2021 Mika Heiskanen <[email protected]> - 21.2.18-1.fmi
- Added NFmiArea::SpatialReference()
- Added NFmiFastQueryInfo::SpatialReference()
* Wed Feb 17 2021 Mika Heiskanen <[email protected]> - 21.2.17-1.fmi
- Fixed NFmiRotatedLatLon WKT
* Tue Feb 16 2021 Andris Pavēnis <[email protected]> - 21.2.16-1.fmi
- Fmi::NFmiQueryInfo: use std::unique_ptr instead of raw pointers
* Mon Feb 15 2021 Mika Heiskanen <[email protected]> - 21.2.15-2.fmi
- Updated NFmiSmoother to use Fmi::CoordinateMatrix
* Mon Feb 15 2021 Mika Heiskanen <[email protected]> - 21.2.15-1.fmi
- Merged more API changes from WGS84 branch: interpolation methods return a datamatrix
* Wed Feb 10 2021 Mika Heiskanen <[email protected]> - 21.2.10-2.fmi
- Fixed GIS-library dependencies
* Wed Feb 10 2021 Mika Heiskanen <[email protected]> - 21.2.10-1.fmi
- Fixed NFmiLatLonArea WKT to be equirectangular instead of longlat
- Added NFmiArea::CoordinateMatrix
- Added NFmiFastQueryInfo::WorldXY
- Added NFmiFastQueryInfo::NeedsGlobeWrap
- Added linkage to gis-library
* Mon Feb 8 2021 Mika Heiskanen <[email protected]> - 21.2.8-1.fmi
- Added CoordinateMatrix access
* Fri Jan 22 2021 Mika Heiskanen <[email protected]> - 21.1.22-1.fmi
- Added probability and fractile parameters for road forecasts
* Tue Jan 19 2021 Mika Heiskanen <[email protected]> - 21.1.19-1.fmi
- Added ProbabilityOfForestFireIndexLevel[1-3]
* Thu Jan 14 2021 Mika Heiskanen <[email protected]> - 21.1.14-1.fmi
- Repackaged smartmet to resolve debuginfo issues
* Tue Jan 5 2021 Mika Heiskanen <[email protected]> - 21.1.5-1.fmi
- Upgrade to fmt 7.1.3
* Mon Jan 4 2021 Andris Pavenis <[email protected]> - 21.1.4-1.fmi
- Rebuild due to PGDG repository change: gdal-3.2 uses geos-3.9 instead of geos-3.8
* Tue Dec 15 2020 Mika Heiskanen <[email protected]> - 20.12.15-1.fmi
- Upgrade to pgdg12
* Fri Dec 11 2020 Andris Pavenis <[email protected]> - 20.12.11-1.fmi
- Build and test updates
- Uses gdal-3.2 for RHEL8
* Thu Dec 10 2020 Andris Pavenis <[email protected]> - 20.12.10-1.fmi
- Rebuild due to makefile.inc changes
* Mon Nov 30 2020 Mika Heiskanen <[email protected]> - 20.11.30-1.fmi
- Added maximum thread count option for grid projections
* Wed Oct 28 2020 Andris Pavenis <[email protected]> - 20.10.28-1.fmi
- Rebuild due to fmt upgrade
* Fri Oct 16 2020 Mika Heiskanen <[email protected]> - 20.10.16-1.fmi
- Prevent crash in NFmiTransformList
- Fixed memory leak in NFmiQueryInfo::TimePeriodValue
* Fri Oct 9 2020 Mika Heiskanen <[email protected]> - 20.10.9-1.fmi
- Use std::array instead of std::vector in interpolation for speed
* Wed Oct 7 2020 Mika Heiskanen <[email protected]> - 20.10.7-1.fmi
- Fixed version numbering
* Mon Oct 5 2020 Andris Pavenis <[email protected]> - 20.10.5-1.fmi
- Build update (use makefile.inc from smartmet-library-macgyver)
* Fri Oct 2 2020 Mika Heiskanen <[email protected]> - 20.10.2-1.fmi
- New aviation parameters
* Tue Sep 29 2020 Mika Heiskanen <[email protected]> - 20.9.29-1.fmi
- Added NFmiWindFix for recalculating wind components from wind speed and direction
* Fri Sep 25 2020 Mika Heiskanen <[email protected]> - 20.9.25-1.fmi
- Added N200 sea level min, max, mean, dev, probability and fractile parameters
* Fri Sep 11 2020 Mika Heiskanen <[email protected]> - 20.9.11-1.fmi
- Removed obsolete FMI_DLL export declarations
* Mon Sep 7 2020 Mika Heiskanen <[email protected]> - 20.9.7-1.fmi
- Fixed stack smashing issue when reading Lambert Conformal Conic querydata
* Fri Aug 21 2020 Mika Heiskanen <[email protected]> - 20.8.21-1.fmi
- Upgrade to fmt 6.2
* Tue Jun 16 2020 Mika Heiskanen <[email protected]> - 20.6.16-1.fmi
- Added parameter SeaLevelN2000 where N2000 is the vertical reference system
* Sat Apr 18 2020 Mika Heiskanen <[email protected]> - 20.4.18-1.fmi
- Upgrade to Boost 1.69
* Tue Apr 14 2020 Mika Heiskanen <[email protected]> - 20.4.14-1.fmi
- Add three probability parameters for POT
* Thu Feb 13 2020 Mika Heiskanen <[email protected]> - 20.2.13-1.fmi
- Use nearest point interpolation for WindVector parameter
* Thu Feb 6 2020 Mika Heiskanen <[email protected]> - 20.2.6-1.fmi
- Restored ability to read compressed files
* Wed Jan 29 2020 Mika Heiskanen <[email protected]> - 20.1.29-1.fmi
- New parameter: nearby weather number
- New parameter: snow accumulation 24h fractiles 0,10,25,50,75,90,100
- New parameter: snow accumulation 120h fractiles 0,10,25,50,75,90,100
* Wed Dec 4 2019 Mika Heiskanen <[email protected]> - 19.12.4-1.fmi
- Use -fno-omit-frame-pointer for a better profiling and debugging experience
- Fixed dependency to be on gdal-libs instead of gdal
* Thu Nov 21 2019 Mika Heiskanen <[email protected]> - 19.11.21-1.fmi
- Revert old interpolation behaviour of qdpoint -i options
- Fixed eternal loop in NFmiDataMatrixUtils
* Wed Nov 20 2019 Mika Heiskanen <[email protected]> - 19.11.20-1.fmi
- Made some NFmiQueryDataUtil methods public to handle time-slice data combinations
- Replaced checkedVector by std::vector
- Moved NFmiDataMatrix interpolation and print methods to SmartMet Workstation library
* Tue Nov 19 2019 Mika Heiskanen <[email protected]> - 19.11.19-2.fmi
- Added fractile parameters for LowAndMiddleClouds
* Tue Nov 19 2019 Mika Heiskanen <[email protected]> - 19.11.19-1.fmi
- Fixed NFmiStreamQueryData to produce version 7 querydata by default
* Thu Nov 14 2019 Anssi Reponen <[email protected]> - 19.11.14-1.fmi
- Two new functions to NFmiSvgTools
* Fri Nov 1 2019 Mika Heiskanen <[email protected]> - 19.11.1-1.fmi
- Added PotentialWindSpeed parameter - wind speed reduced to 10 m height
* Thu Oct 31 2019 Mika Heiskanen <[email protected]> - 19.10.31-1.fmi
- Merged changed from SmartMet Editor branch
* Thu Sep 26 2019 Mika Heiskanen <[email protected]> - 19.9.26-1.fmi
- Removed global FmiInfoVersion variable
- Added constant global DefaultInfoVersion = 7
- Removed most of support for info versions below 6
- Fixed projection parser memory overflow discovered with ASAN
- Removed NFmiMetBox as obsolete
- Removed constructor/destructor call counters as obsolete debugging variables
- Use memcpy instead of reinterpret_cast to avoid ASAN warnings on alignment issues
- Removed wrong dependency on postgis
* Mon Aug 12 2019 Mika Heiskanen <[email protected]> - 19.8.12-1.fmi
- Fixed time interpolation to check the time gap to both times
* Mon Jul 29 2019 Mika Heiskanen <[email protected]> - 19.7.29-2.fmi
- Matrix fetcing Values-methods now throw if the requested time is outside the available time range
* Mon Jul 29 2019 Mika Heiskanen <[email protected]> - 19.7.29-1.fmi
- Add probability parameters for Convective Severity Index
* Tue May 14 2019 Mika Heiskanen <[email protected]> - 19.5.14-1.fmi
- Add param for 120h precipitation fractile
* Mon May 6 2019 Mika Heiskanen <[email protected]> - 19.5.6-1.fmi
- Add parameter for 'probability of lightning with area and time aggregation' (STU-10114)
* Tue Apr 23 2019 Mika Heiskanen <[email protected]> - 19.4.23-1.fmi
- Added param SoundingMaximumEBS (STU-10042)
* Thu Apr 11 2019 Mika Heiskanen <[email protected]> - 19.4.11-1.fmi
- Add param ConvectiveSeverityIndex (STU-10042)
- Add param FogProbabilityLimit1 (STU-9623)
- Add fractile parameters for monthly precipitation (STU-9410)
* Fri Apr 5 2019 Santeri Oksman <[email protected]> - 19.4.5-1.fmi
- Added parameters VolumetricSoilWaterLayer28 and VolumetricSoilWaterLayerAnomaly28(SOL-7344)
* Thu Mar 21 2019 Pertti Kinnia <[email protected]> - 19.3.21-1.fmi
- Fixed bug in creating GDalArea
* Thu Mar 14 2019 Mika Heiskanen <[email protected]> - 19.3.14-1.fmi
- Added more fractile parameters for Precipitation24, TotalColumnWaterVapour and TotalPrecipitation
* Wed Mar 6 2019 Mika Heiskanen <[email protected]> - 19.3.6-1.fmi
- Added ERA5 fractile parameters for MaximumTemperature, MinimumTemperature and Precipitation24h
* Fri Mar 1 2019 Mika Heiskanen <[email protected]> - 19.3.1-1.fmi
- Added parameter RadarPrecipitation1h
* Wed Feb 27 2019 Mika Heiskanen <[email protected]> - 19.2.27-1.fmi
- Fixed LCC WorldXyToLatLon longitude calculation to use radians in all intermediate stages
* Thu Feb 21 2019 Mika Heiskanen <[email protected]> - 19.2.21-1.fmi
- New parameters: EFIWindPrecipitation, MonthlyMaximumSnowDepth, SOTWWindGust, SOTPrecipitation (Shift Of Tails)
* Thu Feb 14 2019 Mika Heiskanen <[email protected]> - 19.2.14-1.fmi
- Added Lambert Conformal Conic projection
* Wed Feb 13 2019 Mika Heiskanen <[email protected]> - 19.2.13-1.fmi
- New fractile parameters for ERA5 data
* Fri Feb 8 2019 Mika Heiskanen <[email protected]> - 19.2.8-1.fmi
- Added WebMercator projection (EPSG:3857)
* Wed Feb 6 2019 Mika Heiskanen <[email protected]> - 19.2.6-1.fmi
- Added secondary parameters for cloud cover (total, low, middle, high)
* Mon Jan 28 2019 Mika Heiskanen <[email protected]> - 19.1.28-1.fmi
- Added parameters for snow load fractiles 0, 10, 25, 50, 75, 90 and 100
* Fri Jan 18 2019 Mika Heiskanen <[email protected]> - 19.1.18-1.fmi
- Added parameter FreezingDegreeDays
* Tue Dec 4 2018 Mika Heiskanen <[email protected]> - 18.12.4-1.fmi
- Added GrassFireIndex and ForestFireIndex
- Made some protected NFmiFastQueryInfo methods public to enable fast multithreaded writing
* Mon Nov 26 2018 Mika Heiskanen <[email protected]> - 18.11.26-1.fmi
- Add new parameter 'Snow Drift Index'
* Tue Oct 23 2018 Mika Heiskanen <[email protected]> - 18.10.23-1.fmi
- Added parameter GroundWaterLevel for measuring the absolute difference from the long term average height
- Added parameter GroundWaterLevelIndex for classifying the relative difference from the long term average height
* Sat Sep 29 2018 Mika Heiskanen <[email protected]> - 18.9.29-1.fmi
- Upgraded fmt
* Mon Sep 24 2018 Mika Heiskanen <[email protected]> - 18.9.24-1.fmi
- Added MetCoop global radiation fractile parameters
* Tue Sep 11 2018 Mika Heiskanen <[email protected]> - 18.9.11-1.fmi
- Fixed NFmiAreaFactory handling of GDAL area definitions
* Mon Sep 10 2018 Mika Heiskanen <[email protected]> - 18.9.10-1.fmi
- Fixed NFmiGdalArea AreaStr to return the datum given to it
* Thu Sep 6 2018 Pertti Kinnia <[email protected]> - 18.9.6-1.fmi
- Added missing parameter check preventing kFmiPrecipitation1h being used to produce 'weatherandcloudiness' object
* Tue Aug 28 2018 Mika Heiskanen <[email protected]> - 18.8.28-1.fmi
- Added boost_iostreams linkage
* Thu Aug 23 2018 Mika Heiskanen <[email protected]> - 18.8.23-2.fmi
- Compile NFmiEnumConverter with -O0 since compiling takes a lot of memory
* Thu Aug 23 2018 Mika Heiskanen <[email protected]> - 18.8.23-1.fmi
- Link boost date_time to the library
* Wed Aug 22 2018 Mika Heiskanen <[email protected]> - 18.8.22-1.fmi
- Fixed to compile on Windows
* Mon Aug 6 2018 Mika Heiskanen <[email protected]> - 18.8.6-2.fmi
- New parameter CAPEShear
* Mon Aug 6 2018 Mika Heiskanen <[email protected]> - 18.8.6-1.fmi
- Fixed NFmiVoidPtrList destructor not to call derived class Clear()
- New parameter InstantaneousWindGust
* Thu Aug 2 2018 Mika Heiskanen <[email protected]> - 18.8.2-1.fmi
- Fixed constructors/destructors not to call virtual methods
* Wed Aug 1 2018 Mika Heiskanen <[email protected]> - 18.8.1-1.fmi
- Use C++11 for-loops instead of BOOST_FOREACH
* Mon Jul 23 2018 Mika Heiskanen <[email protected]> - 18.7.23-1.fmi
- Fixed NFmiQueryInfo::ResetText
- Fixed potential segfault in NFmiQueryInfo::Size
- Fixed NFmiString self assignment
* Wed Jun 13 2018 Mika Heiskanen <[email protected]> - 18.6.13-1.fmi
- Removed -DBOOST, -DFMI_COMPRESSION and -DBOOST_IOSTREAMS_NO_LIB options as obsolete
* Thu Jun 7 2018 Mika Heiskanen <[email protected]> - 18.6.7-1.fmi
- New parameter: WaterTemperature
* Wed Jun 6 2018 Mikko Parviainen <[email protected]> - 18.6.6-1.fmi
- New parameter: RadarPrecipitation1d
* Tue Jun 5 2018 Mika Heiskanen <[email protected]> - 18.6.5-1.fmi
- Three new parameters: ProbabilityOfGustLimit1Aggregation1, ProbabilityOfPrecLimit1Aggregation1, ProbabilityOfHailLimit1Aggregation1
* Thu May 24 2018 Mika Heiskanen <[email protected]> - 18.5.24-1.fmi
- Optimized rotated latlon conversions for speed
* Wed May 23 2018 Mika Heiskanen <[email protected]> - 18.5.23-1.fmi
- Removed incorrect virtual specification from NFmiFastQueryInfo::PressureValues
* Mon May 21 2018 Mika Heiskanen <[email protected]> - 18.5.21-1.fmi
- Added regridding methods with relative_uv parameter to control whether U/V adjustment needs to be applied
* Wed May 2 2018 Mika Heiskanen <[email protected]> - 18.5.2-1.fmi
- Optimized NFmiEnumConverter for speed
* Thu Apr 19 2018 Pertti Kinnia <[email protected]> - 18.4.19-1.fmi
- NFmiGdalArea::AreaStr(): Return bbox at the end of projection string
- AreaFactory::Create(): Fixed parsing for NFmiGdalArea projection string (BS-1140)
* Mon Apr 16 2018 Pertti Kinnia <[email protected]> - 18.4.16-1.fmi
- GetValueAtHeight(): using ModLinear interpolation for wind direction
- PressureValue(P): fixed factor for ModLinear interpolation
* Sat Apr 7 2018 Mika Heiskanen <[email protected]> - 18.4.7-1.fmi
- Upgrade to boost 1.66
* Wed Apr 4 2018 Mika Heiskanen <[email protected]> - 18.4.4-1.fmi
- Add parameter for average mixing ratio in the lowest 500 meters
* Mon Mar 26 2018 Mika Heiskanen <[email protected]> - 18.3.26-1.fmi
- Store memory mapped file name into NFmiRawData to ease core dump analysis
* Fri Mar 23 2018 Mika Heiskanen <[email protected]> - 18.3.23-1.fmi
- New parameter: GrowingDegreeDays
* Sat Mar 10 2018 Mika Heiskanen <[email protected]> - 18.3.10-1.fmi
- Avoid ostringstream global locale locks by using fmt library for WKT formatting
* Wed Mar 7 2018 Mika Heiskanen <[email protected]> - 18.3.7-1.fmi
- Added new parameter kFmiFeelsLike needed for press production
* Thu Feb 8 2018 Mika Heiskanen <[email protected]> - 18.2.8-1.fmi
- Added explicit postgis dependency to avoid pgdg dependency problems
* Mon Jan 22 2018 Mika Heiskanen <[email protected]> - 18.1.22-1.fmi
- Improved pressure level interpolations (SOL-6124)
* Sat Jan 13 2018 Mika Heiskanen <[email protected]> - 18.1.13-1.fmi
- Fixed Lambert azimuthal equal area WKT
* Wed Jan 3 2018 Mika Heiskanen <[email protected]> - 18.1.3-1.fmi
- Do not use NetCDF Latitude and Longitude parameter numbers when converting name to integer
* Fri Dec 22 2017 Mika Heiskanen <[email protected]> - 17.12.22-1.fmi
- New parameter PrecipitationForm4
- New parameter DirectNormalIrradianceAccumulation
* Tue Dec 19 2017 Mika Heiskanen <[email protected]> - 17.12.19-1.fmi
- New parameter names for weather symbols
- New parameter name for solar radiation
* Mon Dec 11 2017 Mika Heiskanen <[email protected]> - 17.12.11-1.fmi
- Fixed LAEA CalcDelta method to divide the input by earth radius
* Wed Nov 29 2017 Mika Heiskanen <[email protected]> - 17.11.29-1.fmi
- Fixed Lambert equal area world coordinates to be scaled by earth radius
* Tue Nov 28 2017 Mika Heiskanen <[email protected]> - 17.11.28-1.fmi
- Fixed undefined behavious in assignment
* Mon Nov 27 2017 Mika Heiskanen <[email protected]> - 17.11.27-1.fmi
- Fixed potential memory leaks and nullptr dereferences
* Thu Nov 23 2017 Mika Heiskanen <[email protected]> - 17.11.23-1.fmi
- Improved error messages when trying to create empty output querydata
* Thu Nov 16 2017 Mika Heiskanen <[email protected]> - 17.11.16-1.fmi
- Added two 24h precipitation probability parameters (which are used even now, but not 'registered')
- Added short wave radiation accumulation parameter (for Harmonie / open data)
* Mon Nov 13 2017 Mika Heiskanen <[email protected]> - 17.11.13-1.fmi
- Fixed cached interpolations to work with the nearest point method
* Sun Oct 29 2017 Mika Heiskanen <[email protected]> - 17.10.29-1.fmi
- Optimized data copying from querydata to another
* Tue Oct 17 2017 Mika Heiskanen <[email protected]> - 17.10.17-1.fmi
- Added new parameters for olive pollen
* Thu Oct 5 2017 Mika Heiskanen <[email protected]> - 17.10.5-1.fmi
- New probability type parameters
* Wed Sep 27 2017 Mika Heiskanen <[email protected]> - 17.9.27-1.fmi
- Add probability parameters for MUCAPE, MLCAPE and MUCAPE -10 .. -40
* Thu Sep 14 2017 Mika Heiskanen <[email protected]> - 17.9.14-1.fmi
- NFmiGdalArea now prepends AreaStr with WGS84 so that NFmiAreaFactory can be used on the output
* Wed Sep 13 2017 Mika Heiskanen <[email protected]> - 17.9.13-2.fmi
- Added all CF standard names (http://cfconventions.org/Data/cf-standard-names/45/build/cf-standard-name-table.html)
* Wed Sep 13 2017 Mika Heiskanen <[email protected]> - 17.9.13-1.fmi
- New sounding index parameters for the last equilibrium level
* Mon Sep 11 2017 Mika Heiskanen <[email protected]> - 17.9.11-1.fmi
- Fixed NFmiRotatedLatLonArea WKT
* Mon Aug 28 2017 Mika Heiskanen <[email protected]> - 17.8.28-1.fmi
- Upgrade to boost 1.65
- Ignore use of NFmiGdalArea in NFmiArea if not UNIX
* Tue Aug 1 2017 Ville Ilkka <[email protected]> - 17.8.1-1.fmi
- Added a new parameter for 5cm snow accumulation days
* Tue Jul 25 2017 Mika Heiskanen <[email protected]> - 17.7.25-1.fmi
- Fixed NFmiBox to use delete[]
- Removed NearestMetTime method whose implementation caused infinite recursion
* Thu Jun 1 2017 Mika Heiskanen <[email protected]> - 17.6.1-1.fmi
- Add parameters for sea level fractiles, mean and deviation
* Fri May 26 2017 Mika Heiskanen <[email protected]> - 17.5.26-1.fmi
- Added sea level probability parameters
* Fri Apr 28 2017 Mika Heiskanen <[email protected]> - 17.4.28-1.fmi
- Temporary fix to HashValue methods. Will change NFmiArea::HashValue to be virtual later on.
* Tue Apr 4 2017 Mika Heiskanen <[email protected]> - 17.4.4-1.fmi
- Added support for interpolating within given time window when interpolating to given pressure or height
* Mon Apr 3 2017 Mika Heiskanen <[email protected]> - 17.4.3-1.fmi
- New methods for dealing with moving sounding data
- Bug fix to FindTimeIndicesForGivenTimeRange
* Tue Mar 28 2017 Mika Heiskanen <[email protected]> - 17.3.28-1.fmi
- Modified info masks to enable operating on climatology data at any given time in history
* Wed Mar 22 2017 Mika Heiskanen <[email protected]> - 17.3.22-1.fmi
- Added Opera ODIM parameter ZDR with name DifferentialReflectivity
- Added Opera ODIM parameter KDP with name SpecificDifferentialPhase
- Added Opera ODIM parameter PHIDP with name DifferentialPhase
- Added Opera ODIM parameter SQI with name SignalQualityIndex
- Added Opera ODIM parameter RHORV with name ReflectivityCorrelation
* Thu Mar 9 2017 Mika Heiskanen <[email protected]> - 17.3.9-1.fmi
- Added sounding tools for SmartMet Editor
* Mon Mar 6 2017 Mika Heiskanen <[email protected]> - 17.3.6-1.fmi
- Added CMakeList.txt created for the Windows build
- Minor fixes needed for by the Windows build
* Wed Mar 1 2017 Mika Heiskanen <[email protected]> - 17.3.1-1.fmi
- ProbabilityOfColdLimit5 is the probability of temperature being below -35C
* Tue Feb 28 2017 Mika Heiskanen <[email protected]> - 17.2.28-1.fmi
- Renamed AvailableEnsembleMemberPercentage to AvailableEnsembleMemberCount
- Renamed HoarFrostTemperature to FrostPoint
* Wed Feb 15 2017 Mika Heiskanen <[email protected]> - 17.2.15-1.fmi
- Added static packaging
* Mon Feb 13 2017 Mika Heiskanen <[email protected]> - 17.2.13-1.fmi
- Fixed a race condition in NFmiQueryData::LatLonCache()
* Fri Feb 10 2017 Mika Heiskanen <[email protected]> - 17.2.10-1.fmi
- Backported numerous changes from the SmartMet Editor branch
* Tue Feb 7 2017 Mika Heiskanen <[email protected]> - 17.2.7-1.fmi
- Fixed querydata copying to copy memory mapped data from the correct address
* Thu Feb 2 2017 Mika Heiskanen <[email protected]> - 17.2.2-1.fmi
- Added possibility to memory map writeable querydata
* Wed Feb 1 2017 Mika Heiskanen <[email protected]> - 17.2.1-1.fmi
- Fixed two SnowDepth fractile parameter names
- Added parameter for post-processed cloud top height (ft)
- Added parameter for average wind speed (ms)
- Added parameter for potential precipitation type (code)
- Added parameter for humidity relative to ice (%)
- Added parameter for hoar frost temperature (C)
- Added parameter for available ensemble members (%)
- Added parameter for post-processed wind gust speed
- Added four parameters for probability of wave height with different limits (%)
* Thu Jan 26 2017 Mika Heiskanen <[email protected]> - 17.1.26-1.fmi
- Added methods for calculating a hash value for the grid defined in querydata
* Tue Jan 17 2017 Mika Heiskanen <[email protected]> - 17.1.17-1.fmi
- New parameters for air pollutant concentrations
* Tue Jan 10 2017 Mika Heiskanen <[email protected]> - 17.1.10-1.fmi
- New parameter IcingRate [g/h] for wind mill icing forecasts
- New parameter IceMass [kg] for wind mill icing forecasts
* Mon Dec 19 2016 Mika Heiskanen <[email protected]> - 16.12.19-1.fmi
- Added Visibility2 (post processed)
- Added fractile parameters
* Fri Nov 18 2016 Mika Heiskanen <[email protected]> - 16.11.18-1.fmi
- Added new Copernicus parameters: kFmiFrostLayerTop and kFmiFrostLayerBottom
* Tue Nov 15 2016 Mika Heiskanen <[email protected]> - 16.11.15-2.fmi
- Fixed NFmiGdalArea to handle an unset authority name or code properly
* Tue Nov 15 2016 Mika Heiskanen <[email protected]> - 16.11.15-1.fmi
- New parameter: CloudBase2, post processed cloud base height
* Tue Sep 20 2016 Mika Heiskanen <[email protected]> - 16.9.20-1.fmi
- Fixed GdalArea to handle missing authority codes and names
* Fri Sep 9 2016 Mika Heiskanen <[email protected]> - 16.9.9-2.fmi
- Bug fix to preserving header strings
* Fri Sep 9 2016 Mika Heiskanen <[email protected]> - 16.9.9-1.fmi
- Fixed preparation code for time interpolation to preserve querydata header strings
* Wed Aug 31 2016 Mika Heiskanen <[email protected]> - 16.6.31-1.fmi
- Added safety checks against bad time resolutions in querydata headers
* Thu Jun 16 2016 Mika Heiskanen <[email protected]> - 16.6.16-1.fmi
- Fixed a bug in handling NFmiTimeBag time resolutions of multiple days
* Wed Jun 15 2016 Mika Heiskanen <[email protected]> - 16.6.15-1.fmi
- Updated logic for selecting a symbol for cloudy weather (SOL-4077)
- Updated logic for selecting a symbol for heavy thunder (SOL-4077)
* Mon Jun 13 2016 Mika Heiskanen <[email protected]> - 16.6.13-1.fmi
- Switched to cartesian nearest location searches, the approximation did not satisfy the triangle inequality
* Fri Jun 3 2016 Mika Heiskanen <[email protected]> - 16.6.3-1.fmi
- Added Clim4Energy parameters (SOL-3596)
- SkinReservoirContent, HighVegetationCover, HighVegetationType, LowVegetationType
- SoilTemperatureLevel1, SoilTemperatureLevel2, SoilTemperatureLevel3, SoilTemperatureLevel4
- VolumetricSoilWaterLayer1, VolumetricSoilWaterLayer2, VolumetricSoilWaterLayer3, VolumetricSoilWaterLayer4
* Thu May 26 2016 Mika Heiskanen <[email protected]> - 16.5.26-1.fmi
- Added SILAM parameter AreaOfRisk
* Tue May 24 2016 Mika Heiskanen <[email protected]> - 16.5.24-1.fmi
- Optimized NFmiLocationBag::IsInside for speed
* Thu May 12 2016 Mika Heiskanen <[email protected]> - 16.5.12-1.fmi
- Much faster nearest location searches for point data
* Wed May 4 2016 Mika Heiskanen <[email protected]> - 16.5.4-1.fmi
- Added sounding parameters previously known only by qdsoundingindex
* Fri Apr 8 2016 Mika Heiskanen <[email protected]> - 16.4.8-1.fmi
- Fixed a memory leak in NFmiNearTree::Clear
* Thu Mar 17 2016 Mika Heiskanen <[email protected]> - 16.3.17-1.fmi
- New parameter snow density (mass per unit of volume), kg/m3
* Thu Feb 4 2016 Tuomo Lauri <[email protected]> - 16.2.4-1.fmi
- Added gridded landscaping functionality
* Wed Feb 3 2016 Mika Heiskanen <[email protected]> - 16.2.3-1.fmi
- New parameter: PotentialPrecipitationForm
* Sun Jan 17 2016 Mika Heiskanen <[email protected]> - 16.1.17-1.fmi
- Merge from Windows SmartMet editor development:
- Added a producer for BUFR soundings
- Bug fix to subvalue extraction of weather symbols
- Bug fix to precipitation form extraction
- Bug fix to file extension extraction when there is no suffix in the file
- Bug fix to extracting given heights using masks
- Bug fix to pressure level extractions
* Thu Nov 26 2015 Mika Heiskanen <[email protected]> - 15.11.26-1.fmi
- Added a swap method for NFmiQueryData to speed up qdpress
* Mon Nov 23 2015 Mika Heiskanen <[email protected]> - 15.11.23-1.fmi
- New parameter: BoundaryLayerTurbulence
- Optimized loop order in numerous NFmiQueryDataUtil utility functions
- Limit the number of threads in area interpolations to 8
* Wed Nov 11 2015 Mika Heiskanen <[email protected]> - 15.11.11-1.fmi
- Bug fix to SetPrecipitationFormValue
* Tue Nov 10 2015 Mika Heiskanen <[email protected]> - 15.11.10-2.fmi
- Added normal assignment operators for NFmiTime and NFmiMetTime
* Tue Nov 10 2015 Mika Heiskanen <[email protected]> - 15.11.10-1.fmi
- Optimized AreaStr methods for speed
* Mon Nov 9 2015 Mika Heiskanen <[email protected]> - 15.11.9-1.fmi
- New parameters: NO-, O3-, PM10- and PM25Contents
* Wed Nov 4 2015 Mika Heiskanen <[email protected]> - 15.11.4-1.fmi
- Added boost local_date_time based constructors for NFmiTime and NFmiMetTime
- Optimized time interpolations to avoid constructing unnecessary time objects from the wall clock
* Mon Oct 26 2015 Mika Heiskanen <[email protected]> - 15.10.26-1.fmi
- Compile with -g to enable studying cores
* Tue Oct 13 2015 Mika Heiskanen <[email protected]> - 15.10.13-1.fmi
- Limit lapse rate corrections during inversion to -300...+150 meters to avoid problems at Finnish hills