-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_issues.json
More file actions
1010 lines (1010 loc) · 53.8 KB
/
Copy pathsample_issues.json
File metadata and controls
1010 lines (1010 loc) · 53.8 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
[
{
"number": 1,
"title": "[PM]-[Objective 1]: COG pipeline hardening",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/1",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **COG pipeline hardening** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for cog pipeline hardening.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Devon Lee | Frontend | 0.45 | — |\n| Morgan Reyes | Jupyterhub | 0.45 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 26.4",
"pi_start": "2026-07-12",
"pi_end": "2026-10-17",
"start": "2026-08-19",
"end": "2026-09-13",
"initiative": "Disasters",
"project": "Disasters",
"team": "Front-end"
}
},
{
"number": 2,
"title": "[Frontend]-[Objective 2]: S3 ingestion API v2",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/2",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **S3 ingestion API v2** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for s3 ingestion api v2.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Liam Walsh | Data Curator | 0.45 | — |\n| Nadia Hassan | Backend | 0.45 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 26.4",
"pi_start": "2026-07-12",
"pi_end": "2026-10-17",
"start": "2026-07-12",
"end": "2026-10-17",
"initiative": "AIR4US",
"project": "HLS",
"team": "Back-end"
}
},
{
"number": 3,
"title": "[Backend]-[Objective 3]: Disaster dashboard redesign",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/3",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Disaster dashboard redesign** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for disaster dashboard redesign.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Carla Diaz | Geospatial | 0.45 | — |\n| Sam Okoro | ML | 0.45 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 26.4",
"pi_start": "2026-07-12",
"pi_end": "2026-10-17",
"start": "2026-07-12",
"end": "2026-10-17",
"initiative": "Water Insights",
"project": "MAAP",
"team": "Geospatial"
}
},
{
"number": 4,
"title": "[Geospatial]-[Objective 4]: Flood extent model",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/4",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Flood extent model** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for flood extent model.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Owen Clark | Geospatial | 0.45 | — |\n| Alice Nguyen | PM | 0.45 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 26.4",
"pi_start": "2026-07-12",
"pi_end": "2026-10-17",
"start": "2026-07-12",
"end": "2026-10-17",
"initiative": "Plugins",
"project": "CSDA",
"team": "Data Services"
}
},
{
"number": 5,
"title": "[Data Curator]-[Objective 5]: CSDA catalog automation",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/5",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **CSDA catalog automation** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for csda catalog automation.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Taylor Brooks | Comms | 0.45 | — |\n| Bob Martinez | Backend | 0.45 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 26.4",
"pi_start": "2026-07-12",
"pi_end": "2026-10-17",
"start": "2026-07-12",
"end": "2026-10-17",
"initiative": "CMS",
"project": "AQ Portal",
"team": "Plugins"
}
},
{
"number": 6,
"title": "[Comms]-[Objective 6]: Stakeholder reporting portal",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/6",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Stakeholder reporting portal** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for stakeholder reporting portal.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Elena Petrova | Designer | 0.45 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 26.4",
"pi_start": "2026-07-12",
"pi_end": "2026-10-17",
"start": "2026-07-12",
"end": "2026-10-17",
"initiative": "EIE",
"project": "Disasters",
"team": "ODD"
}
},
{
"number": 7,
"title": "[ML]-[Objective 7]: Notebook environment upgrade",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/7",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Notebook environment upgrade** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for notebook environment upgrade.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Jordan Kim | Designer | 0.45 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 26.4",
"pi_start": "2026-07-12",
"pi_end": "2026-10-17",
"start": "2026-07-12",
"end": "2026-10-17",
"initiative": "TiTiler-CMR",
"project": "HLS",
"team": "EIE"
}
},
{
"number": 8,
"title": "[Designer]-[Objective 8]: Reprojection service scaling",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/8",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Reprojection service scaling** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for reprojection service scaling.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Priya Patel | Data Curator | 0.45 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 26.4",
"pi_start": "2026-07-12",
"pi_end": "2026-10-17",
"start": "2026-07-12",
"end": "2026-10-17",
"initiative": "Science Support",
"project": "MAAP",
"team": "Front-end"
}
},
{
"number": 9,
"title": "[Jupyterhub]-[Objective 9]: Auth & access control",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/9",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Auth & access control** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for auth & access control.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Rae Thompson | Frontend | 0.45 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 26.4",
"pi_start": "2026-07-12",
"pi_end": "2026-10-17",
"start": "2026-07-12",
"end": "2026-10-17",
"initiative": "Cloud-Optimized R+D",
"project": "CSDA",
"team": "Back-end"
}
},
{
"number": 10,
"title": "[PM]-[Objective 10]: Data QA automation",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/10",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Data QA automation** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for data qa automation.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Sofia Rossi | PM | 0.57 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 26.4",
"pi_start": "2026-07-12",
"pi_end": "2026-10-17",
"start": "2026-08-08",
"end": "2026-09-22",
"initiative": "Disasters",
"project": "AQ Portal",
"team": "Geospatial"
}
},
{
"number": 11,
"title": "[Frontend]-[Objective 11]: Tile server migration",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/11",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Tile server migration** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for tile server migration.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Sofia Rossi | PM | 0.57 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 26.4",
"pi_start": "2026-07-12",
"pi_end": "2026-10-17",
"start": "2026-07-12",
"end": "2026-10-17",
"initiative": "AIR4US",
"project": "Disasters",
"team": "Data Services"
}
},
{
"number": 12,
"title": "[Backend]-[Objective 12]: Metadata schema v3",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/12",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Metadata schema v3** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for metadata schema v3.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Yuki Tanaka | ML | 0.45 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 26.4",
"pi_start": "2026-07-12",
"pi_end": "2026-10-17",
"start": "2026-08-29",
"end": "2026-10-13",
"initiative": "Water Insights",
"project": "HLS",
"team": "Plugins"
}
},
{
"number": 13,
"title": "[Geospatial]-[Objective 13]: Alerting pipeline",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/13",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Alerting pipeline** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for alerting pipeline.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Elena Petrova | Designer | 0.68 | — |\n| Liam Walsh | Data Curator | 0.68 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-10-18",
"end": "2027-01-16",
"initiative": "Plugins",
"project": "MAAP",
"team": "ODD"
}
},
{
"number": 14,
"title": "[Data Curator]-[Objective 14]: Cloud cost monitoring",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/14",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Cloud cost monitoring** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for cloud cost monitoring.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Owen Clark | Geospatial | 0.68 | — |\n| Sofia Rossi | PM | 0.65 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-10-18",
"end": "2027-01-16",
"initiative": "CMS",
"project": "CSDA",
"team": "EIE"
}
},
{
"number": 15,
"title": "[Comms]-[Objective 15]: Wildfire severity model",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/15",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Wildfire severity model** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for wildfire severity model.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Nadia Hassan | Backend | 0.68 | — |\n| Sofia Rossi | PM | 0.65 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-11-01",
"end": "2026-12-11",
"initiative": "EIE",
"project": "AQ Portal",
"team": "Front-end"
}
},
{
"number": 16,
"title": "[ML]-[Objective 16]: Public API documentation",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/16",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Public API documentation** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for public api documentation.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Taylor Brooks | Comms | 0.68 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-10-18",
"end": "2027-01-16",
"initiative": "TiTiler-CMR",
"project": "Disasters",
"team": "Back-end"
}
},
{
"number": 17,
"title": "[Designer]-[Objective 17]: Onboarding revamp",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/17",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Onboarding revamp** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for onboarding revamp.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Rae Thompson | Frontend | 0.68 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-10-18",
"end": "2027-01-16",
"initiative": "Science Support",
"project": "HLS",
"team": "Geospatial"
}
},
{
"number": 18,
"title": "[Jupyterhub]-[Objective 18]: STAC catalog buildout",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/18",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **STAC catalog buildout** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for stac catalog buildout.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Priya Patel | Data Curator | 0.68 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-10-18",
"end": "2027-01-16",
"initiative": "Cloud-Optimized R+D",
"project": "MAAP",
"team": "Data Services"
}
},
{
"number": 19,
"title": "[PM]-[Objective 19]: Imagery mosaicking",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/19",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Imagery mosaicking** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for imagery mosaicking.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Jordan Kim | Designer | 0.68 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-10-18",
"end": "2027-01-16",
"initiative": "Disasters",
"project": "CSDA",
"team": "Plugins"
}
},
{
"number": 20,
"title": "[Frontend]-[Objective 20]: Latency profiling",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/20",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Latency profiling** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for latency profiling.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Alice Nguyen | Backend | 0.65 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-10-18",
"end": "2027-01-16",
"initiative": "AIR4US",
"project": "AQ Portal",
"team": "ODD"
}
},
{
"number": 21,
"title": "[Backend]-[Objective 21]: Nodata standardization",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/21",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Nodata standardization** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for nodata standardization.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Carla Diaz | Geospatial | 0.68 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-10-18",
"end": "2027-01-16",
"initiative": "Water Insights",
"project": "Disasters",
"team": "EIE"
}
},
{
"number": 22,
"title": "[Geospatial]-[Objective 22]: Hurricane track ingestion",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/22",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Hurricane track ingestion** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for hurricane track ingestion.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Alice Nguyen | PM | 0.65 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-11-09",
"end": "2026-12-14",
"initiative": "Plugins",
"project": "HLS",
"team": "Front-end"
}
},
{
"number": 23,
"title": "[Data Curator]-[Objective 23]: Access log analytics",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/23",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Access log analytics** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for access log analytics.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Bob Martinez | Backend | 0.65 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-10-18",
"end": "2027-01-16",
"initiative": "CMS",
"project": "MAAP",
"team": "Back-end"
}
},
{
"number": 24,
"title": "[Comms]-[Objective 24]: Model retraining harness",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/24",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Model retraining harness** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for model retraining harness.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Devon Lee | Frontend | 0.68 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-10-18",
"end": "2027-01-16",
"initiative": "EIE",
"project": "CSDA",
"team": "Geospatial"
}
},
{
"number": 25,
"title": "[ML]-[Objective 25]: Colormap library",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/25",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Colormap library** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for colormap library.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Yuki Tanaka | ML | 0.68 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-10-18",
"end": "2027-01-16",
"initiative": "TiTiler-CMR",
"project": "AQ Portal",
"team": "Data Services"
}
},
{
"number": 26,
"title": "[Designer]-[Objective 26]: Region-of-interest tooling",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/26",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Region-of-interest tooling** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for region-of-interest tooling.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Sam Okoro | ML | 0.68 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-11-27",
"end": "2026-12-29",
"initiative": "Science Support",
"project": "Disasters",
"team": "Plugins"
}
},
{
"number": 27,
"title": "[Jupyterhub]-[Objective 27]: Backfill orchestration",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/27",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Backfill orchestration** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for backfill orchestration.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Bob Martinez | Backend | 0.65 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-10-18",
"end": "2027-01-16",
"initiative": "Cloud-Optimized R+D",
"project": "HLS",
"team": "ODD"
}
},
{
"number": 28,
"title": "[PM]-[Objective 28]: Vector tile support",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/28",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Vector tile support** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for vector tile support.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Morgan Reyes | Jupyterhub | 0.68 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.1",
"pi_start": "2026-10-18",
"pi_end": "2027-01-16",
"start": "2026-11-16",
"end": "2027-01-01",
"initiative": "Disasters",
"project": "MAAP",
"team": "EIE"
}
},
{
"number": 29,
"title": "[Frontend]-[Objective 29]: Search relevance tuning",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/29",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Search relevance tuning** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for search relevance tuning.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Alice Nguyen | PM | 0.72 | — |\n| Jordan Kim | Designer | 0.42 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-17",
"end": "2027-04-17",
"initiative": "AIR4US",
"project": "CSDA",
"team": "Front-end"
}
},
{
"number": 30,
"title": "[Backend]-[Objective 30]: Incident runbook automation",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/30",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Incident runbook automation** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for incident runbook automation.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Bob Martinez | Backend | 0.72 | — |\n| Yuki Tanaka | ML | 0.72 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-17",
"end": "2027-04-17",
"initiative": "Water Insights",
"project": "AQ Portal",
"team": "Back-end"
}
},
{
"number": 31,
"title": "[Geospatial]-[Objective 31]: COG pipeline hardening",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/31",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **COG pipeline hardening** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for cog pipeline hardening.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Rae Thompson | Frontend | 0.42 | — |\n| Elena Petrova | Designer | 0.42 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-25",
"end": "2027-03-20",
"initiative": "Plugins",
"project": "Disasters",
"team": "Geospatial"
}
},
{
"number": 32,
"title": "[Data Curator]-[Objective 32]: S3 ingestion API v2",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/32",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **S3 ingestion API v2** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for s3 ingestion api v2.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Liam Walsh | Data Curator | 0.42 | — |\n| Alice Nguyen | Backend | 0.72 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-17",
"end": "2027-04-17",
"initiative": "CMS",
"project": "HLS",
"team": "Data Services"
}
},
{
"number": 33,
"title": "[Comms]-[Objective 33]: Disaster dashboard redesign",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/33",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Disaster dashboard redesign** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for disaster dashboard redesign.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Carla Diaz | Geospatial | 0.42 | — |\n| Owen Clark | Geospatial | 0.42 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-17",
"end": "2027-04-17",
"initiative": "EIE",
"project": "MAAP",
"team": "Plugins"
}
},
{
"number": 34,
"title": "[ML]-[Objective 34]: Flood extent model",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/34",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Flood extent model** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for flood extent model.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Owen Clark | Geospatial | 0.42 | — |\n| Sam Okoro | Data Curator | 0.42 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-17",
"end": "2027-04-17",
"initiative": "TiTiler-CMR",
"project": "CSDA",
"team": "ODD"
}
},
{
"number": 35,
"title": "[Designer]-[Objective 35]: CSDA catalog automation",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/35",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **CSDA catalog automation** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for csda catalog automation.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Jordan Kim | Designer | 0.42 | — |\n| Nadia Hassan | Backend | 0.72 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-27",
"end": "2027-04-02",
"initiative": "Science Support",
"project": "AQ Portal",
"team": "EIE"
}
},
{
"number": 36,
"title": "[Jupyterhub]-[Objective 36]: Stakeholder reporting portal",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/36",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Stakeholder reporting portal** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for stakeholder reporting portal.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Bob Martinez | Backend | 0.72 | — |\n| Morgan Reyes | Jupyterhub | 0.42 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-17",
"end": "2027-04-17",
"initiative": "Cloud-Optimized R+D",
"project": "Disasters",
"team": "Front-end"
}
},
{
"number": 37,
"title": "[PM]-[Objective 37]: Notebook environment upgrade",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/37",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Notebook environment upgrade** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for notebook environment upgrade.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Elena Petrova | Designer | 0.42 | — |\n| Yuki Tanaka | ML | 0.72 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-02-10",
"end": "2027-04-11",
"initiative": "Disasters",
"project": "HLS",
"team": "Back-end"
}
},
{
"number": 38,
"title": "[Frontend]-[Objective 38]: Reprojection service scaling",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/38",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Reprojection service scaling** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for reprojection service scaling.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Liam Walsh | Data Curator | 0.42 | — |\n| Sam Okoro | ML | 0.42 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-17",
"end": "2027-04-17",
"initiative": "AIR4US",
"project": "MAAP",
"team": "Geospatial"
}
},
{
"number": 39,
"title": "[Backend]-[Objective 39]: Auth & access control",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/39",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Auth & access control** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for auth & access control.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Devon Lee | Designer | 0.42 | — |\n| Taylor Brooks | Comms | 0.42 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-17",
"end": "2027-04-17",
"initiative": "Water Insights",
"project": "CSDA",
"team": "Data Services"
}
},
{
"number": 40,
"title": "[Geospatial]-[Objective 40]: Data QA automation",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/40",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Data QA automation** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for data qa automation.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Priya Patel | Data Curator | 0.42 | — |\n| Priya Patel | PM | 0.42 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-17",
"end": "2027-04-17",
"initiative": "Plugins",
"project": "AQ Portal",
"team": "Plugins"
}
},
{
"number": 41,
"title": "[Data Curator]-[Objective 41]: Tile server migration",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/41",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Tile server migration** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for tile server migration.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Taylor Brooks | Comms | 0.42 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-17",
"end": "2027-04-17",
"initiative": "CMS",
"project": "Disasters",
"team": "ODD"
}
},
{
"number": 42,
"title": "[Comms]-[Objective 42]: Metadata schema v3",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/42",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Metadata schema v3** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for metadata schema v3.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Rae Thompson | Frontend | 0.42 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-24",
"end": "2027-03-30",
"initiative": "EIE",
"project": "HLS",
"team": "EIE"
}
},
{
"number": 43,
"title": "[ML]-[Objective 43]: Alerting pipeline",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/43",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Alerting pipeline** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for alerting pipeline.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Sofia Rossi | PM | 0.72 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-17",
"end": "2027-04-17",
"initiative": "TiTiler-CMR",
"project": "MAAP",
"team": "Front-end"
}
},
{
"number": 44,
"title": "[Designer]-[Objective 44]: Cloud cost monitoring",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/44",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Cloud cost monitoring** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for cloud cost monitoring.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Morgan Reyes | Jupyterhub | 0.42 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-17",
"end": "2027-04-17",
"initiative": "Science Support",
"project": "CSDA",
"team": "Back-end"
}
},
{
"number": 45,
"title": "[Jupyterhub]-[Objective 45]: Wildfire severity model",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/45",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Wildfire severity model** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for wildfire severity model.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Nadia Hassan | Backend | 0.72 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-17",
"end": "2027-04-17",
"initiative": "Cloud-Optimized R+D",
"project": "AQ Portal",
"team": "Geospatial"
}
},
{
"number": 46,
"title": "[PM]-[Objective 46]: Public API documentation",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/46",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Public API documentation** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for public api documentation.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Sofia Rossi | PM | 0.72 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-17",
"end": "2027-04-17",
"initiative": "Disasters",
"project": "Disasters",
"team": "Data Services"
}
},
{
"number": 47,
"title": "[Frontend]-[Objective 47]: Onboarding revamp",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/47",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **Onboarding revamp** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for onboarding revamp.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Carla Diaz | Geospatial | 0.42 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",
"pi_start": "2027-01-17",
"pi_end": "2027-04-17",
"start": "2027-01-17",
"end": "2027-04-17",
"initiative": "AIR4US",
"project": "HLS",
"team": "Plugins"
}
},
{
"number": 48,
"title": "[Backend]-[Objective 48]: STAC catalog buildout",
"url": "https://github.com/NASA-IMPACT/veda-github-actions/issues/48",
"state": "open",
"body": "## Context\n\n### Motivation\nDeliver **STAC catalog buildout** to support the Disasters program during this PI.\n\n### Description\nScope, milestones, and dependencies for stac catalog buildout.\n\n### Examples & Concept Diagrams (If applicable)\n\n## Success Criteria\n- [ ] Design reviewed and approved\n- [ ] Implementation merged and deployed\n\n## Risks\n- Dependency slippage; mitigate with early integration checkpoints.\n\n## LOE/FTE\n<!-- PI and Start/End dates live on the project board, not here. -->\n| Person | Role | FTE | Notes |\n| ------ | ---- | --- | ----- |\n| Devon Lee | Frontend | 0.42 | — |",
"labels": [
"Objective",
"poc-loe"
],
"project": {
"pi": "PI 27.2",