globalid-app

Here you can find the source code of the GlobaLID web app.

https://github.com/archmetaldbm/globalid-app

Science Score: 57.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 8 DOI reference(s) in README
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (15.7%) to scientific vocabulary

Keywords

archaeological-datasets archaeological-science archaeology archaeometry data-visualization isotope lead provenance r shiny shinyapp
Last synced: 6 months ago · JSON representation ·

Repository

Here you can find the source code of the GlobaLID web app.

Basic Info
  • Host: GitHub
  • Owner: archmetalDBM
  • License: gpl-3.0
  • Language: R
  • Default Branch: main
  • Homepage:
  • Size: 22 MB
Statistics
  • Stars: 5
  • Watchers: 1
  • Forks: 0
  • Open Issues: 5
  • Releases: 1
Topics
archaeological-datasets archaeological-science archaeology archaeometry data-visualization isotope lead provenance r shiny shinyapp
Created over 4 years ago · Last pushed 7 months ago
Metadata Files
Readme Changelog License Citation

README.Rmd

---
output: github_document
---



```{r, include = FALSE}
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

library(icons)
library(ggplot2)

if (!"tmap" %in% installed.packages()) {install.packages("tmap")}

source("update.R")
```


[![Release](https://img.shields.io/github/v/release/archmetalDBM/GlobaLID-app.svg)](https://github.com/archmetalDBM/GlobaLID-App)
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)


# GlobaLID App 

Here you can find the source code of the GlobaLID web app.

# What is GlobaLID? 
GlobaLID is a Global Lead Isotope Database and aims to facilitate the reconstruction of raw material provenances with lead isotopes, especially in archaeology. The app provides direct access to and convenient interaction with the [GlobaLID database](https://doi.org/10.5880/fidgeo.2023.043). You can filter the database according to your research question, upload own data to compare it with GlobaLID, and produce and download publication ready plots. Watch our [video tutorial](https://www.youtube.com/watch?v=qwKStMc-068) to learn more! Visit [our webpage](https://archmetaldbm.github.io/Globalid/) to learn more about the GlobaLID project and to get the latest news. 

The current version of the GlobaLID database includes data from these locations: 
```{r map, echo=FALSE, fig.width=10}

data("World", package = "tmap") # load worldmap from package tmap

GlobaLID <- subset(readRDS("data/database_complete.rds"), select = c("Longitude","Latitude"))

ggplot() + 
  geom_sf(data = World, fill = "white", size = .25) +
  geom_point(data = GlobaLID, aes(x = Longitude, y = Latitude), size = 0.25, color = "red", shape = 16, alpha = 0.75) +
  scale_x_continuous(expand = c(0,0)) + 
  scale_y_continuous(expand = c(0,0)) +
  theme_void() + 
  theme(panel.background = element_rect(fill = alpha("darkblue", 0.1), color = NA), 
        legend.box.background = element_rect(fill = "white", color = NA))
```

# How to cite
If you use the GlobaLID app, please cite it as:  

* GlobaLID Core Team. (2021). GlobaLID web application V. `r app_version`, database status: `r format.Date(update_database, "%F")`. [https://globalid.dmt-lb.de/](https://globalid.dmt-lb.de/)
* Klein, S., Rose, T., Westner, K. J., & Hsu, Y.-K. (2022). From OXALID to GlobaLID: Introducing a modern and FAIR lead isotope database with an interactive application. Archaeometry 64(4), 935–950. [https://doi.org/10.1111/arcm.12762](https://doi.org/10.1111/arcm.12762)

```
@misc{GlobaLIDCoreTeam.2025,
 author = {{GlobaLID Core Team}},
 year = {2025},
 title = {{GlobaLID web application V. `r app_version`, database status: `r format.Date(update_database, "%F")`}},
 url = {https://globalid.dmt-lb.de/}
}

@article{Klein.2022,
author = {Klein, Sabine and Rose, Thomas and Westner, Katrin J. and Hsu, Yiu-Kang},
title = {From OXALID to GlobaLID: Introducing a modern and FAIR lead isotope database with an interactive application},
journal = {Archaeometry},
volume = {64},
number = {4},
pages = {935-950},
doi = {https://doi.org/10.1111/arcm.12762},
}
```

# Join the team! 
GlobaLID needs your help to grow and to provide high quality datasets! The core team is permanently reviewing and adding new and old data from the literature to keep GlobaLID growing. However, we are neither proficient enough with the geology and geography of all parts of the world nor do we know all publications with lead isotope data from ores and minerals. Hence we are happy about any support from our community. Interested? Write us! 

# Team 

Please find the up-to-date list of team members on the [TerraLID webpage](https://terralid.org/team.html), where development of GlobaLID continues. 

# Funding
This work has received funding from the German Research Foundation (DFG) through the grants KL 1259/17-1 and WI 5923/2-1 (project number: 524790825).
# Acknowledgements The initial GlobaLID database was compiled during years of own research and profited from the generous sharing of published lead isotope datasets by many colleagues. The creative and collective work of compiling the database and application was initiated when all members of the Core Team and E. Salzmann were members of the Archaeometallurgy group at the Deutsches Bergbau-Museum Bochum (DBM). H. Zietsch (DBM) compiled the initial literature references. The Core Team feels deeply grateful for the support of the contributors. Without their efforts, GlobaLID would grow much slower and less accurate. We are indebted to the R Core Team for providing and maintaining [R](https://cran.r-project.org/), the authors of the fantastic packages we use, and the R community on [stackoverflow](https://stackoverflow.com/) and many other webpages. The app uses the following packages: * [bs4Dash](https://rinterface.github.io/bs4Dash/) * [dplyr](https://dplyr.tidyverse.org/) * [DT](https://rstudio.github.io/DT/) * [ggplot2](https://ggplot2.tidyverse.org/) * [kableExtra](https://haozhu233.github.io/kableExtra/) * [knitr](https://yihui.org/knitr/) * [ks](https://cran.r-project.org/web/packages/ks/) * [leaflet](https://rstudio.github.io/leaflet/) * [leaflet.providers](https://github.com/rstudio/leaflet.providers) * [lemon](https://github.com/stefanedwards/lemon) * [plotly](https://plotly-r.com/) * [RColorBrewer](https://cran.r-project.org/web/packages/RColorBrewer/) * [rmarkdown](https://rmarkdown.rstudio.com/) * [rootSolve](https://cran.r-project.org/web/packages/rootSolve) * [sendmailR](https://cran.r-project.org/web/packages/sendmailR/) * [shiny](https://shiny.rstudio.com/) * [shinyvalidate](https://rstudio.github.io/shinyvalidate/) * [stringr](https://stringr.tidyverse.org/) * [tidyr](https://tidyr.tidyverse.org/) * [viridisLite](https://sjmgarnier.github.io/viridisLite/) * [waiter](https://shiny.john-coene.com/waiter/) * [zip](https://cran.r-project.org/web/packages/zip) The implementation of the hCaptcha is a modified version of [shinyCAPTCHA](https://github.com/carlganz/shinyCAPTCHA).

Owner

  • Name: archmetalDBM
  • Login: archmetalDBM
  • Kind: organization

Citation (CITATION.cff)

cff-version: 1.2.0
title: GlobaLID web application
message: 'To cite the GlobaLID web application in publications use:'
type: software
authors:
  - name: GlobaLID Core Team
    email: globalid@bergbaumuseum.de
version: "1.1"
license: GPL-3.0-only
year: '2025'
url: https://globalid.dmt-lb.de/
repository-code: https://github.com/archmetalDBM/GlobaLID-App
date-released: '2025-07-28'
contact:
- name: GlobaLID Core Team
  email: globalid@bergbaumuseum.de
references:
  - authors:
      - family-names: Rose
        given-names: Thomas
        email: thomas.rose@daad-alumni.de
        orcid: https://orcid.org/0000-0002-8186-3566
      - family-names: Klein
        given-names: Sabine
        email: sabine.klein@bergbaumuseum.de
        orcid: https://orcid.org/0000-0002-3939-4428
      - family-names: Westner
        given-names: 'Katrin J.'
        orcid: https://orcid.org/0000-0001-5529-1165
      - family-names: Hsu
        given-names: Yiu-Kang
        orcid: https://orcid.org/0000-0002-2439-4863
    title: "From OXALID to GlobaLID: Introducing a modern and FAIR lead isotope database with an interactive application"
    type: article
    doi: "10.1111/arcm.12762"
    journal: Archaeometry
    scope: "Cite this paper if you want to reference the general concepts of GlobaLID."
    year: 2022
  - authors:
      - family-names: Westner
        given-names: Katrin J.
        orcid: https://orcid.org/0000-0001-5529-1165
      - family-names: Rose
        given-names: Thomas
        email: thomas.rose@daad-alumni.de
        orcid: https://orcid.org/0000-0002-8186-3566
      - family-names: Klein
        given-names: Sabine
        email: sabine.klein@bergbaumuseum.de
        orcid: https://orcid.org/0000-0002-3939-4428
      - family-names: Hsu
        given-names: Yiu-Kang
        orcid: https://orcid.org/0000-0002-2439-4863
      - family-names: Becerra
        given-names: María Florencia
        orcid: https://orcid.org/0000-0001-6302-7452
      - family-names: Nezafati
        given-names: Nima
        orcid: https://orcid.org/0000-0002-5806-343X
      - family-names: Renson
        given-names: Virginie
        orcid: https://orcid.org/0000-0002-5701-0985
      - family-names: Stephens
        given-names: Jay
        orcid: https://orcid.org/0000-0003-1299-3946
    title: "GlobaLID – Global Lead Isotope Database. V. 1.1"
    type: dataset
    database-provider: 
      name: "GFZ Data Services"
    doi: "10.5880/fidgeo.2023.043"
    scope: "Cite this dataset for the GlobaLID database."
    year: 2023
    version: "1.1"

GitHub Events

Total
  • Push event: 9
Last Year
  • Push event: 9