-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.qmd
37 lines (31 loc) · 1.01 KB
/
index.qmd
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
---
title: "PSInet: A global water potential network"
image: logos_vf_crop.jpg
about:
template: jolla
image-shape: rounded
image-width: 400px
links:
- text: Twitter
href: https://twitter.com/Novick_Lab
- text: GitHub
href: https://github.com/PSInetRCN
- text: Podcast episode
href: https://www.metergroup.com/en/meter-environment/podcast/episode-24-building-national-water-potential-network
execute:
freeze: true
---
Welcome to PSInet, an NSF-funded Research Coordination Network aimed at building a community of people and data to harness the potential of plant water potential.
### PSInet Sites
```{r, echo = F, message = F, warning = F}
library(dplyr)
library(tidyr)
library(googlesheets4)
library(ggplot2)
library(leaflet)
theme_set(theme_bw())
locs <- read.csv(here::here(".secrets", "data_for_website_map.csv"))
leaflet() %>%
addTiles() %>% # Add default OpenStreetMap map tiles
addCircleMarkers(lng = locs$longitude_wgs84, lat=locs$latitude_wgs84, popup="PSInet site")
```