Granule.java
31.7 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
/*
* This file is a part of EpnTAPClient.
* This program aims to provide EPN-TAP support for software clients, like CASSIS spectrum analyzer.
* See draft specifications: https://voparis-confluence.obspm.fr/pages/viewpage.action?pageId=559861
* Copyright (C) 2016 Institut de Recherche en Astrophysique et Planétologie.
*
* This program is free software: you can
* redistribute it and/or modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, either version 3 of the License, or (at your option) any later
* version. This program is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details. You should have received a copy of
* the GNU General Public License along with this program. If not, see
* <http://www.gnu.org/licenses/>.
*/
package eu.omp.irap.vespa.epntapclient.granule;
import java.util.Date;
import java.util.HashMap;
import java.util.Map;
/**
* @author N. Jourdane
*/
public class Granule {
/** Estimate file size in kbyte (with this spelling) */
private int accessEstsize;
/** */
private String accessFormat;
/** MD5 Hash for the file when available (real file) */
private String accessMd5;
/** */
private String accessUrl;
/** Provides alternative target name if more common (e.g. comets) */
private String altTargetName;
/** Bibcode, doi, or other biblio id, URL */
private String bibReference;
/** Max of first coordinate. */
private Double c1Max;
/** Min of first coordinate. */
private Double c1Min;
/** Max resolution in first coordinate. */
private Double c1ResolMax;
/** Min resolution in first coordinate. */
private Double c1ResolMin;
/** Max of second coordinate. */
private Double c2Max;
/** Min of second coordinate. */
private Double c2Min;
/** Max resolution in second coordinate. */
private Double c2ResolMax;
/** Min resolution in second coordinate. */
private Double c2ResolMin;
/** Max of third coordinate. */
private Double c3Max;
/** Min of third coordinate. */
private Double c3Min;
/** Max resolution in third coordinate. */
private Double c3ResolMax;
/** Min resolution in third coordinate. */
private Double c3ResolMin;
/** Date of first entry of this granule */
private Date creationDate;
/**
* If access_format indicates a detached label, this parameter is mandatory and points to the
* corresponding data file - both will be handled by the client before samping it to tools or
* downloading
*/
private String dataAccessUrl;
/** Organization of the data product, from enumerated list. */
private String dataproductType;
/** Declination */
private double dec;
/** Max emergence angle. */
private Double emergenceMax;
/** Min emergence angle. */
private Double emergenceMin;
/** */
private String featureName;
/** Name of the data file only, case sensitive */
private String fileName;
/**
* Common to granules of same type (e.g. same map projection, or geometry data products). Can be
* alphanum.
*/
private String granuleGid;
/** Internal table row index. Unique ID in data service, also in v2. Can be alphanum. */
private String granuleUid;
/** Max incidence angle (solar zenithal angle). */
private Double incidenceMax;
/** Min incidence angle (solar zenithal angle). */
private Double incidenceMin;
/** Standard name of the observatory or spacecraft. */
private String instrumentHostName;
/** Standard name of instrument */
private String instrumentName;
/** Local time at observed region */
private double localTimeMax;
/** Local time at observed region */
private double localTimeMin;
/** UCD(s) defining the data */
private String measurementType;
/** Date of last modification (used to handle mirroring) */
private Date modificationDate;
/**
* Associates granules derived from the same data (e.g. various representations / processing
* levels). Can be alphanum., may be the ID of original observation.
*/
private String obsId;
/** */
private double particleSpectralRangeMax;
/** */
private double particleSpectralRangeMin;
/** */
private double particleSpectralResolutionMax;
/** */
private double particleSpectralResolutionMin;
/** */
private double particleSpectralSamplingStepMax;
/** */
private double particleSpectralSamplingStepMin;
/** */
private String particleSpectralType;
/** Max phase angle. */
private Double phaseMax;
/** Min phase angle. */
private Double phaseMin;
/** CODMAC calibration level in v1 */
private Integer processingLevel;
/** Resource publisher */
private String publisher;
/** */
private double ra;
/** */
private Date releaseDate;
/** */
private String serviceTitle;
/** Max Solar longitude Ls (location on orbit / season) */
private double solarLongitudeMax;
/** Min Solar longitude Ls (location on orbit / season) */
private double solarLongitudeMin;
/** ID of specific coordinate system and version */
private String spatialCoordinateDescription;
/** Flavor of coordinate system, defines the nature of coordinates. From enumerated list. */
private String spatialFrameType;
/** Defines the frame origin */
private String spatialOrigin;
/** Identifies a chemical species, case sensitive */
private String species;
/** Max spectral range (frequency). */
private Double spectralRangeMax;
/** Min spectral range (frequency). */
private Double spectralRangeMin;
/** Max spectral resolution. */
private Double spectralResolutionMax;
/** Min spectral resolution. */
private Double spectralResolutionMin;
/** Max spectral sampling step. */
private Double spectralSamplingStepMax;
/** Min spectral sampling step. */
private Double spectralSamplingStepMin;
/** ObsCore-like footprint, assume spatial_coordinate_description. */
private String sRegion;
/** Type of target, from enumerated list. */
private String targetClass;
/** Observer-target distance */
private double targetDistanceMax;
/** Observer-target distance */
private double targetDistanceMin;
/** Standard IAU name of target (from a list related to target class), case sensitive. */
private String targetName;
/** */
private String targetRegion;
/** */
private double targetTimeMax;
/** */
private double targetTimeMin;
/** URL of a thumbnail image with predefined size (png ~200 pix, for use in a client only) */
private String thumbnailUrl;
/** Max integration time. */
private Double timeExpMax;
/** Min integration time. */
private Double timeExpMin;
/**
* Acquisition stop time (in JD). UTC measured at time_origin location (default is observer's
* frame).
*/
private Double timeMax;
/**
* Acquisition start time (in JD). UTC measured at time_origin location (default is observer's
* frame)
*/
private Double timeMin;
/** */
private String timeOrigin;
/** Max time sampling step. */
private Double timeSamplingStepMax;
/** Min time sampling step. */
private Double timeSamplingStepMin;
/** */
private String timeScale;
/**
* Constructor of Granule
*
* @param granuleUid The granule identifier.
*/
public Granule(String granuleUid) {
this.granuleUid = granuleUid;
}
public Map<String, Object> asMap() {
Map<String, Object> map = new HashMap<>();
map.put(GranuleEnum.GRANULE_UID.toString(), granuleUid);
map.put(GranuleEnum.GRANULE_GID.toString(), granuleGid);
map.put(GranuleEnum.OBS_ID.toString(), obsId);
map.put(GranuleEnum.DATAPRODUCT_TYPE.toString(), dataproductType);
map.put(GranuleEnum.TARGET_NAME.toString(), targetName);
map.put(GranuleEnum.TARGET_CLASS.toString(), targetClass);
map.put(GranuleEnum.TIME_MIN.toString(), timeMin);
map.put(GranuleEnum.TIME_MAX.toString(), timeMax);
map.put(GranuleEnum.TIME_SAMPLING_STEP_MIN.toString(), timeSamplingStepMin);
map.put(GranuleEnum.TIME_SAMPLING_STEP_MAX.toString(), timeSamplingStepMax);
map.put(GranuleEnum.TIME_EXP_MIN.toString(), timeExpMin);
map.put(GranuleEnum.TIME_EXP_MAX.toString(), timeExpMax);
map.put(GranuleEnum.SPECTRAL_RANGE_MIN.toString(), spectralRangeMin);
map.put(GranuleEnum.SPECTRAL_RANGE_MAX.toString(), spectralRangeMax);
map.put(GranuleEnum.TIME_SAMPLING_STEP_MIN.toString(), timeSamplingStepMin);
map.put(GranuleEnum.TIME_SAMPLING_STEP_MAX.toString(), timeSamplingStepMax);
map.put(GranuleEnum.SPECTRAL_RESOLUTION_MIN.toString(), spectralResolutionMin);
map.put(GranuleEnum.SPECTRAL_RESOLUTION_MAX.toString(), spectralResolutionMax);
map.put(GranuleEnum.C1MIN.toString(), c1Min);
map.put(GranuleEnum.C1MAX.toString(), c1Max);
map.put(GranuleEnum.C2MIN.toString(), c2Min);
map.put(GranuleEnum.C2MAX.toString(), c2Max);
map.put(GranuleEnum.C3MIN.toString(), c3Min);
map.put(GranuleEnum.C3MAX.toString(), c3Max);
map.put(GranuleEnum.S_REGION.toString(), sRegion);
map.put(GranuleEnum.C1_RESOL_MIN.toString(), c1ResolMin);
map.put(GranuleEnum.C1_RESOL_MAX.toString(), c1ResolMax);
map.put(GranuleEnum.C2_RESOL_MIN.toString(), c2ResolMin);
map.put(GranuleEnum.C2_RESOL_MAX.toString(), c2ResolMax);
map.put(GranuleEnum.C3_RESOL_MIN.toString(), c3ResolMin);
map.put(GranuleEnum.C3_RESOL_MAX.toString(), c3ResolMax);
map.put(GranuleEnum.SPATIAL_FRAME_TYPE.toString(), spatialFrameType);
map.put(GranuleEnum.INCIDENCE_MIN.toString(), incidenceMin);
map.put(GranuleEnum.INCIDENCE_MAX.toString(), incidenceMax);
map.put(GranuleEnum.EMERGENCE_MIN.toString(), emergenceMin);
map.put(GranuleEnum.EMERGENCE_MAX.toString(), emergenceMax);
map.put(GranuleEnum.PHASE_MIN.toString(), phaseMin);
map.put(GranuleEnum.PHASE_MAX.toString(), phaseMax);
map.put(GranuleEnum.INSTRUMENT_HOST_NAME.toString(), instrumentHostName);
map.put(GranuleEnum.INSTRUMENT_NAME.toString(), instrumentName);
map.put(GranuleEnum.MEASUREMENT_TYPE.toString(), measurementType);
map.put(GranuleEnum.PROCESSING_LEVEL.toString(), processingLevel);
map.put(GranuleEnum.CREATION_DATE.toString(), creationDate);
map.put(GranuleEnum.MODIFICATION_DATE.toString(), modificationDate);
map.put(GranuleEnum.RELEASE_DATE.toString(), releaseDate);
map.put(GranuleEnum.SERVICE_TITLE.toString(), serviceTitle);
return map;
}
@Override
public boolean equals(Object that) {
if (this == that) {
return true;
}
if (!(that instanceof Granule)) {
return false;
}
Granule thatGranule = (Granule) that;
for (Map.Entry<String, Object> parameter : asMap().entrySet()) {
Object val1 = parameter.getValue();
Object val2 = thatGranule.asMap().get(parameter.getKey());
if (!val1.equals(val2)) {
return false;
}
}
return true;
}
/**
* @return the accessEstsize
*/
public int getAccessEstsize() {
return accessEstsize;
}
/**
* @return the accessFormat
*/
public String getAccessFormat() {
return accessFormat;
}
/**
* @return the accessMd5
*/
public String getAccessMd5() {
return accessMd5;
}
/**
* @return the accessUrl
*/
public String getAccessUrl() {
return accessUrl;
}
/**
* @return the altTargetName
*/
public String getAltTargetName() {
return altTargetName;
}
/**
* @return the bibReference
*/
public String getBibReference() {
return bibReference;
}
/**
* @return the c1Max
*/
public Double getC1Max() {
return c1Max;
}
/**
* @return the c1Min
*/
public Double getC1Min() {
return c1Min;
}
/**
* @return the c1ResolMax
*/
public Double getC1ResolMax() {
return c1ResolMax;
}
/**
* @return the c1ResolMin
*/
public Double getC1ResolMin() {
return c1ResolMin;
}
/**
* @return the c2Max
*/
public Double getC2Max() {
return c2Max;
}
/**
* @return the c2Min
*/
public Double getC2Min() {
return c2Min;
}
/**
* @return the c2ResolMax
*/
public Double getC2ResolMax() {
return c2ResolMax;
}
/**
* @return the c2ResolMin
*/
public Double getC2ResolMin() {
return c2ResolMin;
}
/**
* @return the c3Max
*/
public Double getC3Max() {
return c3Max;
}
/**
* @return the c3Min
*/
public Double getC3Min() {
return c3Min;
}
/**
* @return the c3ResolMax
*/
public Double getC3ResolMax() {
return c3ResolMax;
}
/**
* @return the c3ResolMin
*/
public Double getC3ResolMin() {
return c3ResolMin;
}
/**
* @return the creationDate
*/
public Date getCreationDate() {
return creationDate;
}
/**
* @return the dataAccessUrl
*/
public String getDataAccessUrl() {
return dataAccessUrl;
}
/**
* @return the dataproductType
*/
public String getDataproductType() {
return dataproductType;
}
/**
* @return the dec
*/
public double getDec() {
return dec;
}
/**
* @return the emergenceMax
*/
public Double getEmergenceMax() {
return emergenceMax;
}
/**
* @return the emergenceMin
*/
public Double getEmergenceMin() {
return emergenceMin;
}
/**
* @return the featureName
*/
public String getFeatureName() {
return featureName;
}
/**
* @return the fileName
*/
public String getFileName() {
return fileName;
}
/**
* @return the granuleGid
*/
public String getGranuleGid() {
return granuleGid;
}
/**
* @return the granuleUid
*/
public String getGranuleUid() {
return granuleUid;
}
/**
* @return the incidenceMax
*/
public Double getIncidenceMax() {
return incidenceMax;
}
/**
* @return the incidenceMin
*/
public Double getIncidenceMin() {
return incidenceMin;
}
/**
* @return the instrumentHostName
*/
public String getInstrumentHostName() {
return instrumentHostName;
}
/**
* @return the instrumentName
*/
public String getInstrumentName() {
return instrumentName;
}
/**
* @return the localTimeMax
*/
public double getLocalTimeMax() {
return localTimeMax;
}
/**
* @return the localTimeMin
*/
public double getLocalTimeMin() {
return localTimeMin;
}
/**
* @return the measurementType
*/
public String getMeasurementType() {
return measurementType;
}
/**
* @return the modificationDate
*/
public Date getModificationDate() {
return modificationDate;
}
/**
* @return the obsId
*/
public String getObsId() {
return obsId;
}
/**
* @return the particleSpectralRangeMax
*/
public double getParticleSpectralRangeMax() {
return particleSpectralRangeMax;
}
/**
* @return the particleSpectralRangeMin
*/
public double getParticleSpectralRangeMin() {
return particleSpectralRangeMin;
}
/**
* @return the particleSpectralResolutionMax
*/
public double getParticleSpectralResolutionMax() {
return particleSpectralResolutionMax;
}
/**
* @return the particleSpectralResolutionMin
*/
public double getParticleSpectralResolutionMin() {
return particleSpectralResolutionMin;
}
/**
* @return the particleSpectralSamplingStepMax
*/
public double getParticleSpectralSamplingStepMax() {
return particleSpectralSamplingStepMax;
}
/**
* @return the particleSpectralSamplingStepMin
*/
public double getParticleSpectralSamplingStepMin() {
return particleSpectralSamplingStepMin;
}
/**
* @return the particleSpectralType
*/
public String getParticleSpectralType() {
return particleSpectralType;
}
/**
* @return the phaseMax
*/
public Double getPhaseMax() {
return phaseMax;
}
/**
* @return the phaseMin
*/
public Double getPhaseMin() {
return phaseMin;
}
/**
* @return the processingLevel
*/
public Integer getProcessingLevel() {
return processingLevel;
}
/**
* @return the publisher
*/
public String getPublisher() {
return publisher;
}
/**
* @return the ra
*/
public double getRa() {
return ra;
}
/**
* @return the releaseDate
*/
public Date getReleaseDate() {
return releaseDate;
}
/**
* @return the serviceTitle
*/
public String getServiceTitle() {
return serviceTitle;
}
/**
* @return the solarLongitudeMax
*/
public double getSolarLongitudeMax() {
return solarLongitudeMax;
}
/**
* @return the solarLongitudeMin
*/
public double getSolarLongitudeMin() {
return solarLongitudeMin;
}
/**
* @return the spatialCoordinateDescription
*/
public String getSpatialCoordinateDescription() {
return spatialCoordinateDescription;
}
/**
* @return the spatialFrameType
*/
public String getSpatialFrameType() {
return spatialFrameType;
}
/**
* @return the spatialOrigin
*/
public String getSpatialOrigin() {
return spatialOrigin;
}
/**
* @return the species
*/
public String getSpecies() {
return species;
}
/**
* @return the spectralRangeMax
*/
public Double getSpectralRangeMax() {
return spectralRangeMax;
}
/**
* @return the spectralRangeMin
*/
public Double getSpectralRangeMin() {
return spectralRangeMin;
}
/**
* @return the spectralResolutionMax
*/
public Double getSpectralResolutionMax() {
return spectralResolutionMax;
}
/**
* @return the spectralResolutionMin
*/
public Double getSpectralResolutionMin() {
return spectralResolutionMin;
}
/**
* @return the spectralSamplingStepMax
*/
public Double getSpectralSamplingStepMax() {
return spectralSamplingStepMax;
}
/**
* @return the spectralSamplingStepMin
*/
public Double getSpectralSamplingStepMin() {
return spectralSamplingStepMin;
}
/**
* @return the sRegion
*/
public String getsRegion() {
return sRegion;
}
/**
* @return the targetClass
*/
public String getTargetClass() {
return targetClass;
}
/**
* @return the targetDistanceMax
*/
public double getTargetDistanceMax() {
return targetDistanceMax;
}
/**
* @return the targetDistanceMin
*/
public double getTargetDistanceMin() {
return targetDistanceMin;
}
/**
* @return the targetName
*/
public String getTargetName() {
return targetName;
}
/**
* @return the targetRegion
*/
public String getTargetRegion() {
return targetRegion;
}
/**
* @return the targetTimeMax
*/
public double getTargetTimeMax() {
return targetTimeMax;
}
/**
* @return the targetTimeMin
*/
public double getTargetTimeMin() {
return targetTimeMin;
}
/**
* @return the thumbnailUrl
*/
public String getThumbnailUrl() {
return thumbnailUrl;
}
/**
* @return the timeExpMax
*/
public Double getTimeExpMax() {
return timeExpMax;
}
/**
* @return the timeExpMin
*/
public Double getTimeExpMin() {
return timeExpMin;
}
/**
* @return the timeMax
*/
public Double getTimeMax() {
return timeMax;
}
/**
* @return the timeMin
*/
public Double getTimeMin() {
return timeMin;
}
/**
* @return the timeOrigin
*/
public String getTimeOrigin() {
return timeOrigin;
}
/**
* @return the timeSamplingStepMax
*/
public Double getTimeSamplingStepMax() {
return timeSamplingStepMax;
}
/**
* @return the timeSamplingStepMin
*/
public Double getTimeSamplingStepMin() {
return timeSamplingStepMin;
}
/**
* @return the timeScale
*/
public String getTimeScale() {
return timeScale;
}
@Override
public int hashCode() {
final int salt = 31;
int hash = 1;
for (Map.Entry<String, Object> parameter : asMap().entrySet()) {
hash = salt * hash
+ (parameter.getValue() == null ? 0 : parameter.getValue().hashCode());
}
return hash;
}
/**
* A granule is valid if all mandatory parameters are filled.
*
* @return true if the Granule is valid, false otherwise.
*/
public boolean isValid() {
for (Map.Entry<String, Object> parameter : asMap().entrySet()) {
if (parameter.getValue() == null) {
return false;
}
}
return true;
}
public String printAll() {
String s = "";
for (Map.Entry<String, Object> parameter : asMap().entrySet()) {
s += parameter.getKey() + ": " + parameter.getValue() + "\n";
}
return s;
}
/**
* @param accessEstsize the accessEstsize to set
*/
public void setAccessEstsize(int accessEstsize) {
this.accessEstsize = accessEstsize;
}
/**
* @param accessFormat the accessFormat to set
*/
public void setAccessFormat(String accessFormat) {
this.accessFormat = accessFormat;
}
/**
* @param accessMd5 the accessMd5 to set
*/
public void setAccessMd5(String accessMd5) {
this.accessMd5 = accessMd5;
}
/**
* @param accessUrl the accessUrl to set
*/
public void setAccessUrl(String accessUrl) {
this.accessUrl = accessUrl;
}
/**
* @param altTargetName the altTargetName to set
*/
public void setAltTargetName(String altTargetName) {
this.altTargetName = altTargetName;
}
/**
* @param bibReference the bibReference to set
*/
public void setBibReference(String bibReference) {
this.bibReference = bibReference;
}
/**
* @param c1Max the c1Max to set
*/
public void setC1Max(Double c1Max) {
this.c1Max = c1Max;
}
/**
* @param c1Min the c1Min to set
*/
public void setC1Min(Double c1Min) {
this.c1Min = c1Min;
}
/**
* @param c1ResolMax the c1ResolMax to set
*/
public void setC1ResolMax(Double c1ResolMax) {
this.c1ResolMax = c1ResolMax;
}
/**
* @param c1ResolMin the c1ResolMin to set
*/
public void setC1ResolMin(Double c1ResolMin) {
this.c1ResolMin = c1ResolMin;
}
/**
* @param c2Max the c2Max to set
*/
public void setC2Max(Double c2Max) {
this.c2Max = c2Max;
}
/**
* @param c2Min the c2Min to set
*/
public void setC2Min(Double c2Min) {
this.c2Min = c2Min;
}
/**
* @param c2ResolMax the c2ResolMax to set
*/
public void setC2ResolMax(Double c2ResolMax) {
this.c2ResolMax = c2ResolMax;
}
/**
* @param c2ResolMin the c2ResolMin to set
*/
public void setC2ResolMin(Double c2ResolMin) {
this.c2ResolMin = c2ResolMin;
}
/**
* @param c3Max the c3Max to set
*/
public void setC3Max(Double c3Max) {
this.c3Max = c3Max;
}
/**
* @param c3Min the c3Min to set
*/
public void setC3Min(Double c3Min) {
this.c3Min = c3Min;
}
/**
* @param c3ResolMax the c3ResolMax to set
*/
public void setC3ResolMax(Double c3ResolMax) {
this.c3ResolMax = c3ResolMax;
}
/**
* @param c3ResolMin the c3ResolMin to set
*/
public void setC3ResolMin(Double c3ResolMin) {
this.c3ResolMin = c3ResolMin;
}
/**
* @param creationDate the creationDate to set
*/
public void setCreationDate(Date creationDate) {
this.creationDate = creationDate;
}
/**
* @param dataAccessUrl the dataAccessUrl to set
*/
public void setDataAccessUrl(String dataAccessUrl) {
this.dataAccessUrl = dataAccessUrl;
}
/**
* @param dataproductType the dataproductType to set
*/
public void setDataproductType(String dataproductType) {
this.dataproductType = dataproductType;
}
/**
* @param dec the dec to set
*/
public void setDec(double dec) {
this.dec = dec;
}
/**
* @param emergenceMax the emergenceMax to set
*/
public void setEmergenceMax(Double emergenceMax) {
this.emergenceMax = emergenceMax;
}
/**
* @param emergenceMin the emergenceMin to set
*/
public void setEmergenceMin(Double emergenceMin) {
this.emergenceMin = emergenceMin;
}
/**
* @param featureName the featureName to set
*/
public void setFeatureName(String featureName) {
this.featureName = featureName;
}
/**
* @param fileName the fileName to set
*/
public void setFileName(String fileName) {
this.fileName = fileName;
}
/**
* @param granuleGid the granuleGid to set
*/
public void setGranuleGid(String granuleGid) {
this.granuleGid = granuleGid;
}
/**
* @param granuleUid the granuleUid to set
*/
public void setGranuleUid(String granuleUid) {
this.granuleUid = granuleUid;
}
/**
* @param incidenceMax the incidenceMax to set
*/
public void setIncidenceMax(Double incidenceMax) {
this.incidenceMax = incidenceMax;
}
/**
* @param incidenceMin the incidenceMin to set
*/
public void setIncidenceMin(Double incidenceMin) {
this.incidenceMin = incidenceMin;
}
/**
* @param instrumentHostName the instrumentHostName to set
*/
public void setInstrumentHostName(String instrumentHostName) {
this.instrumentHostName = instrumentHostName;
}
/**
* @param instrumentName the instrumentName to set
*/
public void setInstrumentName(String instrumentName) {
this.instrumentName = instrumentName;
}
/**
* @param localTimeMax the localTimeMax to set
*/
public void setLocalTimeMax(double localTimeMax) {
this.localTimeMax = localTimeMax;
}
/**
* @param localTimeMin the localTimeMin to set
*/
public void setLocalTimeMin(double localTimeMin) {
this.localTimeMin = localTimeMin;
}
/**
* @param measurementType the measurementType to set
*/
public void setMeasurementType(String measurementType) {
this.measurementType = measurementType;
}
/**
* @param modificationDate the modificationDate to set
*/
public void setModificationDate(Date modificationDate) {
this.modificationDate = modificationDate;
}
/**
* @param obsId the obsId to set
*/
public void setObsId(String obsId) {
this.obsId = obsId;
}
/**
* @param particleSpectralRangeMax the particleSpectralRangeMax to set
*/
public void setParticleSpectralRangeMax(double particleSpectralRangeMax) {
this.particleSpectralRangeMax = particleSpectralRangeMax;
}
/**
* @param particleSpectralRangeMin the particleSpectralRangeMin to set
*/
public void setParticleSpectralRangeMin(double particleSpectralRangeMin) {
this.particleSpectralRangeMin = particleSpectralRangeMin;
}
/**
* @param particleSpectralResolutionMax the particleSpectralResolutionMax to set
*/
public void setParticleSpectralResolutionMax(double particleSpectralResolutionMax) {
this.particleSpectralResolutionMax = particleSpectralResolutionMax;
}
/**
* @param particleSpectralResolutionMin the particleSpectralResolutionMin to set
*/
public void setParticleSpectralResolutionMin(double particleSpectralResolutionMin) {
this.particleSpectralResolutionMin = particleSpectralResolutionMin;
}
/**
* @param particleSpectralSamplingStepMax the particleSpectralSamplingStepMax to set
*/
public void setParticleSpectralSamplingStepMax(double particleSpectralSamplingStepMax) {
this.particleSpectralSamplingStepMax = particleSpectralSamplingStepMax;
}
/**
* @param particleSpectralSamplingStepMin the particleSpectralSamplingStepMin to set
*/
public void setParticleSpectralSamplingStepMin(double particleSpectralSamplingStepMin) {
this.particleSpectralSamplingStepMin = particleSpectralSamplingStepMin;
}
/**
* @param particleSpectralType the particleSpectralType to set
*/
public void setParticleSpectralType(String particleSpectralType) {
this.particleSpectralType = particleSpectralType;
}
/**
* @param phaseMax the phaseMax to set
*/
public void setPhaseMax(Double phaseMax) {
this.phaseMax = phaseMax;
}
/**
* @param phaseMin the phaseMin to set
*/
public void setPhaseMin(Double phaseMin) {
this.phaseMin = phaseMin;
}
/**
* @param processingLevel the processingLevel to set
*/
public void setProcessingLevel(Integer processingLevel) {
this.processingLevel = processingLevel;
}
/**
* @param publisher the publisher to set
*/
public void setPublisher(String publisher) {
this.publisher = publisher;
}
/**
* @param ra the ra to set
*/
public void setRa(double ra) {
this.ra = ra;
}
/**
* @param releaseDate the releaseDate to set
*/
public void setReleaseDate(Date releaseDate) {
this.releaseDate = releaseDate;
}
/**
* @param serviceTitle the serviceTitle to set
*/
public void setServiceTitle(String serviceTitle) {
this.serviceTitle = serviceTitle;
}
/**
* @param solarLongitudeMax the solarLongitudeMax to set
*/
public void setSolarLongitudeMax(double solarLongitudeMax) {
this.solarLongitudeMax = solarLongitudeMax;
}
/**
* @param solarLongitudeMin the solarLongitudeMin to set
*/
public void setSolarLongitudeMin(double solarLongitudeMin) {
this.solarLongitudeMin = solarLongitudeMin;
}
/**
* @param spatialCoordinateDescription the spatialCoordinateDescription to set
*/
public void setSpatialCoordinateDescription(String spatialCoordinateDescription) {
this.spatialCoordinateDescription = spatialCoordinateDescription;
}
/**
* @param spatialFrameType the spatialFrameType to set
*/
public void setSpatialFrameType(String spatialFrameType) {
this.spatialFrameType = spatialFrameType;
}
/**
* @param spatialOrigin the spatialOrigin to set
*/
public void setSpatialOrigin(String spatialOrigin) {
this.spatialOrigin = spatialOrigin;
}
/**
* @param species the species to set
*/
public void setSpecies(String species) {
this.species = species;
}
/**
* @param spectralRangeMax the spectralRangeMax to set
*/
public void setSpectralRangeMax(Double spectralRangeMax) {
this.spectralRangeMax = spectralRangeMax;
}
/**
* @param spectralRangeMin the spectralRangeMin to set
*/
public void setSpectralRangeMin(Double spectralRangeMin) {
this.spectralRangeMin = spectralRangeMin;
}
/**
* @param spectralResolutionMax the spectralResolutionMax to set
*/
public void setSpectralResolutionMax(Double spectralResolutionMax) {
this.spectralResolutionMax = spectralResolutionMax;
}
/**
* @param spectralResolutionMin the spectralResolutionMin to set
*/
public void setSpectralResolutionMin(Double spectralResolutionMin) {
this.spectralResolutionMin = spectralResolutionMin;
}
/**
* @param spectralSamplingStepMax the spectralSamplingStepMax to set
*/
public void setSpectralSamplingStepMax(Double spectralSamplingStepMax) {
this.spectralSamplingStepMax = spectralSamplingStepMax;
}
/**
* @param spectralSamplingStepMin the spectralSamplingStepMin to set
*/
public void setSpectralSamplingStepMin(Double spectralSamplingStepMin) {
this.spectralSamplingStepMin = spectralSamplingStepMin;
}
/**
* @param sRegion the sRegion to set
*/
public void setSRegion(String sRegion) {
this.sRegion = sRegion;
}
/**
* @param targetClass the targetClass to set
*/
public void setTargetClass(String targetClass) {
this.targetClass = targetClass;
}
/**
* @param targetDistanceMax the targetDistanceMax to set
*/
public void setTargetDistanceMax(double targetDistanceMax) {
this.targetDistanceMax = targetDistanceMax;
}
/**
* @param targetDistanceMin the targetDistanceMin to set
*/
public void setTargetDistanceMin(double targetDistanceMin) {
this.targetDistanceMin = targetDistanceMin;
}
/**
* @param targetName the targetName to set
*/
public void setTargetName(String targetName) {
this.targetName = targetName;
}
/**
* @param targetRegion the targetRegion to set
*/
public void setTargetRegion(String targetRegion) {
this.targetRegion = targetRegion;
}
/**
* @param targetTimeMax the targetTimeMax to set
*/
public void setTargetTimeMax(double targetTimeMax) {
this.targetTimeMax = targetTimeMax;
}
/**
* @param targetTimeMin the targetTimeMin to set
*/
public void setTargetTimeMin(double targetTimeMin) {
this.targetTimeMin = targetTimeMin;
}
/**
* @param thumbnailUrl the thumbnailUrl to set
*/
public void setThumbnailUrl(String thumbnailUrl) {
this.thumbnailUrl = thumbnailUrl;
}
/**
* @param timeExpMax the timeExpMax to set
*/
public void setTimeExpMax(Double timeExpMax) {
this.timeExpMax = timeExpMax;
}
/**
* @param timeExpMin the timeExpMin to set
*/
public void setTimeExpMin(Double timeExpMin) {
this.timeExpMin = timeExpMin;
}
/**
* @param timeMax the timeMax to set
*/
public void setTimeMax(Double timeMax) {
this.timeMax = timeMax;
}
/**
* @param timeMin the timeMin to set
*/
public void setTimeMin(Double timeMin) {
this.timeMin = timeMin;
}
/**
* @param timeOrigin the timeOrigin to set
*/
public void setTimeOrigin(String timeOrigin) {
this.timeOrigin = timeOrigin;
}
/**
* @param timeSamplingStepMax the timeSamplingStepMax to set
*/
public void setTimeSamplingStepMax(Double timeSamplingStepMax) {
this.timeSamplingStepMax = timeSamplingStepMax;
}
/**
* @param timeSamplingStepMin the timeSamplingStepMin to set
*/
public void setTimeSamplingStepMin(Double timeSamplingStepMin) {
this.timeSamplingStepMin = timeSamplingStepMin;
}
/**
* @param timeScale the timeScale to set
*/
public void setTimeScale(String timeScale) {
this.timeScale = timeScale;
}
@Override
public String toString() {
return granuleUid;
}
}