@@ -35,8 +35,7 @@ const { showError, showSuccess } = useNotifier()
3535const { hasMore, isLoading, searchResults, searchStatus, handleSearchResults } = useSearch ()
3636const { activeTileId, currentBBox, currentBBoxValid, secondActiveTileId, currentMgrsTileId } =
3737 useAreaOfInterest ()
38- const { settings, collections, availableCollections, availableModels, modelIsSingleShot } =
39- useSettings ()
38+ const { settings, availableModels, modelIsSingleShot } = useSettings ()
4039const { isBatchProcessing } = useProcessingMode ()
4140const { placeSearch, isLoadingPlaces, suggestedPlaces, handleLocationSelected } = useGeocoding ()
4241const { processBatch, processSmallArea, isProcessing } = useBatchProcessing ()
@@ -265,11 +264,6 @@ watch(sceneSelectionStatus, (newValue) => {
265264})
266265watch (map , () => loadAvailableTiles ())
267266
268- const collectionTitle = computed (() => {
269- const collection = settings .value .collection [0 ]
270- return collection ? collections [collection ] : null
271- })
272-
273267const modelTitle = computed (() => {
274268 const model = settings .value .model
275269 return model ? availableModels .value .find ((m ) => m .id === model )?.title || null : null
@@ -521,32 +515,6 @@ const getStatus = (condition: any, warn: boolean = false) => {
521515 </v-radio-group >
522516 </v-expansion-panel-text >
523517 </v-expansion-panel >
524- <!-- Data Collection -->
525- <v-expansion-panel v-if =" currentMgrsTileId && settings.expertMode" value =" data" >
526- <v-expansion-panel-title >
527- <span class =" header-text" >
528- <v-badge v-bind =" getStatus(collectionTitle)" ></v-badge >
529- Imagery
530- <v-badge
531- v-if =" collectionTitle"
532- inline
533- color =" teal"
534- :content =" collectionTitle"
535- ></v-badge >
536- </span >
537- </v-expansion-panel-title >
538- <v-expansion-panel-text >
539- <v-radio-group v-model =" settings.collection" inline hide-details >
540- <v-radio
541- v-for =" collection in availableCollections"
542- :key =" collection[0]"
543- :label =" collections[collection[0]]"
544- :value =" collection"
545- color =" teal"
546- />
547- </v-radio-group >
548- </v-expansion-panel-text >
549- </v-expansion-panel >
550518 <!-- Area of Interest -->
551519 <v-expansion-panel value =" aoi" >
552520 <v-expansion-panel-title >
0 commit comments