forked from OPENDAP/hdf4_handler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLog
More file actions
3054 lines (2005 loc) · 87.5 KB
/
ChangeLog
File metadata and controls
3054 lines (2005 loc) · 87.5 KB
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
2020-02-10 slloyd <slloyd@localhost>
HK-544,cleaned up some compiler warnings.
2020-02-06 Muqun Yang <myang6@hdfgroup.org>
ESDIS-572, updated ChangeLog etc for Hyrax 1.16.1.
2020-01-02 Muqun Yang <myang6@hdfgroup.org>
HFRHANDLER-329,
fix the memory leaking by carrying out the internal vdata
checks at vgroup.cc.
2019-11-27 slloyd <slloyd@localhost>
HK-459 - suppressed debug messages in .yy files
2019-11-26 slloyd <slloyd@localhost>
HK-459 - Suppressing error msgs in .yy files
2019-11-14 James Gallagher <jgallagher@opendap.org>
More fixes for HK-474. Mostly comments, error text, unused code removal.
2019-10-23 slloyd <slloyd@localhost>
HK-498 - clean up of 'using' in headers
2019-10-02 slloyd <slloyd@localhost>
HK-72 - header file fixes
removed 'using' statements from BESIndent.h causing error
fixed the errors in header files in HDF4
2019-07-09 James Gallagher <jgallagher@opendap.org>
Updates for Hyrax 1.16.0
2019-07-08 Muqun Yang <myang6@hdfgroup.org>
ESDIS-560, try to define each variable in one line.
2019-07-05 Muqun Yang <myang6@hdfgroup.org>
ESDIS-560, mainly make "using namespace" not in the header files.
2019-07-03 Kent Yang <myang6@hdfgroup.org>
ESDIS-560, make some protected member private.
2019-06-19 Kent Yang <myang6@hdfgroup.org>
ESDIS-560, fix obvious issues discovered by sonar cloud in the second pass: shadow local variables, unused functions, no namespace in headers etc.
ESDIS-560, correct obvious coding style issues following sonarcloud.
ESDIS-560, correct obvious issues identified by sonar cloud for HDFEOS2Array code.
2019-05-22 Muqun Yang <myang6@hdfgroup.org>
ESDIS-560, address issues like "unused parentheses, shadow local variables, remove commented out " detected by sonarcloud.
2019-05-20 Muqun Yang <myang6@hdfgroup.org>
ESDIS-560, sonar cloud obvious issues: macro to const and remove comments, unused parentsis etc.
ESDIS-560 sonar cloud issues: mainly address the false alarm generated by the analysis tool in the error handling code. Sonar cloud doesn't know the throw macros. I use goto to direct the free memory code in one place.
2019-04-04 Cloud User <centos@ip-172-31-14-58.ec2.internal>
Changed to std::isnan(), et c., and used <cmath> inplace of just <math.h>
This seems to fix the issue with isnan() ambiguity on gcc 4.8.
2019-04-03 James Gallagher <jgallagher@opendap.org>
c++-11 fixes
2019-03-28 James Gallagher <jgallagher@opendap.org>
Removed the gcc-specific keyword 'typeof' as part of C++11 build support.
2019-03-22 James Gallagher <jgallagher@opendap.org>
Two fixes from sonar: sprintf --> snprintf
2019-03-21 Muqun Yang <myang6@hdfgroup.org>
ESDIS-562, Update the readme for the HDF4 handler.
2019-03-12 Muqun Yang <myang6@hdfgroup.org>
HFRHANDLER-325, add new AIRS version 6 das baseline files. Finish the error handling part to map AIRS version 6 EOS object attributes.
2019-03-11 Kent Yang <myang6@hdfgroup.org>
HFRHANDLER-325, add error handling code.
2019-03-11 Muqun Yang <myang6@hdfgroup.org>
HFRHANDLER-325, add more code for AIRS version 6 object mapping. Need to add error handling.
2019-03-08 Kent Yang <myang6@hdfgroup.org>
HFRHANDLER-325, more code to handle the HDFEOS2 object attributes via HDF4 APIs.
2019-03-08 Muqun Yang <myang6@hdfgroup.org>
HFRHANDLER-325, adding AIRS version vdatas of vgroups.
2019-02-20 Kodi Neumiller <kneumiller@mtech.edu>
Updated the Changelog for hdf4 and hdf5
2019-02-15 Kent Yang <myang6@hdfgroup.org>
ESDIS-559, tackle isues reported by sonarcloud.
2019-02-14 Kent Yang <myang6@hdfgroup.org>
ESDIS-559, clean up warnings/issues reported by solarcloud(some of them are false alarms).
2019-02-12 James Gallagher <jgallagher@opendap.org>
minor edits to README
Merge branch 'master' of https://github.com/opendap/hdf4_handler
Fixes based on the sonarqube static source checker
2019-02-12 Kent Yang <myang6@hdfgroup.org>
ESDIS-559 Update the README for MYD/MOD21 product scale/offset support.
2019-02-08 James Gallagher <jgallagher@opendap.org>
Updated hdf4 and hdf5_handler commit hashes
2017-09-26 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #5 from OPENDAP/coverity_scan_kent
Coverity scan kent
2017-09-26 Muqun Yang <myang6@hdfgroup.org>
HFRHANDLER-312, fix minor issues and add notes
HFRHANDLER-313, adding the valgrind shell scripts.
HDFHANDLER-312, Fixed an control flow issue identified by coverity.
2017-09-22 Muqun Yang <myang6@hdfgroup.org>
HFRHANDLER-312, trying to fix structurally dead code, past of the iterator issues in the old code
2017-09-21 Muqun Yang <myang6@hdfgroup.org>
HFRHANDLER-312, tried to fix a few issues discovered by coverity
2017-08-24 James Gallagher <jgallagher@opendap.org>
Merge branch 'header-fix'
Removed the const modifier on the bool return types on HDFEOS2.h and HDFSP.h
2017-06-21 Muqun Yang <myang6@hdfgroup.org>
HFVHANDLER-310, add MOD16A2 test to the testsuite.
2017-06-20 Muqun Yang <myang6@hdfgroup.org>
HFRHANDLER-310, make the MOD16A2 scale/offset behavior right. The scale_factor is 10000.0 and the rule is multiply. very unusual. Need to handle differently.Also keep the scale_factor and add_offset datatype if the datatype is double. One testsuite needs to be updated.
2017-06-06 Kent Yang <myang6@hdfgroup.org>
Correct a typo at README.
2017-05-30 ndp-opendap <ndp@opendap.org>
Versioning for Hyrax-1.13.5 release
2017-05-17 Nathan Potter <ndp@opendap.org>
Merge pull request #4 from OPENDAP/hyrax-399
Disabling failing test associated with a dataset that contains and unnamed array
2017-05-17 ndp-opendap <ndp@opendap.org>
Suspended tests for dataset with a nameless array.
2017-05-16 ndp-opendap <ndp@opendap.org>
Disabling failing test associated with a dataset that contains and unamed array
2017-05-16 Muqun Yang <myang6@hdfgroup.org>
EED-187, update documents for HDF4 handler for the Hyrax 1.13.4 release.
2017-05-15 Muqun Yang <myang6@hdfgroup.org>
EED-187, fix one issue discovered by the coverity scan. A redundant if-block is removed.
2017-05-11 Nathan Potter <ndp@opendap.org>
Merge pull request #3 from OPENDAP/dmr2dds
Changes to libdap4 API
2017-05-10 ndp-opendap <ndp@opendap.org>
Updated test baseline to reflect change in libdap
2017-04-14 ndp-opendap <ndp@opendap.org>
Patched get_instance() pattern so that if the cache is disabl;ed repeated calls to get_instance do not continue to execute the cache constructor.
2017-01-25 James Gallagher <jgallagher@opendap.org>
Fixed issue with the refactored BESDebug.h
2017-01-09 James Gallagher <jgallagher@opendap.org>
updated for Hyrax 1.13.3
2016-12-07 James Gallagher <jgallagher@opendap.org>
Added both palin and hdfeos tests to the Makefile.am
2016-11-21 myang6 <myang6@hdfgroup.org>
HYRAX-261, update the sample shell script to test.
HYRAX-261, improve error handling as suggested by Nathan
2016-11-18 myang6 <myang6@hdfgroup.org>
HYRAX-261, add the error handling.
HFVHANDLER-299, found a memory leak during the valgrind. This may be caused by the recent update of libdap4 and BES. Fixed it.
2016-11-18 kyang2014 <myang6@hdfgroup.org>
HFRHANDLER-299, follow the HDF5 handler to handle the format_constraint. Now the empty array can be handled. The validation of the expression constraint is simplified.
2016-11-16 kyang2014 <myang6@hdfgroup.org>
Update the format_constraint function to handle the empty array case and the condition to check the start and stop.
Minor editing
minor format editing.
HFRHANDLER-129,HFRHANDLER-159,HFRHANDLER-117, update the README file to document the "know but won't fix" issues in the HDF4 handler jira tickets.
2016-11-02 James Gallagher <jgallagher@opendap.org>
Hyrax 1.13.2
2016-09-23 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' into response_cache
deleted: bes-testsuite/h4.cf/tvset.hdf.das.bescmd.baseline
2016-09-23 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' into response_cache
deleted: bes-testsuite/h4.cf/tvset.hdf.das.bescmd.baseline
2016-09-06 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' into response_cache
2016-07-14 myang6 <myang6@hdfgroup.org>
Add the Hyrax version until 1.9.3.
2016-06-28 kyang2014 <myang6@hdfgroup.org>
ESDIS-515, remove DAP4 macro.
2016-06-03 James Gallagher <jgallagher@opendap.org>
Updates for Hyrax 1.13.1
2016-06-01 kyang2014 <myang6@hdfgroup.org>
Update NEWS for 3.12.1
2016-06-01 James Gallagher <jgallagher@opendap.org>
Hyrax 1.13.1
2016-05-20 myang6 <myang6@kituo.ad.hdfgroup.org>
Update the code according to the new coverity check. I deliberately change
some macros like throw1 to just throw and see if coverity understands the
throw and won't provide warnings for deleting the object before throwing.
Correct typos.
2016-05-18 James Gallagher <jgallagher@opendap.org>
Formatting
2016-05-13 Muqun (Kent) Yang <myang6@idap.ad.hdfgroup.org>
Update the README file to document the potential data cache issue on MacOS case-insensitive system.
Add a sample BES shell script template for testing purposes.
2016-05-12 kyang2014 <myang6@hdfgroup.org>
Update according to coverity scan. More than 90% of coverity scan for the
HDF4/5 handlers are false-alarm because coverity doesn't understand the
throw macro used in the handler.
2016-04-28 kyang2014 <myang6@hdfgroup.org>
Update README for the coming release.
2016-04-22 myang6 <myang6@kituo.ad.hdfgroup.org>
HFRHANDLER-304, change XDim and YDim values of Sinusodial projection from
km to meter; the units are also changed.
2016-03-11 kyang2014 <myang6@hdfgroup.org>
HFRHANDLER-301, when the cache is turned off, the result is wrong with the longitude.
Fixed it to make sure the correction of longitude call occur no matter whether cache
is turned off.
Update download.sh to fetch the NASA data files.
HFRHANDLER-303, the hdf4_handlerTest.with_hdfeos2.at was mistakenly replaced by the NASA tests. Recovered it.
HFRHANDLER-303, updating the calculation of YDim and XDim values.
HFRHANDLER-303, adding XDim and YDim data tests to reflect the request from LP DAAC.
HFVHANDLER-302, update the final at file.
Add valgrind at files.
Add data baseline files.
HFVHANDLER-302, changing data bescmd baseline files to reduce the package size.
Updating one bescmd file.
HFVHANDLER-302, Missing several bescmd files.
HFRHANDLER-302, forgot adding some bescmd and baseline files.
Add more NASA test files. The .at file is also updated.
Add more bescmd files
2016-03-10 kyang2014 <myang6@hdfgroup.org>
Remove the gr data test for the CF option. The CF doesn't support gr.
Update the comments to generate new baseline files.
2016-03-09 myang6 <myang6@kituo.ad.hdfgroup.org>
HFRHANDLER-300, move BES key routines to the constructor of the HDF4RequestHandler class.
2016-03-09 kyang2014 <myang6@hdfgroup.org>
HFRHANDLER-300, using the Beskey function in the HDF4RequestHandler.cc constructor for more .cc files.
HFVHANDLER-301, correct the longitude value to be within -180 and 180 when the geo cache is turned on.
2016-03-08 kyang2014 <myang6@hdfgroup.org>
HFVHANDLER-301, add a comment to fix the issue.
HFVHANDLER-300, using the BES keys from the ctors at several .cc files. More is coming.
HFVHANDLER-300, adding the download.sh to obtain the NASA files.
HFRHANDLER-300, adding AIRS version 6 to the NASA test.
HFRHANDLER-300, adding AIRS version 6 product to the NASA test.
2016-03-07 kyang2014 <myang6@hdfgroup.org>
HFRHANDLER-300, add the helper function to obtain the string and int at the constructor.
HFRHANDLER-300, move BES keys to the constructor. Need to tackle the cache path, prefix etc. keys
Make the local branch consistent with the master branch Merge branch 'master' into hdf4_handler_local
2016-02-12 James Gallagher <jgallagher@opendap.org>
Patch for gcc-6 from Orion Poplawski
2016-02-05 James Gallagher <jgallagher@opendap.org>
Added a note about metadata caching overrding EnablePassFileID
2016-02-04 kyang2014 <myang6@hdfgroup.org>
Trim the code to handle attributes.
HFRHANDLER-298, don't generate a . for infinite floating-point number in the DAP DAS.
2016-02-03 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' into hyrax_release_1.13
2016-01-27 kyang2014 <myang6@hdfgroup.org>
InternalErr was misused in many of the .cc code. Often a throw is forgotten
to be added before this function. Also use bes.with_hdfeos2.conf instead of
bes.conf in the hdf4_handlerTest.nasa.with_hdfeos2.at to reflect the CF option
being turned on.
2016-01-26 James Gallagher <jgallagher@opendap.org>
Updated ChangeLog, etc., for the bes 3.17 release
2016-01-07 myang6 <myang6@kituo.ad.hdfgroup.org>
Update comments for BES cache keys
2016-01-07 kyang2014 <myang6@hdfgroup.org>
update the description of BES cache keys
2016-01-07 myang6 <myang6@kituo.ad.hdfgroup.org>
Update comments for BES cache keys
2016-01-07 kyang2014 <myang6@hdfgroup.org>
update the description of BES cache keys
2015-11-20 root <root@localhost.localdomain>
Add another sample HDF-EOS2 file grid_1_2d.hdf. This will be very handy for
quick check of the HDF-EOS2 behavior.
2015-10-27 James Gallagher <jgallagher@opendap.org>
Update for bes 3.16.0 release
2015-10-23 root <root@localhost.localdomain>
This check-in removes some defects from the coverity scan. Most of
them minor issues. Some high impact issues reported by coverity
are false alarms to my best knowledge. For example, coverity will
report a memory illegal issue for codes like this: Attr *attr =
new Attributes(); if(API failed) { delete attr; throw an error; }
string attrname= attr->name; Since it thinks attr may be deleted
and it should not be referenced. However, it doesn't consider the
throw error line because that line assures that attr will never be
referenced if it is deleted. ----
2015-10-16 James Gallagher <jgallagher@opendap.org>
Removed this very old file deleted: nph-hdf.in
2015-10-07 Nathan Potter <ndp@opendap.org>
Patched bug in new caching code.
2015-10-06 Nathan Potter <ndp@opendap.org>
Merge branch 'cache_control_patch_02'
2015-10-05 Nathan Potter <ndp@opendap.org>
Repaird bugs in BESH4MCache w.r.t. it's use of
BESFileLockingCacahe and it's singleton lifcycle.
2015-10-01 James Gallagher <jgallagher@opendap.org>
Spelling
2015-10-01 Nathan Potter <ndp@opendap.org>
Committing changes (mostly to bes.conf.in files) in support of
changing ubiquitos use of BES.CacheDir, BES.CachePrefix, and
BES.CacheSize to specifically reference the decompression
cache (which is waht it actually is) so as to avoid cache
configuration collisions with various handlers that also were
utilizing teh same cache with different expectations. Now, by
calling these BES keys BES.UncompressCache.dir,
BES.UncompressCache.prefix, and BES.UncompressCache.size we
specifically isolate the decompression cache configuration from
the other caches.
2015-09-30 James Gallagher <jgallagher@opendap.org>
Fixed the missing version problem.
2015-09-23 James Gallagher <jgallagher@opendap.org>
Fixes to Makefile.am in the autotest dirs; clean removes bes.conf
2015-09-20 James Gallagher <jgallagher@opendap.org>
Version 3.11.8
Version 3.11.8
2015-09-18 James Gallagher <jgallagher@opendap.org>
Merge pull request #2 from OPENDAP/hdf4_handler_local
Use the correct way to handle erase operation in an iterator>
2015-09-18 muqun yang <myang6@hdfgroup.org>
Use the correct way to handle erase operation in an iterator>
2015-09-18 James Gallagher <jgallagher@opendap.org>
Merge pull request #2 from OPENDAP/hdf4_handler_local
Use the correct way to handle erase operation in an iterator>
2015-09-18 muqun yang <myang6@hdfgroup.org>
Use the correct way to handle erase operation in an iterator>
2015-09-15 kyang2014 <kyang2014@users.noreply.github.com>
Merge pull request #1 from OPENDAP/hdf4_handler_local
1. Mainly update the documents(version , new keys and new features/bu…
2015-09-15 muqun yang <myang6@hdfgroup.org>
1. Mainly update the documents(version , new keys and new features/bug fixes) 2. Remove USE_DAP4 macro from the source code since Hyrax is including DAP4 by default
2015-09-11 James Gallagher <jgallagher@opendap.org>
Modified Makefile.am to support distcheck
2015-08-28 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' of https://github.com/opendap/hdf4_handler
Spelling in h4.conf.in
2015-08-04 James Gallagher <jgallagher@opendap.org>
Fixed package.m4 in the autoconf dirs Makefile.am files
2015-07-23 Kent Yang <myang6@hdfgroup.org>
Add 1-D horizontal CF cv variables and corresponding CF attributes for the HDF-EOS2 sinussoidal projection products.
2015-06-24 Muqun (Kent) Yang <myang6@jam.hdfgroup.uiuc.edu>
Make the code follow the snapshot version.(BESStopwatch can be
used to track performance.)
This check-in 1) Improves the performance of special NASA products
2) Fixes a bug when casting values via pointers between different
datatypes. This is revealed via gcc 4.8.2 at CentOS 6. 3) Fixes
the missing attributes under "Geolocation Fields" of HDF-EOS2
swath. 4) Also fixes a bug to access TRMM version 7 3A25 products.
2015-06-23 James Gallagher <jgallagher@opendap.org>
I patched the call to Split() HDFCFUtil::Split() expected that the
arrribute text (well text, it doesn't know it's an attribute) is
null terminated. However, the text comes from a vector<char> and I
can see the 16 calls in HDFSP.cc that assign to Attribute::value
are not appending a null - at least the ones I looked at. My
patch/hack copies the text, glues on a null and then calls
Split(). This works fine since the result of Split() is a new
variable. The valgrind off-by-one errors are now gone.
2015-06-22 James Gallagher <jgallagher@opendap.org>
Added a data file and bescmd to the valgrind branch
Working on errors for TRMM 7 reported by valgrind.
2015-06-05 James Gallagher <jgallagher@opendap.org>
Added USE_DAP4 to AM_CPPFLAGS.
2015-05-22 Nathan Potter <ndp@opendap.org>
Merge branch 'master' of https://github.com/opendap/hdf4_handler
Added new BESStopWatch support.
2015-04-10 muqun yang <myang6@hdfgroup.org>
Update Makefile.am and at files to reduce the package size. Some big testing data files will be removed. One big data file test and one big ddx file test are removed. Comments are made in the at files to reflect the change.
Update Makefile.am and at files to reduce the package size. Some big testing data files will be removed. One big data file test and one big ddx file test are removed. Comments are made in the at files to reflect the change.
Update Makefile.am and at files to reduce the package size. Some big testing data files will be removed. One big data file test and one big ddx file test are removed. Comments are made in the at files to reflect the change.
Update Makefile.am and at files to reduce the package size. Some big testing data files will be removed. One big data file test and one big ddx file test are removed. Comments are made in the at files to reflect the change.
2015-04-09 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' of https://github.com/opendap/hdf4_handler
Modified Makefile.am to support bes distcheck
2015-04-06 James Gallagher <jgallagher@opendap.org>
Version 3.11.7
2015-03-19 James Gallagher <jgallagher@opendap.org>
Fix for distclean and the modules build.
2015-03-05 James Gallagher <jgallagher@opendap.org>
Fixed comment about EnableCF in h4.conf.in
EnableCF defaults to false - that is, if the option
is not presnet, it's off.
2015-03-04 opendap <support@opendap.org>
Removed one test until we get a fix in.
Should be marked xfail, but the hdf4 handler tests don't
have that option.
2015-02-02 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' of https://github.com/opendap/hdf4_handler
2015-01-16 James Gallagher <jgallagher@opendap.org>
Removed dist-hook which as a hack for SVN
Added #include <string>
2015-01-05 muqun yang <myang6@hdfgroup.org>
Update Makefile.am and the testsuite file to harmonize with the
check-in of removing a big testing file
2014-12-21 Muqun Yang <myang6@hdfgroup.org>
Remove 1C21 HDF file from the testsuite since the file size is 39M
and it occupies close to 90% of the package. Other sample NASA HDF
files are still kept so removing this file doesn't affect the
completeness of the whole testsuite. The only side-effect is that
users may not have a bigger HDF file to test with Hyrax. This is
minimal because users can go to HDF group's website to obtain big
sample HDF file.
2014-12-12 James Gallagher <jgallagher@opendap.org>
Fixed configure.ac after merging with the modules branch
Merge remote-tracking branch 'origin/modules'
2014-12-07 James Gallagher <jgallagher@opendap.org>
Added module name and version info to Makefile.am
This change was made to support the modules build where the autoconf
symbols PACKAGE_NAME and _MODULE are defined by the bes configure
script. This meant that the version response from the bes was useless
since it listed every module as 'bes' and gave the bes' version
number.
2014-12-05 James Gallagher <jgallagher@opendap.org>
Added a config_hdf.h since it was/is made using the local configure.ac
2014-12-04 James Gallagher <jgallagher@opendap.org>
I added a spec file named ...no_eos2.
Building the RPMs for the hdfeos2 version is a bit of a pain, but
I made it a bit simpler by adding a special spec file for the straight
build and hacking the hdfeos build so it makes rpms with hdfeos2
in their names. It looks for the hdfeos2 library in $prefix/deps.
2014-12-03 James Gallagher <jgallagher@opendap.org>
Updated for 3.11.6
2014-11-30 James Gallagher <jgallagher@opendap.org>
Added hdf4_handler to the bes modules build.
2014-11-03 Kent Yang <myang6@hdfgroup.org>
update BES keys info.
Add known issues
2014-10-29 Kent Yang <myang6@hdfgroup.org>
Remove compiler warning caught when testing the build of RPM with
HDF4 only. Also comment out the dap4 check in configure.ac. This
is still for DAP2 release. DAP4 will be migrated separately.
For 3.11.6 release, migrate from local svn at the HDF group to
opendap svn.
For HDF4 handler 3.11.6 release. Migrate code from local svn at
the hdfgroup to OPeNDAP's svn. Tested at MacOS, Linux CentOS 6.5
64-bit.
2014-10-27 MuQun Yang <myang6@hdfgroup.org>
* README: Added more information for this release.
* USAGE: Emphasized the BES keys reading in the h4.conf.in.
* NEWS: Added more information for this release.
2014-10-17 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* hdf4_handler.spec: changed version.
* hdf4_handler.spec.cf: changed version.
* README: changed the planned release date from 9/30/13 to 5/30/13.
* INSTALL: changed version and updated HDF4 version.
* configure.ac: changed version to 3.11.6
* NEWS:updated what's new.
* Makefile.am: added DIST_SBUDIRS.
2014-03-06 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* HDFCFUtil.cc:added _FillValue attribute size checker.
2014-02-07 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* bes-testsuite:NASA data w/ hdf-eos2 optoin testing uses the new key combination.
2014-01-28 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
Optimized handler for MOD08_M3 and AIRS version 6 with new BES keys.
* USAGE:updated to have NcML handler instruction.
2013-11-20 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* HDFEOS2Array_RealField.cc
* HDFEOS2ArraySwathDimMapField.cc
fixed a memory leak that occurs when handler serves MYD021KM product.
2013-10-22 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* HDFCFUtil.h
* HDFCFUtil.cc
* HE2CF.cc
escaped non-printable characters properly for DDX generation when
EnableCF option is true.
* HDFSP.c:
The number of dimension attribute should apply to ONE dimension only.
The previous version mixed the number of dimension attribute from one
dimension with another. Fixed it in this version.
2013-10-11 James Gallagher <jgallagher@opendap.org>
* HDFSequence.cc
* HDFSPArray_RealField.cc
* HDFSPArray_VDField.cc
* HDFSPArrayGeoField.cc
* HDFSPArrayMissField.cc
* HDFStructure.cc:
Edits to match the new, sane, semantics for BaseType::read(). True
now means done/eof and flase means more data to read (more
instances for a sequence). All the tests pass.
2013-10-01 James Gallagher <jgallagher@opendap.org>
Updated the FSF address in the copyright headers
2013-09-26 James Gallagher <jgallagher@opendap.org>
removed -fno-defer-pop from all copies of Makefile.am since the
new OSX compiler prints warnings about it and it seems to not make
a difference with newer g++ versions.
2013-09-24 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
corrected HDF4 configuration option name.
2013-09-18 Nathan Potter <ndp@coas.oregonstate.edu>
hdf4_handler: Adding new dataset to install target.
2013-09-17 Nathan Potter <ndp@coas.oregonstate.edu>
hdf4_handler: Adding dataset to test suite.
2013-09-10 Nathan Potter <ndp@coas.oregonstate.edu>
hdf4_handler: Updated ChangeLog, NEWS, INSTALL, etc. for Hyrax 1.9
2013-09-10 Nathan Potter <ndp@coas.oregonstate.edu>
hdf4_handler: Updated ChangeLog, NEWS, INSTALL, etc. for Hyrax 1.9
2013-09-06 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
cleaned up codes after addressing security audit issues.
2013-09-06 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
cleaned up code issues.
2013-09-06 MuQun Yang <myang6@hdfgroup.org>
* hdfdesc.cc, HDFSP.cc
cleaned up code issues.
2013-08-28 MuQun Yang <myang6@hdfgroup.org>
* HDFSP.cc, hc2dap.cc, HDFSPArrayGeoField.cc, HE2CF.cc|h
* HDF4RequestHandler.cc, HDFGrid.cc
improved code.
2013-08-26 James Gallagher <jgallagher@opendap.org>
* hdfeos.yy: removed an include that intoruced a loop.
* Makefile.am: fixed distcheck.
2013-08-15 James Gallagher <jgallagher@opendap.org>
* eosdas-test.cc
* hdfdesc.cc
* hdfeos.lex
fixed the bison/flex parser/scanner code so that it works with a
modern version (2.5++) of bison.
2013-08-15 MuQun Yang <myang6@hdfgroup.org>
* HDFCFUtil.cc: changed the way to output DAP string attributes.
2013-07-30 MuQun Yang <myang6@hdfgroup.org>
* HDFSP*.cc|h, HE2*.cc|h, HDFEOS2.cc|h, HDFCF*.cc|h
improved code readability.
improved archivemetadata handling in CERES.
corrected NSIDC MOD29 product handling.
* h4.conf.in, bes-testsuite/bes.conf.with_hdfeos2.in:
EnableCERESVdata key is added.
EnableMODISMISRVdata key is renamed to EnableHybridVdata.
* Makefile.am:removed two redundant source code files
HDFEOS2ArraySwathGeoDimMapField.cc(.h)
2013-05-09 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* hdf4_handler.spec: changed version.
* README: changed the planned release date from 9/30/13 to 5/30/13.
* INSTALL: changed version and updated HDF4 version.
* configure.ac: changed version to 3.11.0
* NEWS:updated what's new.
* Makefile.am: added DIST_SBUDIRS.
2013-01-24 MuQun Yang <myang6@hdfgroup.org>
Support special scale and offset for NASA MEaSuRES VIP products and
AMSR_E level 2 products.
Also changing the conventions for renaming scale and offset attributes
if the file doesn't follow the CF conventions. The attribute name
scale_factor will be renamed to "orig_scale_factor" instead of
"scale_factor_modis". The simliar conventions applies to add_offset.
2012-11-27 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* HDFEOS2.cc
* HDFEOS2.h
* HDFEOS2Array_RealField.cc
* hdfdesc.cc:
fixed some MODS scale offset handling bugs for multiple grid cases.
* HDFEOS*.cc
* HDFSP*.cc:
formatted indentation.
2012-10-26 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* NEWS
* configure.ac
* hdf4_handler.spec
changed version to 3.10.1.
2012-01-19 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* README: updated to have known bugs and details about MODIS
scale/offset rule implementation.
2012-01-17 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* HDFEOS2.h
* hdfdesc.cc
* HDFEOS2ArrayGridGeoField.cc
* HDFEOS2.cc
updated the above files to fix LAMAZ problem.
2012-01-13 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* NEWS: added what's new in this release.
* README: updated new features.
* INSTALL: updated versions and added more information about
--with-hdfeo2 option.
* hdf4_handler.cf.spec: added for those who are interested in building
custom RPM using --with-hdfeos2 option.
2012-01-12 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* HE2CF.cc (print_attr): fixed bug for uint16/uint32 type handling.
* hdfdesc.cc (print_attr): fixed bug for uint16/uint32 type handling.
2012-01-11 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* HDFEOS2.cc: fixed the bug for LAMAZ visualization anomaly.
2012-01-10 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* Makefile.am: added hdfdesc.h
2012-01-10 hyoklee
added the missing file that caused RPM build failure with
--with-hdfeos2 option.
2012-01-09 James Gallagher <jgallagher@opendap.org>
Code review.
2012-01-09 hyoklee
Corrected scale/offset for MODIS products. Added LAMAZ/SOM
projection support. See ChangeLog for details.
2012-01-09 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* configure.ac: changed version number to 3.9.4.
* hdf4_handler.spec: changed version number to 3.9.4.
* hdfesc.cc: improved MODIS scale/offset handling and OBPG support.
* hdfdesc.h: added for MODIS and MISR product support.
* HDEEOPS2ArrayGridGeoField.cc: added SOM projection support.
* HDEEOPS2ArrayGridGeoField. (CalculateSpeLatLon)h: renamed to
CalculateLAMAZLatLon().
* HDFEOS2Array_RealField.cc: corrected scale/offset application in
MODIS products.
* HDFEOS2ArraySwathDimMapField.cc: corrected scale/offset application in
MODIS products.
* Makefile.am: added files for MISR product support.
* misr_init.cc, misrinv.cc, misrproj.h, errormacros.h: added.
2012-01-06 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* HE2CFUniqName.cc (set_uniq_name): removed exit(-1) function.
2011-12-22 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* HDFSP.cc (File::prepare): Replaced map[key]=val assignments for
string:string map.
* HDFEOS2.cc (insert_map): is added. Replaced map[key]=val assignments
for string:string map.
2011-08-18 James Gallagher <jgallagher@opendap.org>
2010-03-18 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* enable-short-name option is added.
2010-03-17 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* CF option is removed.
2010-02-04 Shu Zhang <szhang23@hdfgroup.org>
* HE2CFValidChar.cc is added.
2010-02-04 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* HDF4RequestHandler.cc removed the use of cache
* hdfdesc.cc removed the use of cache
2010-01-25 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* bes-testsuite Updated baseline files
2009-12-28 Hyo-Kyung Lee <hyoklee@hdfgroup.org>
* HDFEOS The first bug fix effort by Kent for Ticket #1451.
2009-10-05 James Gallagher <jgallagher@opendap.org>
This is a release of the HDF4 handler with special features for
NASA HDFEOS data files. The modifications were made by The HDF
Group in conjunction with opendap, inc. The handler will work as
before on regular files - see the README and INSTALL files for
information regarding enabling these new features.
A http://scm.opendap.org/svn/tags/hdf4_handler/3.7.15
2009-09-25 James Gallagher <jgallagher@opendap.org>
It just seems right to save things at this point. Most of the
configure.ac files have been updated. The libdap software has had
a number of the FILE* methods/functions commented out using #if
FILE_METHODS and then #undef FILE_METHODS. We'll see how much of
the redundant code can be removed before the next Hyrax 1.6
release.
2009-09-08 hyoklee