From 65d54aebee3be6ba418830aaa8bd358889d22466 Mon Sep 17 00:00:00 2001 From: Mike VanDenburgh <37340715+mvandenburgh@users.noreply.github.com> Date: Thu, 5 Sep 2024 11:32:23 -0400 Subject: [PATCH] Default to S2 imagery download (#495) Now that WV cog is disabled, we should default to S2 instead of WV nitf. --- vue/src/components/ImagesDownloadDialog.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vue/src/components/ImagesDownloadDialog.vue b/vue/src/components/ImagesDownloadDialog.vue index 252d783ce..02f34a19c 100644 --- a/vue/src/components/ImagesDownloadDialog.vue +++ b/vue/src/components/ImagesDownloadDialog.vue @@ -20,7 +20,7 @@ const emit = defineEmits<{ }>(); const constellationChoices = ref(['S2', 'WV',]) // TODO: Image Download HotFix ref(['S2', 'WV', 'L8', 'PL']) -const selectedConstellation: Ref = ref(['WV']); +const selectedConstellation: Ref = ref(['S2']); const worldviewSourceChoices = computed(() => selectedConstellation.value.includes('WV') ? ['nitf'] : null); // TODO Image Download Hotfix: add back in cog const selectedWorldviewSource = ref<'nitf'>('nitf'); // // TODO: Image Download HotFix ref<'cog' | 'nitf'>('cog'); const dayRange = ref(14);