Datasets:

Languages:
French
License:
CARTO17 / Map_Script /.Rhistory
de-francophones's picture
Upload 182 files
98d1bfe verified
blur = 20,
max = 0.5,
radius = 15,
gradient = '#6495ed') %>%
## Third Period: Boyer, Thomas Corneille, Molière, Racine
addHeatmap(theatre_groupe3$lng,
theatre_groupe3$lat,
group = "Third Period",
blur = 20,
max = 0.5,
radius = 15,
gradient = '#9acd32') %>%
## Add a legend for genre
addControl(html = html_legend, position = "bottomleft") %>%
# Add a legend that combines icon markers layers and heatmap layers
addLegend(position = "bottomleft",
labels = c("First Period",
"Second Period",
"Third Period"),
colors = c("red",
"blue",
"green"),
title = "Toponyms by period:") %>%
## Add a legend with the credits
addLegend("topright",
colors = c("trasparent", "trasparent"),
labels=c("Mapping: Giovanni Pietro Vitali - [email protected]",
"NLP: Simon Gabay - [email protected]"),
title="Mapping French Theatre:") %>%
## Add the layer selector which allows you to navigate the possibilities offered by this map
addLayersControl(baseGroups = c("List of places",
"Empty layer"),
overlayGroups = c("Areas",
"Comedy",
"Tragedy",
"Tragicomedy",
"First Period",
"Second Period",
"Third Period",
"Toponyms by author",
"Authors",
"Boyer",
"Corneille Pierre",
"Corneille Thomas",
"Du Ryer",
"Molière",
"Racine",
"Rotrou",
"Scarron",
"Scudéry"),
options = layersControlOptions(collapsed = TRUE)) %>%
## Hide the layers that the users can choose as they like
hideGroup(c("Empty",
"Authors",
"Toponyms by author",
"Comedy",
"Tragedy",
"Tragicomedy",
"First Period",
"Second Period",
"Third Period",
"Boyer",
"Corneille Pierre",
"Corneille Thomas",
"Du Ryer",
"Molière",
"Racine",
"Rotrou",
"Scarron",
"Scudéry"))
#labelFormat(prefix = "", suffix = "", between = " – ",
# digits = 3, big.mark = ",", transform = identity)
m
m <- leaflet(shp) %>%
## Choose a standard basemap
## addTiles() %>%
## This is a first example of a possible basemap
## addProviderTiles(providers$OpenStreetMap) %>%
## This is a second example of a possible basemap
## addProviderTiles(providers$Stamen.Toner) %>%
## This is a third example of a possible basemap
addProviderTiles(providers$Esri.NatGeoWorldMap)%>%
## Add a Zoom reset option
addResetMapButton() %>%
## Choose the zoom of the map and its central point
setView(lng = -13.439978,
lat = 37.804134,
zoom = 2.2 ) %>%
## Add the layer with the polygons used for the big areas
addPolygons(data = shp,
stroke = FALSE,
smoothFactor = 0.2,
fillOpacity = 1,
color = ~pal(number),
group = "Areas",
label = ~paste("Area:", area, "that has",
number, "occurences",
sep = " ")) %>%
## Add a legend with the occurrences of the toponyms according to the macro areas
addLegend("bottomleft",
pal = pal,
values = ~number,
title = "Occurrences of toponyms by region:",
labFormat = labelFormat(suffix = " occurrences"),
opacity = 1,
group = "Areas") %>%
## Add a layer of circles for each author
## 9 Scudéry
addCircleMarkers(lng = scudery$lng,
lat = scudery$lat,
color = "brown",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Scudéry",
label = ~paste("The toponym",
scudery$occurrence,
"is mentioned in the work",
scudery$titre,
"by",
scudery$auteur)) %>%
## 9 Scudéry - Create a layer with colored dots
addCircleMarkers(lng = scudery$lng,
lat = scudery$lat,
color = "brown",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Toponyms by author",
label = ~paste("The toponym",
scudery$occurrence,
"is mentioned in the work",
scudery$titre,
"by",
scudery$auteur)) %>%
# 8 Scarron - Create a layer with colored dots
addCircleMarkers(lng = scarron$lng,
lat = scarron$lat,
color = "white",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Scarron",
label = ~paste("The toponym",
scarron$occurrence,
"is mentioned in the work",
scarron$titre,
"by",
scarron$auteur)) %>%
# 8 Scarron - Create a layer with colored dots
addCircleMarkers(lng = scarron$lng,
lat = scarron$lat,
color = "white",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Toponyms by author",
label = ~paste("The toponym",
scarron$occurrence,
"is mentioned in the work",
scarron$titre,
"by",
scarron$auteur)) %>%
##1 Boyer
addCircleMarkers(lng = boyer$lng,
lat = boyer$lat,
color = "blue",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Boyer",
label = ~paste("The toponym",
boyer$occurrence,
"is mentioned in the work",
boyer$titre,
"by",
boyer$auteur)) %>%
##1 Boyer - Create a layer with colored dots
addCircleMarkers(lng = boyer$lng,
lat = boyer$lat,
color = "blue",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Toponyms by author",
label = ~paste("The toponym",
boyer$occurrence,
"is mentioned in the work",
boyer$titre,
"by",
boyer$auteur)) %>%
## 2 Corneille Pierre
addCircleMarkers(lng = corneille_P$lng,
lat = corneille_P$lat,
color = "Yellow",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Corneille Pierre",
label = ~paste("The toponym",
corneille_P$occurrence,
"is mentioned in the work",
corneille_P$titre,
"by",
corneille_P$auteur)) %>%
## 2 Corneille Pierre - Create a layer with colored dots
addCircleMarkers(lng = corneille_P$lng,
lat = corneille_P$lat,
color = "Yellow",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Toponyms by author",
label = ~paste("The toponym",
corneille_P$occurrence,
"is mentioned in the work",
corneille_P$titre,
"by",
corneille_P$auteur)) %>%
## 3 Corneille Thomas
addCircleMarkers(lng = corneille_T$lng,
lat = corneille_T$lat,
color = "Green",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Corneille Thomas",
label = ~paste("The toponym",
corneille_T$occurrence,
"is mentioned in the work",
corneille_T$titre,
"by",
corneille_T$auteur)) %>%
## 3 Corneille Thomas - Create a layer with colored dots
addCircleMarkers(lng = corneille_T$lng,
lat = corneille_T$lat,
color = "Green",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Toponyms by author",
label = ~paste("The toponym",
corneille_T$occurrence,
"is mentioned in the work",
corneille_T$titre,
"by",
corneille_T$auteur)) %>%
## 4 Du Ryer
addCircleMarkers(lng = duryer$lng,
lat = duryer$lat,
color = "Purple",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Du Ryer",
label = ~paste("The toponym",
duryer$occurrence,
"is mentioned in the work",
duryer$titre,
"of",
duryer$auteur)) %>%
## 4 Du Ryer - Create a layer with colored dots
addCircleMarkers(lng = duryer$lng,
lat = duryer$lat,
color = "Purple",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Toponyms by author",
label = ~paste("The toponym",
duryer$occurrence,
"is mentioned in the work",
duryer$titre,
"of",
duryer$auteur)) %>%
## 5 Molière
addCircleMarkers(lng = moliere$lng,
lat = moliere$lat,
color = "Violet",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Molière",
label = ~paste("The toponym",
moliere$occurrence,
"is mentioned in the work",
moliere$titre,
"by",
moliere$auteur)) %>%
## 5 Molière - Create a layer with colored dots
addCircleMarkers(lng = moliere$lng,
lat = moliere$lat,
color = "Violet",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Toponyms by author",
label = ~paste("The toponym",
moliere$occurrence,
"is mentioned in the work",
moliere$titre,
"by",
moliere$auteur)) %>%
## 6 Racine
addCircleMarkers(lng = racine$lng,
lat = racine$lat,
color = "Orange",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Racine",
label = ~paste("The toponym",
racine$occurrence,
"is mentioned in the work",
racine$titre,
"by",
racine$auteur)) %>%
## 6 Racine - Create a layer with colored dots
addCircleMarkers(lng = racine$lng,
lat = racine$lat,
color = "Orange",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Toponyms by author",
label = ~paste("The toponym",
racine$occurrence,
"is mentioned in the work",
racine$titre,
"by",
racine$auteur)) %>%
## 7 Rotrou
addCircleMarkers(lng = rotrou$lng,
lat = rotrou$lat,
color = "red",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Rotrou",
label = ~paste("The toponym",
rotrou$occurrence,
"is mentioned in the work",
rotrou$titre,
"by",
rotrou$auteur)) %>%
## 7 Rotrou - Create a layer with colored dots
addCircleMarkers(lng = rotrou$lng,
lat = rotrou$lat,
color = "red",
weight = 1,
radius = 14,
fillOpacity = 0.6,
group = "Toponyms by author",
label = ~paste("The toponym",
rotrou$occurrence,
"is mentioned in the work",
rotrou$titre,
"by",
rotrou$auteur)) %>%
## Add a legend to link colored dots to their authors of reference
addLegend("bottomleft",
colors= c("blue", "Yellow", "Green",
"purple", "Violet", "Orange",
"red", "white", "brown"),
labels=c("Claude Boyer", "Pierre Corneille", "Thomas Corneille",
"Pierre du Ryer", "Molière", "Jean Racine",
"Jean Rotrou", "Paul Scarron", "Georges de Scudéry"),
title= "Toponyms by author:",
group = "Toponyms by author") %>%
## Create the markers layer with a html pop-up
addMarkers(data = data,
lng = ~lng,
lat = ~lat,
group = "List of places",
popup = ~paste("<h4>Information on this place:</h4>",
"Occurrence:", "<b>", occurrence,"</b>","<br>",
"Type:", "<b>", type, "</b>", "</b>","<br>",
"Author:", "<b>", auteur, "</b>","<br>",
"Title:", "<b>", titre, "</b>", "<br>",
"Year:", "<b>", publication, "</b>", "<br>",
"Genre:", "<b>", genre, "</b>", "<br>",
sep = " "),
clusterOptions = markerClusterOptions()) %>%
## Create markers with custumised custom made icons
## Commedies
addAwesomeMarkers(data = data_comedie,
data_comedie$lng,
data_comedie$lat,
group = "Comedy",
icon = icon_comedie,
popup = ~paste("<h4>Information on this place:</h4>",
"Occurrence:", "<b>", occurrence,"</b>","<br>",
"Type:", "<b>", type, "</b>", "</b>","<br>",
"Author:", "<b>", auteur, "</b>","<br>",
"Title:", "<b>", titre, "</b>", "<br>",
"Year:", "<b>", publication, "</b>", "<br>",
"Genre:", "<b>", genre, "</b>", "<br>",
sep = " ")) %>%
## Tragedies
addAwesomeMarkers(data = data_tragedie,
data_tragedie$lng,
data_tragedie$lat,
group = "Tragedy",
icon = icon_tragedie,
popup = ~paste("<h4>Information on this place:</h4>",
"Occurrence:", "<b>", occurrence,"</b>","<br>",
"Type:", "<b>", type, "</b>", "</b>","<br>",
"Author:", "<b>", auteur, "</b>","<br>",
"Title:", "<b>", titre, "</b>", "<br>",
"Year:", "<b>", publication, "</b>", "<br>",
"Genre:", "<b>", genre, "</b>", "<br>",
sep = " ")) %>%
## Tragic-commedies
addAwesomeMarkers(data = data_tragedie_comedie,
data_tragedie_comedie$lng,
data_tragedie_comedie$lat,
group = "Tragicomedy",
icon = icon_tragedie_comedie,
popup = ~paste("<h4>Information on this place:</h4>",
"Occurrence:", "<b>", occurrence,"</b>","<br>",
"Type:", "<b>", type, "</b>", "</b>","<br>",
"Author:", "<b>", auteur, "</b>","<br>",
"Title:", "<b>", titre, "</b>", "<br>",
"Year:", "<b>", publication, "</b>", "<br>",
"Genre:", "<b>", genre, "</b>", "<br>",
sep = " ")) %>%
## Add a group of heatmap, one for each period of writers' production
## First period: Du Ryer, Scudéry, Rotrou, Scarron
addHeatmap(theatre_groupe1$lng,
theatre_groupe1$lat,
group = "First Period",
blur = 20,
max = 0.5,
radius = 15,
gradient = '#ff7f50') %>%
## Second Period: Pierre Corneille
addHeatmap(theatre_groupe2$lng,
theatre_groupe2$lat,
group = "Second Period",
blur = 20,
max = 0.5,
radius = 15,
gradient = '#6495ed') %>%
## Third Period: Boyer, Thomas Corneille, Molière, Racine
addHeatmap(theatre_groupe3$lng,
theatre_groupe3$lat,
group = "Third Period",
blur = 20,
max = 0.5,
radius = 15,
gradient = '#9acd32') %>%
## Add a legend for genre
addControl(html = html_legend, position = "bottomleft") %>%
# Add a legend that combines icon markers layers and heatmap layers
addLegend(position = "bottomleft",
labels = c("First Period",
"Second Period",
"Third Period"),
colors = c("red",
"blue",
"green"),
title = "Toponyms by period:") %>%
## Add a legend with the credits
addLegend("topright",
colors = c("trasparent", "trasparent"),
labels=c("Mapping: Giovanni Pietro Vitali - [email protected]",
"Extraction: Simon Gabay - [email protected]"),
title="Mapping French Theatre:") %>%
## Add the layer selector which allows you to navigate the possibilities offered by this map
addLayersControl(baseGroups = c("List of places",
"Empty layer"),
overlayGroups = c("Areas",
"Comedy",
"Tragedy",
"Tragicomedy",
"First Period",
"Second Period",
"Third Period",
"Toponyms by author",
"Authors",
"Boyer",
"Corneille Pierre",
"Corneille Thomas",
"Du Ryer",
"Molière",
"Racine",
"Rotrou",
"Scarron",
"Scudéry"),
options = layersControlOptions(collapsed = TRUE)) %>%
## Hide the layers that the users can choose as they like
hideGroup(c("Empty",
"Authors",
"Toponyms by author",
"Comedy",
"Tragedy",
"Tragicomedy",
"First Period",
"Second Period",
"Third Period",
"Boyer",
"Corneille Pierre",
"Corneille Thomas",
"Du Ryer",
"Molière",
"Racine",
"Rotrou",
"Scarron",
"Scudéry"))
#labelFormat(prefix = "", suffix = "", between = " – ",
# digits = 3, big.mark = ",", transform = identity)
m