GIS Librarian Directory

All verified GIS librarians and specialists at US R1 universities

Published

March 24, 2026

This table lists all 109 GIS librarians and specialists identified at Carnegie R1 research institutions. Use the search box and column filters to explore. Click a row to expand notes.

Show code
reactable(
  people %>%
    select(Name, `Title/Role`, Institution, Department = `Department/Unit`,
           Email, `Profile URL`, `Last-Checked Date`, Notes),
  searchable = TRUE,
  filterable = TRUE,
  sortable   = TRUE,
  striped    = TRUE,
  highlight  = TRUE,
  defaultPageSize = 25,
  columns = list(
    Name = colDef(minWidth = 150, sticky = "left"),
    `Title/Role` = colDef(minWidth = 200),
    Institution  = colDef(minWidth = 220),
    Department   = colDef(minWidth = 180),
    Email = colDef(
      minWidth = 180,
      cell = function(value) {
        if (nchar(value) > 0) tags$a(href = paste0("mailto:", value), value) else ""
      }
    ),
    `Profile URL` = colDef(
      name = "Profile",
      minWidth = 80,
      cell = function(value) {
        if (nchar(value) > 0) tags$a(href = value, target = "_blank", "Link") else ""
      }
    ),
    `Last-Checked Date` = colDef(name = "Checked", minWidth = 100),
    Notes = colDef(minWidth = 200)
  )
)

Data collected March 2026. Corrections and additions welcome — please open an issue on GitHub.