Skip to content

Commit 01e18df

Browse files
committed
Update more texts
1 parent 01b9072 commit 01e18df

3 files changed

Lines changed: 43 additions & 9 deletions

File tree

src/components/GeocodingSearch.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ const onLocationSelected = (item: { value: PlaceResult; title: string } | null)
8181
></v-autocomplete>
8282
<v-menu open-on-hover :close-on-content-click="false" max-width="400">
8383
<template #activator="{ props }">
84-
<v-icon class="ml-1" :icon="mdiInformationOutline" size="x-small" v-bind="props"></v-icon>
84+
<v-icon class="ml-1" :icon="mdiInformationOutline" size="small" v-bind="props"></v-icon>
8585
</template>
8686
<v-sheet class="pa-3 text-body-2">
8787
Geocoding provided by Nominatim.<br />

src/components/GlobalDataPanel.vue

Lines changed: 41 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ const handleLocationSelected = (place: PlaceResult) => {
3737
<template>
3838
<div class="settings">
3939
<v-alert density="compact" color="gray" class="mb-2 introduction">
40-
The <strong>global predictions</strong> provide global-scale estimates of agricultural fields
41-
for 2024 and 2025. They were computed using the model
40+
Pre-computed agricultural field boundaries for <strong>2024</strong> and
41+
<strong>2025</strong>, generated globally with the
4242
<v-menu open-on-hover :close-on-content-click="false" max-width="400">
4343
<template #activator="{ props }">
4444
<strong v-bind="props" style="cursor: pointer; text-decoration: underline dotted"
@@ -53,8 +53,9 @@ const handleLocationSelected = (place: PlaceResult) => {
5353
>PRUE: A Practical Recipe for Field Boundary Segmentation at Scale</a
5454
>" for more information. The model version "FTW v3" is also named "PRUE" in the
5555
paper.</v-sheet
56-
> </v-menu
57-
>.
56+
>
57+
</v-menu>
58+
model.
5859
</v-alert>
5960

6061
<v-row class="d-flex justify-center w-100 mx-auto mb-0">
@@ -76,7 +77,24 @@ const handleLocationSelected = (place: PlaceResult) => {
7677
No basemap is available for {{ settings.year }}. Showing the
7778
{{ getEffectiveCloudlessYear(settings.year) }} basemap instead.
7879
</v-alert>
79-
<h3 class="group">Confidence Threshold: {{ settings.threshold }}%</h3>
80+
<h3 class="group">
81+
Confidence Threshold: {{ settings.threshold }}%
82+
<v-tooltip max-width="360" location="top">
83+
<template #activator="{ props }">
84+
<v-icon
85+
class="ml-2"
86+
:icon="mdiInformationOutline"
87+
size="small"
88+
v-bind="props"
89+
></v-icon>
90+
</template>
91+
<span
92+
>Only show fields where the model's confidence meets this threshold. Higher values
93+
show fewer, more certain fields; lower values show more fields, including less certain
94+
ones.</span
95+
>
96+
</v-tooltip>
97+
</h3>
8098
<v-slider
8199
v-model.number="settings.threshold"
82100
:min="0"
@@ -102,7 +120,7 @@ const handleLocationSelected = (place: PlaceResult) => {
102120
<h3>Download Data</h3>
103121
<v-menu open-on-hover :close-on-content-click="false" max-width="400">
104122
<template #activator="{ props }">
105-
<v-icon :icon="mdiInformationOutline" size="x-small" v-bind="props"></v-icon>
123+
<v-icon :icon="mdiInformationOutline" size="small" v-bind="props"></v-icon>
106124
</template>
107125
<v-sheet class="pa-3 text-body-2">
108126
<p class="pb-2">
@@ -126,7 +144,23 @@ const handleLocationSelected = (place: PlaceResult) => {
126144
label="Show download grid"
127145
class="mb-1"
128146
/>
129-
<h3 class="group legend">Legend</h3>
147+
<h3 class="group legend">
148+
Legend
149+
<v-tooltip max-width="360" location="top">
150+
<template #activator="{ props }">
151+
<v-icon
152+
class="ml-2"
153+
:icon="mdiInformationOutline"
154+
size="small"
155+
v-bind="props"
156+
></v-icon>
157+
</template>
158+
<span
159+
>Zoomed out, the map shows <strong>field density</strong> (fields per area). Zoom in
160+
to see individual fields colored by the model's <strong>confidence</strong>.</span
161+
>
162+
</v-tooltip>
163+
</h3>
130164
<MapLegend />
131165
</v-col>
132166
</v-row>

src/components/ProcessingPanel.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ defineExpose({ openModelSelection })
481481
<v-icon
482482
class="ml-1"
483483
:icon="mdiInformationOutline"
484-
size="x-small"
484+
size="small"
485485
v-bind="props"
486486
></v-icon>
487487
</template>

0 commit comments

Comments
 (0)