-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patharchived_history.txt
2236 lines (1441 loc) · 63 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 96f6d88e4eaaf50e978da375f550dde940c69d4e
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jul 13 00:11:20 2017 +0000
mstarch: allowing users with e-mails
commit a3822e9a820322535d03dd0b1dbad6a8d7d9addc
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Tue Jun 13 21:40:32 2017 +0000
mstarch: making add/rm script allow globs
commit 8584faeceb3dbb1d80f76f402fe62a6c1ddd60fe
Merge: ea17aa7 0a6f134
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Tue Jun 13 21:09:32 2017 +0000
Merge branch 'master' of https://github.jpl.nasa.gov/hysds-org/grq2
commit ea17aa785b6eaade4a9e7c972fbd14ebffdd9e72
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Tue Jun 13 21:07:38 2017 +0000
mstarch: initial pass add/rm hysds-io users scripts
commit 0a6f13434edc29bdbb476b7ee712d421f407cebd
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jun 7 17:13:56 2017 -0700
mstarch: adding exception logging to help with grq index failed
commit 1b5f2938b3e0a4dc3edf69dd50180b39d951e66c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jun 6 19:39:14 2017 +0000
calculate time_span correctly
commit 8e8f0fea5cc1bef56f7e507eaa35d86612c0d24d
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jun 5 16:17:59 2017 +0000
update to handle slcp and lar datasets
commit 347a2de03df7c94747b4e08b2165775543fc3dfb
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jun 5 16:12:00 2017 +0000
add script to fix temporal_span bug
commit 88381c2b3ae133d7099a04b64c91e2748f22278d
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed May 31 19:18:48 2017 +0000
mstarch: adding a clean script to remove hysds-io files. USE WITH CAUTION.
commit 8d6ec67f215857129be9f19063990786a0e4c00e
Merge: 12c85cd 53e6e91
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Mar 14 14:49:03 2017 +0000
Merge branch 'v2' into test-merge
Conflicts:
config/es_doctype_insar.json
grq2/services/update.py
settings.cfg
commit 53e6e91063141153e2fcf81802ed32b50f326526
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Mar 13 15:15:28 2017 +0000
set in update_json
commit a0d6f3a67ca8e4feb39f5ef23ec5a3b1055238ef
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Mar 13 15:13:16 2017 +0000
update to get absolute value of temporal span
commit b276892e9985b8854e8f7632ddae0a7450a114d1
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Feb 27 15:27:05 2017 +0000
use boolean for store parameter
commit 7aea168abaa9db97328aaaf740349c824e918775
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 21 21:14:26 2017 +0000
update for v2 which doesn't need explicit ES settings or mappings
commit d50119d6da434af45eeefd009767fbfa567bb3bf
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 21 17:19:34 2017 +0000
add type def for optional creation_timestamp field
commit 289e1ab4f03415f88725371bf1597155681fe6a8
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 18 23:36:23 2017 +0000
mstarch: converting to use hysds_commons
commit efcb5a5431dffe2ac8d6cf7ccfed5d2f7b6c166d
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 5 20:23:20 2017 +0000
mstarch: cleaning up hysds-io code
commit dccc2d916aaf451726291c330ec22719259c7374
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 5 18:48:58 2017 +0000
mstarch: changing 'add' to 'post'
commit 45463e705c2a123738eba8f24c58284f8e21afbe
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 4 22:02:57 2017 +0000
mstarch: adding logging to HySDS library calls
commit 94808fa9adce875c663ec1dce93f1fc1fbb09208
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 4 21:05:06 2017 +0000
mstarch: adding hysds-io specs to GRQ to act as the REST for Tosca services
commit a646ca55b11fde0ba1b4e56bc21da0fcefbefcfb
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Nov 17 17:18:34 2016 +0000
pull dataset info from form
Update traceback message.
commit fc2ea014f8e4507e763fa37ca187d0b9837b4251
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Nov 17 17:02:05 2016 +0000
update stub for api v0.2
commit 22958e513345d079973ebf94296374dc6825a138
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Nov 17 16:14:35 2016 +0000
add link in top hat menu to API swagger doc
commit 7441b622b3388e314614ea89a6597021b1c043cb
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Nov 17 15:48:34 2016 +0000
return objectid after dataset is indexed
commit eda2f2898af69dd73b4bc0318946302b51a309e5
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Nov 16 22:10:05 2016 +0000
initial swaggerization of grq2 REST services
commit 758bed75799fe13245010fcba3b59568f4cbd3a3
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Nov 8 15:54:17 2016 +0000
generalize templates for trinity
commit 0ba28134fd5fbe9d9edf49e1a4238b40e6e9c0e1
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Nov 7 19:31:57 2016 +0000
initial implementation of nomenclature change from "product" to "dataset"
commit 12c85cdab1c6314a0c65f23c716f9e2a263e0f78
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Mon Oct 24 22:46:35 2016 +0000
mstarch: allowing pge_container
commit 2c22c9c813c61158ac990cd78071b540db26cb86
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Oct 18 13:53:06 2016 +0000
create index with mapping
commit bee8348007923d33dba4aecd4dc5809cd9f70cb4
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Oct 17 19:28:21 2016 +0000
replace usage of pyes module with elasticsearch module (official)
commit 4bbcd793c5f8d31655493c88feb01984fef81a08
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Oct 13 15:31:36 2016 +0000
delete previous template if exists
commit 5f0c2b493ab2605d6d994a06afaa0e32a72e74aa
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Oct 13 15:20:13 2016 +0000
initial implementation of generalizing grq2 product ingest
Add center geolocation type and metadata object types to schema in ES template.
Removed custom code for specific handling of dataset types.
commit a46e9ba47dbaa2becf587d477fdbf04fe09bc75f
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Oct 10 20:48:12 2016 +0000
fix indexing of RADARSAT-2 SGF datasets
commit 5c031d61c4ea60ce4a6efce9ff32f97deecbfecb
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Oct 10 20:31:44 2016 +0000
add RADARSAT-2
commit 7a5f3257203ce302e959538e05da5cbe0b4e981e
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Oct 10 20:27:59 2016 +0000
fix type for new ML fields
commit 4b7b3f9296c7a0c19100db3143841715ff528fcf
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Oct 10 20:27:16 2016 +0000
add support for RADARSAT-2
commit 84715e2ded92733dbeae68818bd4071297823411
Merge: d1adbb3 7bf2767
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Mon Oct 10 15:58:28 2016 +0000
Merge branch 'master' of https://github.jpl.nasa.gov/hysds-org/grq2
commit d1adbb3ce0b1bae75f7bc53ab952bae1058c4a63
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Mon Oct 10 15:56:14 2016 +0000
mstarch: adding predicted phase unwrapping bucket to es doc type
commit 7bf27675aa99bc179de5ff9c976a595c189cd1ac
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Oct 10 15:01:57 2016 +0000
add tags for CSK-GEC_B products
commit 47d4c2901bf23924a61cb1af2444026f881c360d
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Sat Oct 8 05:07:14 2016 +0000
generalized ingest of Sentinel1 datasets
commit 47b68f6fead9584e116e1daaa82e4279616754af
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Oct 6 17:45:02 2016 +0000
clean up configs using single ES template
commit a6b86d2f36c52717f3f45cded3fc5af9bf4f4a71
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Sep 15 14:25:19 2016 +0000
update time-series alias
commit 950a1cf6a2a5c46a2a1ce0b6e2e25e04345ae284
Merge: 7e33666 5d7b0a6
Author: Michael Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Tue Sep 6 21:50:05 2016 +0000
Merge branch 'master' of https://github.jpl.nasa.gov/hysds-org/grq2 into mstarch-dev
commit 5d7b0a6bf549aa0d27cefa53ee59469f66990c1c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Sep 1 17:03:21 2016 +0000
handle time-series bbox correctly
commit 860bae23644508851ccc06acccb6b04ffdc57cfd
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Aug 9 14:29:10 2016 +0000
add coherence product to reset scripts
commit e95a84971527135f5f4f3446b45fcd9f3cdcfbd3
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Aug 8 22:56:36 2016 +0000
add support S1A coherence product
commit f40bb734abac827869b6ba38657c40bbc086828b
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Aug 8 19:39:21 2016 +0000
update products to v1.0
commit 586d649504814f44d91c204d9eb92cf052d8375a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Jul 27 21:35:07 2016 +0000
detect aggregate datasets (ifgs) and set starttime/endtime accordingly
commit f02ce097d210899f7202c1f49a2c0a0bb27a5835
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jul 18 14:20:51 2016 +0000
set versions of cartopy and shapely
commit 7e33666677db48b7b5c75d37d9ffa37e49a327b1
Merge: 4ad039a c3e2ec7
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Tue Jun 21 20:22:50 2016 +0000
Merge branch 'master' of https://github.jpl.nasa.gov/hysds-org/grq2 into mstarch-dev
commit c3e2ec733bce8c8acf5f651bc9a52ed66d74e9de
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Jun 15 19:08:00 2016 +0000
handle missing tags from UNAVCO CSK metadata
commit 54b85bdfb9adbddd9c005ee2923bef58aec7e86f
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jun 13 21:44:22 2016 +0000
add incoming and area_of_interest; update to v0.9
commit 574ee05844f2b55b985e9fb90e83e6698cc34738
Merge: 4d022b3 e84b250
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jun 13 17:23:42 2016 +0000
Merge branch 'mcayanan-dev' into master-test-update
commit e84b2504ce048b9e53261a93df8feb2318cadd70
Author: mcayanan <michael.cayanan@jpl.nasa.gov>
Date: Mon Jun 13 17:22:59 2016 +0000
fixed typo
commit a22ac74220bcc0a0859ee8f02bc0b0322ecbf7e8
Author: mcayanan <michael.cayanan@jpl.nasa.gov>
Date: Mon Jun 13 17:21:34 2016 +0000
Update to v09
commit 1ce8fe70846dd920a36a281fe5703bd258deed15
Author: mcayanan <michael.cayanan@jpl.nasa.gov>
Date: Mon Jun 13 17:20:22 2016 +0000
Update update.py
commit 85de24481bb3f3563d30ca39f955c0859f46a973
Author: mcayanan <michael.cayanan@jpl.nasa.gov>
Date: Mon Jun 13 17:18:13 2016 +0000
Update to v09
commit 1246d9b3e7ad6ba910eb09351453dae992bc54da
Author: mcayanan <michael.cayanan@jpl.nasa.gov>
Date: Wed Jun 8 16:09:05 2016 +0000
Updated doctype for incoming datasets
commit 4d022b34e25048d8dac90597e7fcf6129304fe3c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jun 2 16:08:05 2016 -0700
update WVCC merged_data ES index
commit ad5fc29785b99085d277123391ae5ca9e7288406
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri May 27 02:09:51 2016 +0000
handle bbox extracted via gdal
commit f9ac62b84dcfc8b6d1c74175dc57a71af43e4f0e
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed May 25 13:14:10 2016 +0000
increment to v0.9
commit 4ad039a9deb713d88ef893165ad0ccc635d096e4
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Mon May 23 20:45:27 2016 +0000
mstarch: adding predictor unwrapping
commit 0f93c703993653dfa89715d594ad216cd5be739c
Author: mcayanan <michael.cayanan@jpl.nasa.gov>
Date: Fri May 20 22:26:59 2016 +0000
Updated to support incoming datasets
commit 4d53b1205934ddc0c9720cb643b3e72ccd6524ad
Author: mcayanan <michael.cayanan@jpl.nasa.gov>
Date: Wed May 18 01:46:15 2016 +0000
Added support for incoming dataset in update.py
commit f24866177ba2db720e878106aae32b84017cf9dc
Author: mcayanan <michael.cayanan@jpl.nasa.gov>
Date: Tue May 10 14:58:03 2016 +0000
Scripts to migrate the s3 datasets to have consistent naming convention
commit 6caeebdc3add88c782b3283a76ab9b2b5ea2ca1d
Author: mcayanan <michael.cayanan@jpl.nasa.gov>
Date: Tue May 10 14:48:50 2016 +0000
Added dumby product configuration to the settings.cfg
commit 9d04f38ae5d2239b0a35e772f08b13d03eeeb6cb
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu May 5 17:23:09 2016 +0000
ensure starttime and endtime are strings for temporal span extraction
commit f74ec77d4b4197098c366a4aa96407c441a567d2
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue May 3 20:47:43 2016 +0000
add script to fix temporal baseline
commit 75431c34b98396cabde8daaad1ad1cc5cd85dacc
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Apr 28 18:29:44 2016 +0000
round temporal span to the nearest number of days
commit 7f030fe8b9951f8c7678c6a5f2748fb0316195a0
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Apr 26 22:25:02 2016 +0000
update reset scripts to v08
commit e79774cf2906004243a97d50d1f89dfb5af05ac3
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Apr 26 22:09:02 2016 +0000
update to v08
commit 582fbb5e7f870878ed5879db6984d5cbb228f442
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Apr 26 19:22:52 2016 +0000
add temporal span metadata value
commit 9776343a01135ec9d68dc9f96df95b8fde3a8e79
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Mar 17 22:33:23 2016 +0000
add script to reset dumby indices
commit 2d3450f023b2b6d26830d186dc5e9de92d5a5433
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Mar 14 16:58:19 2016 +0000
move location logic for predictor_model to PGE
commit d05eba22088d95adb482517fc3ff404224bbd90f
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Mar 14 16:40:14 2016 +0000
add geolocation info for predictor_model
commit ec52ed078fee8a117509864617f862f89dcbdc34
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Mar 14 14:57:12 2016 +0000
generalize dataset type to predictor_model
commit 3b3c6f5b9754d094530d7c4d5d9f5e749856b57c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Mar 11 23:12:05 2016 +0000
add reset of phunw_classifier products
commit 05ace29f55e0ea34dba31bdc6a8840076ef7033d
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Mar 11 23:02:20 2016 +0000
add support for classifier
commit 9d9087213d75d4b605bbd5b9718e646a2dc08ba2
Author: M Starch <lestarch@googlemail.com>
Date: Thu Mar 3 18:38:45 2016 +0000
mstarch: fixing datatype to uavsar-ifg
commit 89813f6da547c9f70cbba46aee1069a8b4fc818d
Author: M Starch <lestarch@googlemail.com>
Date: Thu Mar 3 17:33:06 2016 +0000
mstarch: replacing else if with elif
commit 10ca7e3504718cb3e8d7cef22402ac985f3b0752
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Mar 3 17:30:13 2016 +0000
mstarch: added uavsar-slc override for interferogram
commit b34e379b159965b46290ffcff63e43b79b420fce
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Mar 3 08:33:47 2016 +0000
mstarch: UAVSAR polarization
commit e248d1353564ba8194c8b42ec982b165125395e1
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Mar 3 08:08:19 2016 +0000
mstarch: UAVSAR 0.7 products
commit 3f9e9a4e25478471ed9dbe2fab2a052ae42dfd89
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Feb 25 18:13:44 2016 +0000
mstarch: removing erroneous settings.cfg
commit 7a20a41c653fa5e5dd63c7431ca94173cd76f638
Merge: 0d24ba2 9f0e26d
Author: M Starch <lestarch@googlemail.com>
Date: Wed Feb 24 22:11:06 2016 +0000
Merge branch 'master' of https://github.jpl.nasa.gov/hysds-org/grq2
commit 0d24ba25fc2bc718d8a4dc41e35bdd9c7a0848f9
Author: M Starch <lestarch@googlemail.com>
Date: Wed Feb 24 22:10:57 2016 +0000
mstarch: committing better settings
commit 9f0e26d2d78fff607b89f3467408ed6a188886ae
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 23 01:32:41 2016 +0000
increment version to v0.7
commit f691d074bf8c3f074c71fcab88669103fa77a571
Author: M Starch <lestarch@googlemail.com>
Date: Thu Feb 18 23:28:44 2016 +0000
mstarch: UAVSAR now does reverse geolocation
commit c3f497c793075c0547af3f78cfa60e1d89d976a8
Author: M Starch <lestarch@googlemail.com>
Date: Wed Feb 17 22:42:01 2016 +0000
mstarch: adding uavsar es doctype
commit c8d82d0a1b8d0c27215400a126f8ba41d31d35fb
Merge: 4a060f4 1cab152
Author: M Starch <lestarch@googlemail.com>
Date: Wed Feb 17 22:38:47 2016 +0000
Merge branch 'master' of https://github.jpl.nasa.gov/hysds-org/grq2
commit 4a060f4e09ee7154cb48f7aea2afe5dffc34b95a
Author: M Starch <lestarch@googlemail.com>
Date: Wed Feb 17 22:38:35 2016 +0000
mstarch: adding dumby UAVSAR
commit 1cab15282f5ec2bae29f674c4fc109ace336972f
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 9 18:22:00 2016 +0000
update platform value for Sentinel-1A
commit 2051f47b68993a896089ef46e3003d4f7142d110
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Jan 29 19:51:29 2016 +0000
add AIRS-MODIS dataset
commit 475bedc859529df269418253e2ed8d01766af88c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jan 19 18:04:23 2016 +0000
revert worker for grq to gevent for high concurrency performance; enable debug level logging on all gunicorn apps
commit 477ae7de8042f114048585d99b966c01e1a725b0
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jan 19 16:38:39 2016 +0000
use gthread worker
commit 7e388cca28556f1f055819a6726603f07168f08a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Jan 6 18:13:00 2016 +0000
use eventlet worker
commit bc91204f220a5afb7adc6bfd04002a327e6e7374
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 22 18:47:56 2015 +0000
added S1A-IFG product to reset scripts
commit d027783c68473ab0bf9910017631dce5a7b1b4aa
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 22 18:45:06 2015 +0000
fix coords for S1A-IFG
commit da3603120e784d5fb5d2a2232176ead81ca25bc4
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Dec 21 17:43:30 2015 +0000
add s1a and s1a-swath products
commit b9376e78b6e86287fb8a3541eb03998245c23abc
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Dec 18 19:46:54 2015 +0000
update ingest of features for recent ariamh updates to met.json
commit aa9296430d35d20d78d16d152fb27936e296b970
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 9 00:46:58 2015 +0000
add features product to reset scripts
commit fee0f498f3159d5e694c714b8135e46d04206cb9
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 9 00:26:29 2015 +0000
set correct index name for features
commit 3d8f3cf5d7e135f7e10f0250ce98010da98ca053
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 9 00:14:19 2015 +0000
use similar metadata as InSAR products
commit 3fafb405e64c3f022a58eae7910a6751893d8396
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 8 19:49:48 2015 +0000
disable dynamic mapping of context object
commit 839417233c2266cbe4fd6baa38dae2bee6852466
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 8 19:43:09 2015 +0000
don't analyze features context
commit e4e51224419a17d9484c3009c7821eb100514116
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 8 16:35:59 2015 +0000
populate sensing start and stop for features
commit 843ee89a5ca0eadb6b5bb24132e615ab052749ec
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 8 15:37:19 2015 +0000
add support for ARIA-ML features product
commit 9d2f9c094cb635e7662f66fc9c3c142416d14c97
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Nov 10 18:59:13 2015 +0000
add .gitignore; add script to republish products published on s3 so that it can be re-indexed and published back to JPL
commit dc70117492c5cfdf923b1b670e9ccbaacdabb0b2
Author: Gerald Manipon <gmanipon@jpl.nasa.gov>
Date: Fri Nov 6 18:53:47 2015 +0000
revert back to ES 1.x until there's more support for ES 2.0
commit 06b23c5a72063e03db32c67495ba0d515c502206
Author: Gerald Manipon <gmanipon@jpl.nasa.gov>
Date: Fri Nov 6 17:36:51 2015 +0000
elasticsearch 2.0 compatibility
commit eb1f3ec6e7f6e9af4ae7dd06d46113a270fe98ef
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Oct 20 17:51:50 2015 +0000
add metadata for dataset priority and job priority from context
commit 1e1f48f38b0b455066a055e48b715e862c7fc2c1
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Oct 8 15:11:40 2015 +0000
update for OCO-2 and dumby products
commit af692651affd68fe1f978419230329db432d8426
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Oct 8 14:35:40 2015 +0000
remove version specs for install_requires
commit ed4dba0dcc8e3bafa5ae67b15ad2cbe8cf10bb8b
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Oct 5 18:23:12 2015 +0000
add time series
svn path=/trunk/SciFlo/grq2/; revision=8754
commit 81c3c08bd80072840e44c854cb6457dc2670a284
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Oct 5 16:38:21 2015 +0000
add new rogue indices to delete
svn path=/trunk/SciFlo/grq2/; revision=8753
commit ae1f4dd1eda2a7cb0a4455626bc6cc43c93db103
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Sep 24 03:07:21 2015 +0000
add S1A-SWATH product
svn path=/trunk/SciFlo/grq2/; revision=8736
commit 9cb458da4a294f635f3be4828ea919730f281cda
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Sep 2 20:09:13 2015 +0000
Removed log message.
svn path=/trunk/SciFlo/grq2/; revision=8717
commit 1ebc6e00590013280168a45743af20b1a1e73c79
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Sep 2 20:07:48 2015 +0000
Added dataset area_of_interest.
svn path=/trunk/SciFlo/grq2/; revision=8716
commit 9376e566904d2e6bad213235d81d90794af47067
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Aug 27 18:28:43 2015 +0000
Added S1A-IW_RAW support.
svn path=/trunk/SciFlo/grq2/; revision=8712
commit 3e0538bf9df1377f082456c735dfa7dab5085b77
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Aug 27 17:45:50 2015 +0000
Merged in updates from dev.
svn path=/trunk/SciFlo/grq2/; revision=8711
commit 35927c505e32e39bb86a14b85b969d30876c5603
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Aug 25 15:03:49 2015 +0000
Set platform field as a "not_analyzed" field; not multi-field.
svn path=/trunk/SciFlo/grq2/; revision=8704
commit ad5983512ec72f24335b3d4d97117179e44a2c27
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Aug 17 16:18:17 2015 +0000
Added.
svn path=/trunk/SciFlo/grq2/; revision=8699
commit 331fbc99a8ce2cc7a787122a948011d73cc31e05
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Aug 17 15:50:35 2015 +0000
Added location if not already in metadata dict.
svn path=/trunk/SciFlo/grq2/; revision=8698
commit b21f40f8fd6fa0bdcc3464acb71cbf2efe1464d1
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Aug 13 15:21:14 2015 +0000
Added spatial_resolution.
svn path=/trunk/SciFlo/grq2/; revision=8693
commit 12783ab1b7395795d08fbc6b507afafd561d8a62
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Aug 12 23:37:02 2015 +0000
Added temporal_resolution field.
svn path=/trunk/SciFlo/grq2/; revision=8692
commit 6905401b36dbf1a108a774bb33dff9afa2e23fd7
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Aug 12 01:34:46 2015 +0000
Updated to v06.
svn path=/trunk/SciFlo/grq2/; revision=8691
commit 6900c3a5ca22e1a3417e0ba8f3d54de3e2e88a07
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Aug 6 15:53:37 2015 +0000
Merged updates from dev.
svn path=/trunk/SciFlo/grq2/; revision=8682
commit 1c8ba1bfc58648caa9242439b53e3496e373a6b3
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Jul 29 01:46:17 2015 +0000
Added dataset type and level to schemas.
Replaced spacecraftName with platform.
Added tags for ARIA-MH products.
svn path=/trunk/SciFlo/grq2/; revision=8674
commit 41f99e1ae9f774e736677eb54c2d3d722260857c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 23 22:43:32 2015 +0000
Merged updates to doc template for InSAR.
svn path=/trunk/SciFlo/grq2/; revision=8671
commit f36f44f347221139b53fc2d94901ead6d9bce734
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 23 22:29:08 2015 +0000
Merged in branch changes.
svn path=/trunk/SciFlo/grq2/; revision=8669
commit e686fc49c8a1f2fc9f50acdc3d3166e50863e5da
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 23 22:24:55 2015 +0000
Updated.
svn path=/trunk/SciFlo/grq2/; revision=8668
commit b9902a85a9f267b2c07f1a18234d05c9e4cd2f2c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed May 6 22:05:07 2015 +0000
Fixed bowtie error.
svn path=/trunk/SciFlo/grq2/; revision=8598
commit c245302fcf25edab43bb350ac3f2281c360317ad
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue May 5 21:42:25 2015 +0000
Catch S1A interferograms.
svn path=/trunk/SciFlo/grq2/; revision=8592
commit ed41476cd150d525e145f45fa6141e523b0ec737
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue May 5 20:04:07 2015 +0000
Set dataset to "interferogram".
svn path=/trunk/SciFlo/grq2/; revision=8590
commit e047ebfc753772c10f19e01aae714b766b9489c5
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon May 4 00:30:37 2015 +0000
Fixed bug detecting S1A SLC scenes.
svn path=/trunk/SciFlo/grq2/; revision=8574
commit 1eb93f8ef15609aa8965e957b301c0fdf5cf1258
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Sat May 2 01:40:52 2015 +0000
Added S1A-IFG (sentinel interferograms).
svn path=/trunk/SciFlo/grq2/; revision=8563
commit 56652089c2de559892034f9c2699295cf251ae58
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri May 1 03:41:56 2015 +0000
Don't fix bowtie issue if S1A since bbox is not from ISCE metadata extraction.
svn path=/trunk/SciFlo/grq2/; revision=8549
commit 60a4c2dc3cfd7c22e56a312f4d6430af1ed5665d
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri May 1 01:24:37 2015 +0000
Detect Sentinel dataset.
svn path=/trunk/SciFlo/grq2/; revision=8544
commit db6f5bd8be1b8991b027dd9c7e765a0209420e52
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Apr 2 09:21:55 2015 +0000
Added frameID.
svn path=/trunk/SciFlo/grq2/; revision=8384
commit cd990bd233c3b6f5b2fb02d378e59259eb07b813
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Mar 3 00:40:51 2015 +0000
Remove webui.
svn path=/trunk/SciFlo/grq2/; revision=8318
commit 855a731967bde54cb4b40b706d07ca86a6ad0df7
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Feb 13 16:18:05 2015 +0000
Added configuration and ES mapping for user runs history.
svn path=/trunk/SciFlo/grq2/; revision=8280
commit 53bf9d75d437c09fdec2081a57197aae7cc4cd0d
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 10 15:01:27 2015 +0000
Added docs.
svn path=/trunk/SciFlo/grq2/; revision=8248
commit e19b84017adcd3dc0337e5899de590da2d2c27f5
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jan 26 17:49:45 2015 +0000
Lower required cartopy version.
svn path=/trunk/SciFlo/grq2/; revision=8165
commit 372d4154e311d4c4d91ebacef70c88d4f7225784
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jan 26 17:35:42 2015 +0000
Moved to config directory as an example.
svn path=/trunk/SciFlo/grq2/; revision=8164
commit 183288e9129d7a9aed56c186ab725a1a5a1fe5e1
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jan 15 18:24:59 2015 +0000
Updated to recognize WVCC_MERGED_DATA products.
svn path=/trunk/SciFlo/grq2/; revision=8132
commit 457d61808620f64efba35a12f892041f0ed6689f
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Oct 21 23:55:56 2014 +0000
Handle new dataset names for CSK: CSK-RAW_B, CSK-SCS_B, CSK-SCS_U.
svn path=/trunk/SciFlo/grq2/; revision=7871
commit c8459699b12977325dfd4ae41007d2697049875a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Oct 10 23:38:11 2014 +0000
Cleaned up to match product_ingest metadata.
svn path=/trunk/SciFlo/grq2/; revision=7834
commit 64925ac01f89788535475d7da02233116bebd5b5
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Oct 10 23:32:14 2014 +0000
Stop munging dataset. Use temp var, index_suffix, to determine index name.
svn path=/trunk/SciFlo/grq2/; revision=7833
commit d42a4e59997274cab977424a208728015c832600
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Oct 10 22:54:12 2014 +0000
Track dataset name and ipath.
svn path=/trunk/SciFlo/grq2/; revision=7831
commit 0bdb6cf23ffceab59504a5b9efa841cc0f96676f
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Oct 10 16:50:20 2014 +0000
Updated dev to v04.
svn path=/trunk/SciFlo/grq2/; revision=7827
commit a26d2e531f454b949a1d0051d6bf6467b45c25f9
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Oct 10 16:47:29 2014 +0000
Increment ARIA-MH versions.