forked from aria-jpl/ariamh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchived_history.txt
7811 lines (5113 loc) · 232 KB
/
archived_history.txt
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
commit d753c04a925c06af1368178d92f89e2ae0ec0201
Author: gmanipon <[email protected]>
Date: Wed Oct 11 22:43:57 2017 +0000
set default dem_type to SRTM+v3 when calculating dataset hash
commit 64bb12fe0562085bc329748f7250dbd5dfcc68f0
Author: gmanipon <[email protected]>
Date: Wed Oct 11 21:53:03 2017 +0000
add downsampled version of NED13 as dem_type
Add downsampling option to ned_dem.py.
commit 6197f75cd43b075fee75b2f66fd70abdfa219b05
Author: gmanipon <[email protected]>
Date: Wed Oct 11 21:07:18 2017 +0000
integrate selection of SRTM+v3, NED1, and NED13 DEMs for topsApp processing
Rename option SRTM to SRTM+v3.
Add dem_type metadata for faceting purposes.
Clean carriage return char in create_offset.py.
commit 3f77b3f3f566e672f4bf8198fe71f707e48bf269
Author: gmanipon <[email protected]>
Date: Tue Oct 10 14:51:04 2017 +0000
add dem_type parameter to ifg hash calculation
commit daa50bc5411972d94ce660fc2f0e61feeadb5fe5
Author: gmanipon <[email protected]>
Date: Mon Oct 9 21:43:28 2017 +0000
add parsing of NED1/NED13 DEM configs to UrlUtils
commit 8fc7288a55ebd83b29bbd34a89c2e823e6101b8c
Author: gmanipon <[email protected]>
Date: Mon Oct 9 21:37:13 2017 +0000
add dem_type parameter to hysds-io/job-spec configs for S1-IFG/SLCP pipelines
commit a91c6d51adb31410b7b4d3acbe0f00f005246c1e
Author: gmanipon <[email protected]>
Date: Mon Oct 9 21:14:10 2017 +0000
update dataset versions to v1.1.4
commit 1246154cb798398b9e4aec6fe3fbd9ab6fb12c0c
Author: gmanipon <[email protected]>
Date: Mon Oct 9 20:47:42 2017 +0000
add azimuth_looks and range_looks to S1-IFG metadata for faceting purposes
Allows tosca faceting by range_looks and azimuth_looks for stitcher PGE.
commit d3f1cce6b5f1e72c12be96b31cd9ee4e56cb292f
Author: gmanipon <[email protected]>
Date: Mon Oct 9 20:37:17 2017 +0000
update all settings.conf with ned1 and ned13 configs
commit 866b15789ec5b0e7dc2611abb3ce3491ec5006ad
Author: gmanipon <[email protected]>
Date: Mon Oct 9 20:36:22 2017 +0000
add configs for ned1 and ned13 dems
commit b6c342de3348c8d82e756a9c95c94c3229dd859e
Author: gmanipon <[email protected]>
Date: Thu Sep 28 20:15:47 2017 +0000
remove debug message
commit bf46591ae174fb759201e81fe7d91d978501366d
Author: gmanipon <[email protected]>
Date: Thu Sep 28 20:05:20 2017 +0000
generate datasets.json and met.json for stitched IFG
commit eb8068d35ef2b7e438877d98af70b544d4983590
Author: gmanipon <[email protected]>
Date: Thu Sep 28 18:27:53 2017 +0000
use exact start/end time for id; determine union polygon of stitched IFG
commit 5c7ebda4a729815f20b4491f402ff7278295c61c
Author: gmanipon <[email protected]>
Date: Thu Sep 28 17:34:25 2017 +0000
localize dataset and met for each IFG
commit d10e7820555b1f3fcd518f9f161cfd3136f83a5f
Author: gmanipon <[email protected]>
Date: Thu Sep 28 17:25:43 2017 +0000
localize fine_interferogram.xml
commit 354c84e2127a1f0a270f2cbd77e32a55f0cf3516
Author: gmanipon <[email protected]>
Date: Wed Sep 27 15:18:03 2017 +0000
generate browse images for all products similar to S1-IFG pipeline; create tile layers
Cleanup on failure or completion.
Copy input files and logs to dataset directory.
commit 8b1cf312b8983e39dda6c2f349e2711ee70e94d9
Author: gmanipon <[email protected]>
Date: Wed Sep 27 00:48:41 2017 +0000
use os.path.join()
commit fca370f5e97891cb165aa7011b90f55cdb92d15a
Author: gmanipon <[email protected]>
Date: Wed Sep 27 00:43:48 2017 +0000
generate stitcher input in dataset dir and get relative paths to filenames
commit 6a26ae66d524ac266de17dc7a67b0a3a86594a22
Author: gmanipon <[email protected]>
Date: Wed Sep 27 00:14:30 2017 +0000
run stitcher from root of work dir
commit b8f9bd8b073980717af278766769a1b86e1b71e1
Author: gmanipon <[email protected]>
Date: Tue Sep 26 23:48:53 2017 +0000
use python2 for create_ifg_stitcher_input.py
commit 8351355a347c5c763922d82d3d82ae4a54d291a3
Author: gmanipon <[email protected]>
Date: Tue Sep 26 23:29:16 2017 +0000
override wbd stitcher config url with ARIA_WBD_URL from settings
commit 8a0921d7439e795fbe1272dd4475764231004b1e
Author: gmanipon <[email protected]>
Date: Tue Sep 26 20:55:23 2017 +0000
fix outname and create dataset directory
commit eb9fcf1bbfb12c0e46b745c03d483f7232cd3f92
Author: gmanipon <[email protected]>
Date: Tue Sep 26 00:55:30 2017 +0000
append extra_products from params
commit 72d76eaeb5f09962e959d06b46f44abfd350a40f
Author: gmanipon <[email protected]>
Date: Tue Sep 26 00:50:58 2017 +0000
set path to stitcher input
commit 499a597e1bbc9a861a6b7124523298d5dec69052
Author: gmanipon <[email protected]>
Date: Tue Sep 26 00:39:20 2017 +0000
add extra_products param to mapper
commit 1399a576d022c47f5e5b905d68131e0881db3098
Author: gmanipon <[email protected]>
Date: Tue Sep 26 00:30:00 2017 +0000
add extra_products parameter
commit 6b034359ab78704e8e85370e4de4646c59290e96
Merge: a68c54c 83bcd1b
Author: gmanipon <[email protected]>
Date: Tue Sep 26 00:11:47 2017 +0000
Merge branch 'master' into gman-dev
commit a68c54cd9fe748482fa141db5249a838b997d715
Author: gmanipon <[email protected]>
Date: Tue Sep 26 00:10:12 2017 +0000
pass context to create_ifg_stitcher_input.py
commit 966de5a5bd6ac9d4201579237762eeaa74e8ab84
Author: gmanipon <[email protected]>
Date: Mon Sep 25 23:46:41 2017 +0000
add map job
commit cc43f46c9d5d1a9ff2ef07cf1953fccc6322a4b8
Author: gmanipon <[email protected]>
Date: Mon Sep 25 23:27:15 2017 +0000
fix product url; implement job mapper function
commit 83bcd1bf35989c6bf6172e0bbe901d8fe07bb908
Author: giangi <[email protected]>
Date: Mon Sep 25 16:21:04 2017 -0700
Added possibility for user to specified custom list of products to be stitched
commit 5bde3b339bc0906b039e79739338de50dafc88d5
Author: gmanipon <[email protected]>
Date: Mon Sep 25 21:39:53 2017 +0000
sort IFGs by track, date pair, subswath, and start time
commit 6a8287777d2635896bb8d03da29f4ac5e250c417
Author: gmanipon <[email protected]>
Date: Mon Sep 25 18:25:54 2017 +0000
add initial PGE configuration for interferogram stitcher workflow
commit fecfef6ec68ac1e23db0347f187031209be4e513
Author: Justin P Linick <[email protected]>
Date: Wed Sep 13 10:23:41 2017 -0700
set platform metadata
commit 41fc0de1ab68cb779b0cde5ed970de3b2ca0bbde
Author: Justin P Linick <[email protected]>
Date: Wed Sep 13 10:21:46 2017 -0700
syntax fix
commit fa35ddb539eb7d35a925fa3fa9ecef9ebb4cd102
Author: Justin P Linick <[email protected]>
Date: Wed Sep 13 10:00:00 2017 -0700
metadata fixes for orbit, polygon and platform
commit 6605a3d7f1a0dc54ad88129ef177952f5328904e
Author: Justin P Linick <[email protected]>
Date: Mon Sep 11 17:16:03 2017 -0700
update dataset_type to offset
commit 48769f877b793ecbdaa52a36e19e05039c120a73
Author: Justin P Linick <[email protected]>
Date: Mon Sep 11 12:17:12 2017 -0700
syntax fix
commit 3349c131d0921003a15738172034385e9997c7d8
Author: Justin P Linick <[email protected]>
Date: Mon Sep 11 11:55:29 2017 -0700
add dem_url param to enumerator wrapper
commit 55c0cd552f49dfed6fe4c0e286ef5a25babbb030
Author: gmanipon <[email protected]>
Date: Mon Sep 11 18:40:01 2017 +0000
create wrapper for offsets pipeline call to enumerator
commit 7728593bebc966284615bb12c0ed47ede9b09b19
Author: gmanipon <[email protected]>
Date: Mon Sep 11 18:09:11 2017 +0000
set default project to pdf
commit b171c4cab368089c69133fde1dd44d183fb5427a
Author: gmanipon <[email protected]>
Date: Mon Sep 11 18:02:30 2017 +0000
update recommended queues for PDF; add "pdf" to project enumeration
commit e870b6277bfc0bdc0d166386807a26f667ac1303
Author: Justin P Linick <[email protected]>
Date: Mon Sep 11 10:11:27 2017 -0700
add ampcor passthrough values
commit 81c464f5f572938f24799ce90eb7723b5e6e8736
Author: Justin P Linick <[email protected]>
Date: Mon Sep 11 10:11:24 2017 -0700
add ampcor wiring to create_offsets
commit 94cb2a2fbdc10e8e53b7f07565fd0f3dade3f63a
Author: jlinick <[email protected]>
Date: Mon Sep 11 15:51:38 2017 +0000
update sciflo to submit proper offset jobs
commit 58beaefdf913680466aa062e2007da909191134f
Merge: dd3fbbb 27acb87
Author: jlinick <[email protected]>
Date: Mon Sep 11 14:53:13 2017 +0000
Merge branch 'dev' of https://github.jpl.nasa.gov/aria-hysds/ariamh into dev
commit dd3fbbb8c625a482856a385ef18d162969a09627
Author: jlinick <[email protected]>
Date: Mon Sep 11 14:52:25 2017 +0000
add pdf queue
commit 27acb87569ec1593d91e8c7f33884de404603f39
Author: gmanipon <[email protected]>
Date: Mon Sep 11 05:43:55 2017 +0000
sort mrpe ourselves since ES scroll search doesn't respect it
Submit jobs for all scenes from the MRPE date.
commit 7be4da88e00f936c3ce8575adbe4857e231bad8c
Author: gmanipon <[email protected]>
Date: Sun Sep 10 00:31:51 2017 +0000
restore s3 filter and default to first URL
commit c63904c7cc6ea4c6e5dd454a394c42112fec72a2
Author: gmanipon <[email protected]>
Date: Sun Sep 10 00:12:12 2017 +0000
use first url
commit 5f92677010c1a250b1376a1fd89e631a6f832073
Author: gmanipon <[email protected]>
Date: Sat Sep 9 23:22:59 2017 +0000
update CSK ingest pipeline for v2; generalized for ASI and UNAVCO source
commit 44d505db38684365d5a4d0518e2c488d5a516d92
Author: gmanipon <[email protected]>
Date: Fri Sep 8 15:45:14 2017 +0000
fix propagation of params to route proper to enumeration
commit ce939dcde1d911290addefed06b721febc0055a6
Author: gmanipon <[email protected]>
Date: Fri Sep 8 01:52:49 2017 +0000
fix referenced function name in sciflo function call
commit 13cbefc3844e9ffa4c55ba9a4b73e39d5f353924
Author: gmanipon <[email protected]>
Date: Fri Sep 8 01:32:56 2017 +0000
expose coverage threshold
commit 2b9d2279d87217f38bc4d50eebe3ca43b7ac78c4
Merge: 5f73d26 6b7992d
Author: gmanipon <[email protected]>
Date: Fri Sep 8 01:07:11 2017 +0000
Merge branch 'dev' into gman-dev
commit 5f73d26baaffc449074e8a1220b9b946e9792e61
Author: gmanipon <[email protected]>
Date: Fri Sep 8 01:05:28 2017 +0000
final implementation of most recent pre-event pair selection
commit 6b7992d5aefe42418bac6e2b13d3391ea00daad5
Author: jlinick <[email protected]>
Date: Fri Sep 8 00:30:38 2017 +0000
add sciflo offsets workflow
commit 7df45a4e7131b892408d8e57fe1f641c0e58f4f9
Author: jlinick <[email protected]>
Date: Fri Sep 8 00:29:49 2017 +0000
add sciflo offsets workflow
commit ad6669eedaaa7ef2428b954639f98a3a0239bd5d
Author: gmanipon <[email protected]>
Date: Thu Sep 7 23:25:09 2017 +0000
save
commit be0789d3efdc87245fae25076926fa2bfb21b52f
Author: gmanipon <[email protected]>
Date: Thu Sep 7 21:57:17 2017 +0000
fix type
commit 9dd1a7ef8e3e2c686c7633698ba0003fed145367
Author: gmanipon <[email protected]>
Date: Thu Sep 7 21:54:16 2017 +0000
add initial files for MRPE
commit 6ee8ec5d8c2362acc33dad72d087df6c8c9d0784
Merge: 6594f7e ab360c3
Author: gmanipon <[email protected]>
Date: Thu Sep 7 18:35:08 2017 +0000
Merge branch 'master' into dev
commit 6594f7ef04c5abc28b6088fe04a96fad2cab6866
Author: jlinick <[email protected]>
Date: Wed Sep 6 23:37:30 2017 +0000
using proper create_input_xml_offset function
commit d657ed6ca935a478f3932b6752a506cb9d557693
Author: jlinick <[email protected]>
Date: Wed Sep 6 22:52:09 2017 +0000
add xml_offset function
commit 1f6a47b43b230241ea03d214d7ed394b84f6558e
Author: jlinick <[email protected]>
Date: Wed Sep 6 22:00:43 2017 +0000
update offset jobspec
commit ab360c3e5298df31b119092000ec24dfab57e1c9
Author: jlinick <[email protected]>
Date: Wed Sep 6 21:56:09 2017 +0000
update offset jobspec
commit 8770b3e4fff9d3ff8a08056180dbf1609edcb06b
Author: jlinick <[email protected]>
Date: Wed Sep 6 21:29:23 2017 +0000
offset processing
commit 81ec475f1e43447104e0e644416f586a14992623
Merge: 801c7e8 f08b9a5
Author: giangi <[email protected]>
Date: Wed Aug 30 11:45:56 2017 -0700
Merge branch 'master' of https://github.jpl.nasa.gov/aria-hysds/ariamh
commit 801c7e87b56e6c6c8c1aa3496b139a0d58159ecb
Author: giangi <[email protected]>
Date: Wed Aug 30 11:45:09 2017 -0700
added comments
commit f08b9a5a5722dfd2aa7f9b06c902e7c58e0d7472
Author: gmanipon <[email protected]>
Date: Mon Aug 28 21:49:07 2017 +0000
set topsApp pipelines as individual submission type
commit 131a6e4d44d397c38ea35c596e665dbdbe5f0e5b
Author: gmanipon <[email protected]>
Date: Mon Aug 28 21:35:28 2017 +0000
initial implementation of topsApp pipeline
commit 042768894ee2a723dbd7126f4aa0e1121e995c13
Author: gmanipon <[email protected]>
Date: Tue Aug 15 17:38:10 2017 +0000
fix disk_usage param
commit 3235a9532359fa792f929c84d8be40a7edbdf433
Merge: 70dd1ac f0d5150
Author: giangi <[email protected]>
Date: Mon Aug 14 10:09:21 2017 -0700
Merge branch 'master' of https://github.jpl.nasa.gov/aria-hysds/ariamh
commit 70dd1ac299c46104bde867ef5609e05a43750623
Author: giangi <[email protected]>
Date: Mon Aug 14 10:08:18 2017 -0700
Created stitcher_utils.py to perform common task for stitching such as validation of temporal baselines, spatial coverage, datalocalization.
Created stitcher_driver.py to illustrate usage of stitcher_utils.py
commit f0d51507125a473d334c030ba89f4d13181c884a
Author: gmanipon <[email protected]>
Date: Thu Jul 13 20:18:20 2017 +0000
skip granules that don't have 'postProcessingStop' recorded in metadata
commit 1dd1f93b5e03822b1f4fee97e592597a424f8dcd
Author: gmanipon <[email protected]>
Date: Thu Jul 13 00:47:31 2017 +0000
fix bug where enumerator may skip checking post reference matches
commit dbadb4654b97f86676b9d831850607378736237a
Author: gmanipon <[email protected]>
Date: Wed Jul 12 21:12:01 2017 +0000
disable virtual files for SLCP
commit 9e045d74226f79c2ca69c115d88ee4dd2c2dcc90
Merge: e1a702c 9b47bdb
Author: giangi <[email protected]>
Date: Mon Jul 10 14:30:12 2017 -0700
Merge branch 'master' of https://github.jpl.nasa.gov/aria-hysds/ariamh
commit e1a702c3d9bc00bd65ce6ca33407f5e7c0b40aab
Author: giangi <[email protected]>
Date: Mon Jul 10 14:28:54 2017 -0700
latest versio of ifg_stitcher.py
commit 9b47bdb6258e5ff8f37fc836c5098b281336489f
Author: gmanipon <[email protected]>
Date: Wed Jul 5 21:01:39 2017 +0000
remove /etc/passwd blacklist test
commit 03bb7999ab512c556f2d0917efaf9f5faf307dab
Author: gmanipon <[email protected]>
Date: Wed Jul 5 20:55:07 2017 +0000
remove /etc test
commit dab2631270d71bb6a4acb4d178ca314d949b99e1
Author: gmanipon <[email protected]>
Date: Wed Jul 5 20:19:35 2017 +0000
add tests of blacklisted mounts
commit 10e0ff6d6b1f1e4340d8184d131b6fb3a3e9c28a
Author: gmanipon <[email protected]>
Date: Wed Jul 5 20:07:44 2017 +0000
remove root mount security test
commit 54e1db384c262c51f25f58197d62f9001392a63f
Author: gmanipon <[email protected]>
Date: Wed Jul 5 19:49:04 2017 +0000
test new docker volume mounting options and security
commit afc8add5bfce40136e9029c69d38e14dfc974715
Author: gmanipon <[email protected]>
Date: Thu Jun 29 19:59:47 2017 +0000
log filtering of jobs when precise_orbit_only is true
commit c70b1d32107f67ffa94b75b9e297a97cc03afc12
Author: gmanipon <[email protected]>
Date: Thu Jun 29 19:30:10 2017 +0000
collect all orbit results
commit dd729604ef32388f1aea250a6c744b73968045cf
Author: gmanipon <[email protected]>
Date: Thu Jun 29 18:05:25 2017 +0000
filter orbit by spacecraft
commit 79026f7e9cbcb06c66f2effa2b5ddcacd9a722c9
Author: gmanipon <[email protected]>
Date: Thu Jun 29 17:24:09 2017 +0000
implement filtering of job enumeration based on precise_orbit_only flag
commit f9d97d630f8151694a367901408e9facbab45de8
Author: gmanipon <[email protected]>
Date: Thu Jun 29 16:24:57 2017 +0000
bypass exception finding orbit files and allow downstream to handle accordingly
commit 63650a981c4c90279120e26669d9375e4c59b3a9
Author: gmanipon <[email protected]>
Date: Thu Jun 15 20:54:46 2017 +0000
increment S1-SLCP and S1-IFG versions to 1.1.3
commit 8c1e7be520acc0b249ca0e09b2dd80f4b3dc34d4
Author: gmanipon <[email protected]>
Date: Thu Jun 15 20:06:09 2017 +0000
fix bug in determining scene count
commit 463de78716bb6368e4f7aef4d15c467c31c45071
Author: gmanipon <[email protected]>
Date: Thu Jun 15 20:00:23 2017 +0000
correctly set stitched arg based on actual number of scenes in reference or master
commit 718239506db62e37c6e34f7d8dd81253f24996c6
Author: gmanipon <[email protected]>
Date: Thu Jun 15 19:04:47 2017 +0000
improve orbit date match filtering
commit 5a9da063e78c714813e778baf2e4770581b29f63
Author: gmanipon <[email protected]>
Date: Thu Jun 15 17:36:30 2017 +0000
add ifg_version param to limit reprocessing check to a certain version of S1-IFG dataset
commit 6a221b282ffb48722c611e4c479a74de7de15d92
Author: gmanipon <[email protected]>
Date: Thu Jun 15 16:55:46 2017 +0000
initial implementation of sciflo workflow for reprocessing S1-IFGs based on a precise orbit ingest
commit 8cc5f09d0ba5daa51c7967c65630ac2809ffc66e
Author: gmanipon <[email protected]>
Date: Thu Jun 15 14:34:36 2017 +0000
specify recommended queues for reprocess-s1-ifg
commit 6eb2c5b21075e7a192ae3d27c3b0bd8283bfd69a
Author: gmanipon <[email protected]>
Date: Thu Jun 15 14:07:23 2017 +0000
update reprocess-s1-ifg params
commit 352f465f0574995e32aaa12557e41d66a94c2a25
Author: gmanipon <[email protected]>
Date: Thu Jun 15 00:28:01 2017 +0000
add initial job-spec/hysds-io config for reprocessing S1-IFG
commit 4f5899836e1212da55fb5195a376571829eedd56
Author: gmanipon <[email protected]>
Date: Wed Jun 14 00:28:57 2017 +0000
handle calls from python2.7
commit 09f9b4e93f110ba42de491ba20a5defe93bacb0c
Author: gmanipon <[email protected]>
Date: Tue Jun 13 22:55:53 2017 +0000
integrate retrieval of S1 precise/restituted orbit files using HySDS datasets
commit 0051ef720dacdf571ad509948de0418d1f9079d2
Author: gmanipon <[email protected]>
Date: Tue Jun 13 21:54:07 2017 +0000
integrate retrieval of active S1 calibration files using HySDS datasets for S1-AUX_CAL and S1-AUX_CAL_ACTIVE
commit f8130becd4d28d3bced6bfd8ab729752f21e8865
Author: gmanipon <[email protected]>
Date: Tue Jun 13 20:55:25 2017 +0000
update ES query to match on _id
commit 4c29eff0532cfdd74da964519a435682fcf3c89f
Author: gmanipon <[email protected]>
Date: Thu Jun 8 02:24:19 2017 +0000
propagate dataset_tag to audit workflows and create_rsp
commit 25761f6e57818daf8f62f4f5111b5f7237af733b
Author: gmanipon <[email protected]>
Date: Thu Jun 8 01:21:49 2017 +0000
track orbits by date range instead of by day
commit 23949557810e0545c5b6bf27272319f374e460b9
Author: gmanipon <[email protected]>
Date: Mon Jun 5 22:25:50 2017 +0000
initial implementation of SLCP auditor
commit f851484f30576e0cf27b24c4a524581b6b43f93b
Author: gmanipon <[email protected]>
Date: Mon Jun 5 21:58:56 2017 +0000
export ESD coherence threshold to metadata
commit 5b1774546686fa82bb883ac5c3b1d244c804f224
Author: gmanipon <[email protected]>
Date: Mon Jun 5 21:22:08 2017 +0000
ensure "--" prefix to options isn't using unicode chr
commit b6bcecd142e0442f71f6e6c208bbce221e399769
Author: gmanipon <[email protected]>
Date: Mon Jun 5 20:18:34 2017 +0000
fix bug calling --start option
commit 2de583b0cf34fd52b3c0a3608e89d976e9fe9a3d
Author: gmanipon <[email protected]>
Date: Mon Jun 5 20:12:06 2017 +0000
enable ESD threshold step-down iteration and disabling of ESD filtering in S1-IFG/SLCP workflows
Fix minor issue with dataset ID uniqueness between S1-IFG and S1-SLCP.
Update job-spec hysds-io.
commit 5e7be641a4081391a9322a41836322d53c10a3c5
Author: gmanipon <[email protected]>
Date: Fri Jun 2 23:41:59 2017 +0000
fix bug in temporal_span calculation
commit 56a5cf9b6d6d03005af7bbcb639d56ffbc41b741
Author: gmanipon <[email protected]>
Date: Fri Jun 2 23:11:26 2017 +0000
replace tabs
commit 6e53f61b8dfeeddde30c756fc7efd5e3fcc3ecd1
Author: gmanipon <[email protected]>
Date: Fri Jun 2 22:52:28 2017 +0000
handle ending 'Z' on timestamps
commit e750a7ef4abd6a9e14860fd67cdc1d09094596a9
Author: gmanipon <[email protected]>
Date: Fri Jun 2 22:42:11 2017 +0000
unify params on bool type in hysds-io; update enumerator to handle bool types in context
commit 088e2f81f5bab6760c29148e1a27c086aa5cc0ea
Author: gmanipon <[email protected]>
Date: Fri Jun 2 22:15:52 2017 +0000
sync enumerator updates to audit-ifg job-spec and hysds-io configs
commit b9337abf4c14426740d31f803f36238499d52723
Author: gmanipon <[email protected]>
Date: Wed May 31 19:51:06 2017 +0000
set allowed_accounts to ops
commit 4ee0d921119a20ec0b76597f8a8ea50e14b134f3
Author: gmanipon <[email protected]>
Date: Tue May 30 23:45:36 2017 +0000
set correct version
commit e4de02eeb015c2a68948c9a494e987a4dab295f5
Merge: 27d5845 4e4a4a9
Author: gmanipon <[email protected]>
Date: Tue May 30 23:42:19 2017 +0000
Merge branch 'master' into test-merge
Conflicts:
conf/settings.conf
utils/UrlUtils.py
merge with giangi's updates
commit 4e4a4a9371bcb515694110815cd6d559c925695a
Author: giangi <[email protected]>
Date: Tue May 30 14:32:39 2017 -0700
Added handling of water body url and updated config file
commit 27d58455d15ec0822a3cc9a9d4c6712d5e0d9ba0
Author: gmanipon <[email protected]>
Date: Tue May 30 16:48:33 2017 +0000
parse SWBD parameters
commit 884165a3c1db8dcfc92b6d0ee2a3c681a7960aa1
Author: gmanipon <[email protected]>
Date: Tue May 30 16:43:43 2017 +0000
add config for water mask repo
commit 7b73e5fc0d95b1a1794c342242a5673e33103aca
Author: gmanipon <[email protected]>
Date: Fri May 26 19:00:09 2017 +0000
fix dem bbox calculation bug
commit 598a00909b9c5b1ca2c5b3838d5c2461cca33287
Author: gmanipon <[email protected]>
Date: Thu May 25 04:38:44 2017 +0000
reduce logging
commit e85b234ff2cfdcf161e4ec7c52904a9ff9ed48d3
Author: gmanipon <[email protected]>
Date: Thu May 25 03:58:17 2017 +0000
implement pair selection according to https://wiki.jpl.nasa.gov/display/hysds/Network+Pair+Selection
Increment S1-IFG and S1-SLCP to v1.1.2.
commit 59d21847ff859ed76d63e68a81bd7c12a4f735a0
Author: gmanipon <[email protected]>
Date: Wed May 24 15:09:18 2017 +0000
remove xtstitched workflow and PGEs; update hysds-io/job-spec for IFG and SLCP
commit b89e309b8060c51cfbb3fb47e558fc256a1ab18f
Author: M Starch <[email protected]>
Date: Wed May 17 20:10:35 2017 +0000
mstarch: backwards compatibility for ML pre v1.1 products
commit cf611d51afff9d3972818f52ef9e35abaa527a41
Author: gmanipon <[email protected]>
Date: Thu May 11 14:38:12 2017 +0000
initial cleanup of enumerator logic
commit 34264d715e98452d80810ba76800752b81d92beb
Author: gmanipon <[email protected]>
Date: Sun May 7 06:04:50 2017 +0000
expose ESD coherence threshold parameter
commit 6fd9e848f17d392e41a363c9bc53e2fa7ae926d1
Author: gmanipon <[email protected]>
Date: Fri May 5 05:54:04 2017 +0000
handle cross-platform S1 IFGs
commit 9940e13ce34f0eb3608cf892d12b122a6c79cf3b
Author: jlinick <[email protected]>
Date: Thu May 4 15:49:52 2017 +0000
mstarch: removing gpsramp as visible parameter
commit db4bfd094f35c0c602a8533cde0d0971c1b9fbd2
Author: jlinick <[email protected]>
Date: Wed May 3 19:00:39 2017 +0000
mstarch: undoing bug
commit 2327b9f57b36e7dd81a7013e59553a87cbe446a6
Author: M Starch <[email protected]>
Date: Wed May 3 18:19:12 2017 +0000
mstarch: fixing minor TS bugs
commit 5e21921cf6d830117f73cbcb672d148e6a87cd6b
Author: jlinick <[email protected]>
Date: Wed May 3 17:36:16 2017 +0000
mstarch: fixing hysds-io
commit 47cea0f9b7d9d1983e1c38154c7985693d902743
Author: M Starch <[email protected]>
Date: Mon May 1 17:12:07 2017 -0700
mstarch: trying out new stiching config
commit 02ccff2e4e78f6d3e0cdbf4ed446bc12737bd8f0
Merge: 25da5a9 f6bf640
Author: giangi <[email protected]>
Date: Mon May 1 11:11:07 2017 -0700
Merge branch 'master' of https://github.jpl.nasa.gov/aria-hysds/ariamh
commit 25da5a976b3435fcdd9743a2619e0c4c8f16995c
Author: giangi <[email protected]>
Date: Mon May 1 11:10:41 2017 -0700
Added rms in FeaturesExtractor.py
More robust version of ifg_stitcher.py
Added possibility to specify settings.conf file in UrlUtils.py
Added possibility to specify settings.conf file in queryBuilder.py
commit f6bf640fac67d758b5a37a9929cc326f57822d5a
Author: M Starch <[email protected]>
Date: Mon May 1 17:48:10 2017 +0000
mstarch: removing version appending to IDs, and 'http' as best URL
commit 0f499206545ecdbf331c0ad20cfb87061fa2e2ca
Author: M Starch <[email protected]>
Date: Mon May 1 16:11:41 2017 +0000
mstarch: fixing predictor hysds-io
commit 8316355ca14c325dfc20ae7a90ac4eb70e5c0543
Author: M Starch <[email protected]>
Date: Wed Apr 26 17:01:32 2017 +0000
mstarch: removing trainer from validation
commit 1eb60994a5413417f9c66f772315e420c8c29aa0
Author: M Starch <[email protected]>
Date: Wed Apr 26 16:57:47 2017 +0000
mstarch: ready for ML delivery
commit 64127c9a194f744268c4916d6a96623976ca291f
Merge: b036147 4282173
Author: M Starch <[email protected]>
Date: Wed Apr 26 16:42:34 2017 +0000
Merge branch 'mstarch-ml' of https://github.jpl.nasa.gov/aria-hysds/ariamh
commit 4282173e33f269cab2221e7302b36d284bc91381
Author: M Starch <[email protected]>
Date: Tue Apr 25 17:49:03 2017 +0000
mstarch: working extract, predict
commit b03614764e8190ecf8f197ed56af69268931efb9
Author: Justin P Linick <[email protected]>
Date: Tue Apr 25 10:13:36 2017 -0700
jlinick: using reference int_file
commit 5ee602e95a5be3b4f8d07c45c0e4a110cd0c687f
Author: M Starch <[email protected]>
Date: Mon Apr 24 18:50:13 2017 +0000
mstarch: adding overlays for ML jobs
commit ddad11c0c560a2c752d9d6530c6989983da2764c
Author: M Starch <[email protected]>
Date: Mon Apr 24 18:25:08 2017 +0000
mstarch: adding in ML JSON
commit 79a1b1b359659f0c06dc9ad8a1117818bad8ba13
Merge: 5f88c08 ebb1e6b
Author: gmanipon <[email protected]>
Date: Mon Apr 24 18:19:01 2017 +0000
Merge branch 'dev' of https://github.jpl.nasa.gov/aria-hysds/ariamh into dev
commit 5f88c08581c2dd0dc39afdd958db0e3fe1ab85d6
Author: gmanipon <[email protected]>
Date: Mon Apr 24 18:18:08 2017 +0000
update project urgent_response for S3 compatibility
commit ebb1e6b124b06458e56cb6e86d67a06486c839f3
Author: Justin P Linick <[email protected]>
Date: Mon Apr 24 09:40:33 2017 -0700
pull polarization from ifg xml file
commit 60b0e4ee08fbae7c7ada8d27df4b49dc8a4afead
Author: gmanipon <[email protected]>
Date: Mon Apr 24 14:55:52 2017 +0000
explicitly handle missing index exceptions
commit 69c76746ad78c47a41c9820b9000935da2dec9e6
Author: jlinick <[email protected]>
Date: Fri Apr 21 18:16:53 2017 +0000
mstarch: fixing syntax error
commit ac5c33d799f73112d16da82d72e358b78468af5d
Author: M Starch <[email protected]>
Date: Fri Apr 21 16:22:39 2017 +0000
mstarch: ifg exists now catches 404 returns false on index 404
commit 175102bd71f85bb2ed4197f253228b1c0145137b
Author: jlinick <[email protected]>
Date: Fri Apr 21 15:48:36 2017 +0000
mstarch: dataset tag now affecting -xt ifgs
commit b9e53b34d5a5b9b022eb3f0d00fb196852e958f0
Author: M Starch <[email protected]>
Date: Fri Apr 21 15:39:11 2017 +0000
mstarch: fixing version to be v1.1.1 for interferograms
commit 54ffc74037a092751eb17cff07ebec20893b0dcc
Author: jlinick <[email protected]>
Date: Wed Apr 19 22:42:30 2017 +0000
mstarch: assing help text to dataset_tag
commit 352638f566c28f9eefb658950d8b99ca50b8c880
Author: M Starch <[email protected]>
Date: Wed Apr 19 18:42:02 2017 +0000
mstarch: fixing defaults
commit 176989b5e39e366d8f5c84e765bf04d04a4d1126
Author: M Starch <[email protected]>
Date: Wed Apr 19 18:24:28 2017 +0000
mstarch: updating reg-ex
commit f4916ca3b36a908570324687610ce4bc9fa1ca98
Author: M Starch <[email protected]>
Date: Wed Apr 19 18:08:47 2017 +0000
mstarch: fixing name to add dataset_tag
commit 3252df04ee47943ce2a5be69431bd2e4ab5a337c
Author: M Starch <[email protected]>
Date: Wed Apr 19 17:53:50 2017 +0000
mstarch: fixed audit project list
commit 2066594c31e6bee4c22053ba4b3199cc43fd16d2
Merge: e8bc966 3d49f76
Author: M Starch <[email protected]>
Date: Wed Apr 19 17:34:14 2017 +0000
Merge branch 'v2-grfn' of https://github.jpl.nasa.gov/aria-hysds/ariamh into mstarch-minmatch-auditor
commit e8bc966f376818a248d7ebb81035e40f09b3266a
Merge: dd20de5 22655ba
Author: M Starch <[email protected]>
Date: Wed Apr 19 17:33:32 2017 +0000
Merge branch 'mstarch-looks' of https://github.jpl.nasa.gov/aria-hysds/ariamh into mstarch-minmatch-auditor
commit dd20de5f24243ff14cc5f2a194415773f54f8fb3
Author: M Starch <[email protected]>
Date: Wed Apr 19 17:28:58 2017 +0000
mstarch: fixing enumerables