-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.R
282 lines (239 loc) · 8.51 KB
/
app.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
#
# This is a Shiny web application. You can run the application by clicking
# the 'Run App' button above when the project is opened in RStudio.
#
# This app has been developed by Niko Partanen and Jack Rueter.
library(shiny)
library(dplyr)
library(xml2)
library(tidyr)
library(leaflet)
# Read the XML file
#xml_data <- read_xml("data/test_paasonen_mw_2024_12_27.xml")
# Add error handling for URL access
tryCatch({
xml_data <- read_xml("https://raw.githubusercontent.com/rueter/Dictionary-Map-Viewer/refs/heads/main/data/test_paasonen_mw_2024_12_27.xml")
}, error = function(e) {
# Log the error and provide a user-friendly message
message("Error loading XML data: ", e$message)
# You might want to return a default/empty XML or stop the app gracefully
})
# Function to safely extract text from nodes
safe_text <- function(node) {
if(length(node) > 0) {
return(xml_text(node))
}
return(NA)
}
# Extract entries
entries <- xml_find_all(xml_data, "//e")
# Create empty lists to store data
data_list <- list()
row_counter <- 1
# Process each entry
for(i in seq_along(entries)) {
entry <- entries[i]
# Get the base lemmas - modified to get the id attribute and parse it
myv_l <- xml_find_first(entry, ".//lb[@iso_lang='myv']/l")
mdf_l <- xml_find_first(entry, ".//lb[@iso_lang='mdf']/l")
lemma_myv <- if(!is.na(myv_l)) {
id_str <- xml_attr(myv_l, "id")
# Extract the base form from the id (assuming format like "E:1:N+Sg+Nom+Indef:кедь")
strsplit(id_str, ":")[[1]][length(strsplit(id_str, ":")[[1]])]
} else NA
lemma_mdf <- if(!is.na(mdf_l)) {
id_str <- xml_attr(mdf_l, "id")
strsplit(id_str, ":")[[1]][length(strsplit(id_str, ":")[[1]])]
} else NA
# Get translations
rus_trans <- safe_text(xml_find_first(entry, ".//tg[@iso_lang='rus']/t"))
deu_trans <- safe_text(xml_find_first(entry, ".//tg[@iso_lang='deu']/t"))
# Process Erzya (myv) variants
myv_variants <- xml_find_all(entry, ".//lb[@iso_lang='myv']/l_var")
for(variant in myv_variants) {
orig_var <- xml_attr(variant, "orig_var")
geo_nodes <- xml_find_all(variant, ".//geoU")
for(geo in geo_nodes) {
location <- xml_attr(geo, "orig_geo")
if(!is.na(location) && location != "") {
data_list[[row_counter]] <- data.frame(
entry_num = i,
language = "myv",
base_form = lemma_myv,
variant = orig_var,
location = location,
russian_translation = rus_trans,
german_translation = deu_trans,
stringsAsFactors = FALSE
)
row_counter <- row_counter + 1
}
}
}
# Process Moksha (mdf) variants
mdf_variants <- xml_find_all(entry, ".//lb[@iso_lang='mdf']/l_var")
for(variant in mdf_variants) {
orig_var <- xml_attr(variant, "orig_var")
geo_nodes <- xml_find_all(variant, ".//geoU")
for(geo in geo_nodes) {
location <- xml_attr(geo, "orig_geo")
if(!is.na(location) && location != "") {
data_list[[row_counter]] <- data.frame(
entry_num = i,
language = "mdf",
base_form = lemma_mdf,
variant = orig_var,
location = location,
russian_translation = rus_trans,
german_translation = deu_trans,
stringsAsFactors = FALSE
)
row_counter <- row_counter + 1
}
}
}
}
# Combine all data frames
final_df <- dplyr::bind_rows(data_list)
# Clean up the data frame
final_df <- final_df %>%
distinct() %>% # Remove any duplicate rows
dplyr::arrange(entry_num, language, location) %>%
as_tibble()
# View the result
# View(as_tibble(final_df))
tryCatch({
map_coordinates <- readr::read_csv("https://raw.githubusercontent.com/rueter/Dictionary-Map-Viewer/refs/heads/main/data/PMW_locale_01a.csv",
show_col_types = FALSE)
}, error = function(e) {
message("Error loading CSV data: ", e$message)
# Handle the error appropriately
})
location_lookup <- map_coordinates %>%
select(id, coordinate, name_deu) %>%
rename(name = name_deu) %>%
separate(coordinate, into = c("latitude", "longitude"), sep = ", ") %>%
mutate(latitude = stringr::str_squish(latitude)) %>%
mutate(longitude = stringr::str_squish(longitude)) %>%
filter(! is.na(longitude)) %>%
filter(! is.na(latitude)) %>%
rename(location = id) %>%
mutate(location = stringr::str_replace(location, "Mdf:", "M:")) %>%
mutate(location = stringr::str_replace(location, "Myv:", "E:"))
df <- final_df %>%
left_join(location_lookup, by = "location") %>%
mutate(latitude = as.double(latitude)) %>%
mutate(longitude = as.double(longitude)) %>%
filter(! is.na(longitude))
# final_df %>% filter(is.na(name)) %>%
# distinct(location) %>%
# pull(location)
# UI
ui <- fluidPage(
titlePanel("Mordvin Dialect Map"),
div(class = "row",
# Left column containing sidebarPanel and the additional info
div(class = "col-sm-4",
# Original sidebar content
div(class = "well",
selectInput("german_word",
"Select German Translation:",
choices = unique(df$german_translation)),
htmlOutput("variant_info")
),
# Additional info panel
div(class = "well",
HTML("<h4>Additional Information</h4>
<p>This application has been developed by Niko Partanen and Jack Rueter. The application can be extended to display geographic variants of different terms in different languages.</p>
<p>It is part of the Finno-Ugrian Society's digitization work with the goal of making dialect dictionaries of Uralic languages more accessible online. It also connects to the Uralic-Amazonian collaboration coordinated by professors Pirjo Kristiina Virtanen (University of Helsinki), Sidney Facundes (Federal University of Pará (UFPA), Belém) and Thiago Cardoso Mota (Federal University of Amazonas, Manaus).</p>")
)
),
# Right column containing main panel
div(class = "col-sm-8",
# Leaflet map
leafletOutput("dialect_map", height = "600px"),
# Data table showing variants
DT::dataTableOutput("variant_table")
)
)
)
# Server
server <- function(input, output, session) {
# At the top of your app.R
options(shiny.error = function() {
cat(file=stderr(), "An error occurred:\n")
traceback(2)
})
observe({
query <- parseQueryString(session$clientData$url_search)
if (!is.null(query[["health"]])) {
cat(file=stderr(), "Health check passed\n")
}
})
# Reactive filtered data based on selected German translation
filtered_data <- reactive({
# First get the entry_num(s) for the selected German translation
entry_nums <- df %>%
filter(german_translation == input$german_word) %>%
pull(entry_num) %>%
unique()
# Then get all variants for those entry numbers
df %>%
filter(entry_num %in% entry_nums)
})
# Create the map
output$dialect_map <- renderLeaflet({
data <- filtered_data()
# Create color palette for variants
pal <- colorFactor(
palette = "Set3",
domain = data$variant
)
# Base map
leaflet(data) %>%
addTiles() %>%
addCircleMarkers(
~longitude, ~latitude,
color = ~pal(variant),
radius = 8,
fillOpacity = 0.9,
opacity = 1,
popup = ~paste(
"<strong>Variant:</strong>", variant,
"<br><strong>Location:</strong>", location,
"<br><strong>Language:</strong>", language
),
label = ~variant
) %>%
addLegend(
"bottomright",
pal = pal,
values = ~variant,
title = "Variants"
)
})
# Create information panel
output$variant_info <- renderUI({
data <- filtered_data()
HTML(paste(
"<h4>Word Information:</h4>",
"<strong>Base forms:</strong>", paste(unique(data$base_form), collapse = ", "), "<br>",
"<strong>Russian:</strong>", paste(unique(data$russian_translation), collapse = ", "), "<br>",
"<strong>German:</strong>", input$german_word, "<br>",
"<strong>Number of variants:</strong>", length(unique(data$variant)), "<br>",
"<strong>Languages:</strong>", paste(unique(data$language), collapse = ", ")
))
})
# Create data table
output$variant_table <- DT::renderDataTable({
data <- filtered_data()
DT::datatable(
data %>%
select(base_form, variant, location, language) %>%
arrange(language, variant),
options = list(pageLength = 5)
)
})
}
# Run the app
shinyApp(ui = ui, server = server)