Skip to content

Commit

Permalink
Default to S2 imagery download (#495)
Browse files Browse the repository at this point in the history
Now that WV cog is disabled, we should default to S2 instead of
WV nitf.
  • Loading branch information
mvandenburgh authored Sep 5, 2024
1 parent cb04b05 commit 65d54ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vue/src/components/ImagesDownloadDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const emit = defineEmits<{
}>();
const constellationChoices = ref(['S2', 'WV',]) // TODO: Image Download HotFix ref(['S2', 'WV', 'L8', 'PL'])
const selectedConstellation: Ref<Constellation[]> = ref(['WV']);
const selectedConstellation: Ref<Constellation[]> = ref(['S2']);
const worldviewSourceChoices = computed<string[] | null>(() => 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);
Expand Down

0 comments on commit 65d54ae

Please sign in to comment.