Skip to content

Commit fff054f

Browse files
committed
change upper case spelling in UI
1 parent 5679118 commit fff054f

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

server.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function(input, output, session) {
105105
## Interactive Map ###########################################
106106
output$stusi <- renderUI({
107107
lapply(1, function(x) {
108-
selectInput("stusi", "Select Case Study", stusi,
108+
selectInput("stusi", "Select case study", stusi,
109109
selected = stusi[1], width = "200px")
110110
})
111111
})
@@ -170,7 +170,7 @@ function(input, output, session) {
170170
inputId = "ex.max.n.point")
171171
output$stusi <- renderUI({
172172
lapply(1, function(x) {
173-
selectInput("stusi", "Select Case Study", stusi,
173+
selectInput("stusi", "Select case study", stusi,
174174
selected = stusi[1], width = "200px")
175175
})
176176
})
@@ -343,7 +343,7 @@ observeEvent(input$blopt, {
343343
# dynamic Input for temp baseline in PS mode
344344
output$bl.temp <- renderUI({
345345
lapply(1, function(x) {
346-
sliderInput(inputId = "bl.temp", label = "Temporal Baseline Threshold",
346+
sliderInput(inputId = "bl.temp", label = "Temporal baseline threshold",
347347
min = 1, max = 1000, value = 500)
348348
})
349349
})

ui.R

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ shinyUI(fluidPage(
7070
uiOutput("stusi")
7171
),
7272
column(3,
73-
sliderInput("pcex", label = "Point Size",
73+
sliderInput("pcex", label = "Point size",
7474
min = 1, max = 10, value = 5)),
7575
column(4,
76-
fileInput("geojson", "Upload Custom Geometry (.geojson)",
76+
fileInput("geojson", "Upload custom geometry (.geojson)",
7777
accept = ".geojson"))
7878
),
7979
h4("Time series tools"),
@@ -82,13 +82,13 @@ shinyUI(fluidPage(
8282
label = 'Date of event',
8383
value = Sys.Date())),
8484
column(4,
85-
selectInput('add.trend', 'Add Trendline',
85+
selectInput('add.trend', 'Add trendline',
8686
choices = c('Connect MP' = 'ctrend',
87-
'Linear Trend' = 'ltrend',
88-
'2nd Order Polynomial Trend' = 'ptrend'),
87+
'Linear trend' = 'ltrend',
88+
'2nd order polynomial trend' = 'ptrend'),
8989
selected = 'ctrend')),
9090
column(2,
91-
actionButton('sub.offset', label = 'Subtr. Offset',
91+
actionButton('sub.offset', label = 'Subtr. offset',
9292
style = "margin-top: 25px;"))#,
9393
#column(3,
9494
# actionButton('add.ts', label = 'Add point to TS-Selection',
@@ -121,7 +121,7 @@ shinyUI(fluidPage(
121121
selected = bl.info[1]),
122122
# select SBAS or PS plot
123123
radioButtons(inputId = "blopt",
124-
label = "DInSAR Approach:",
124+
label = "DInSAR approach:",
125125
choiceNames = list(
126126
"Persistent Scatterer PS", "Small BAseline Analysis SBAS"),
127127
choiceValues = list(

0 commit comments

Comments
 (0)