Skip to content

Commit ff42c35

Browse files
committed
Initial data commit
1 parent 531f856 commit ff42c35

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+11320
-2
lines changed

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,12 @@ vignettes/*.pdf
3939
# R Environment Variables
4040
.Renviron
4141

42-
# pkgdown site
43-
docs/
4442

4543
# translation temp files
4644
po/*~
4745

4846
# RStudio Connect folder
4947
rsconnect/
48+
49+
/.quarto/
50+
.DS_Store

.nojekyll

Whitespace-only changes.

SpatialPlanning.github.io.Rproj

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Version: 1.0
2+
ProjectId: 27519083-58a1-4694-aee8-cad0d8c03538
3+
4+
RestoreWorkspace: Default
5+
SaveWorkspace: Default
6+
AlwaysSaveHistory: Default
7+
8+
EnableCodeIndexing: Yes
9+
UseSpacesForTab: Yes
10+
NumSpacesForTab: 2
11+
Encoding: UTF-8
12+
13+
RnwWeave: Sweave
14+
LaTeX: pdfLaTeX

_quarto.yml

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
project:
2+
type: website
3+
output-dir: docs
4+
5+
website:
6+
# favicon: "HexSticker/logo_LR.png"
7+
# announcement:
8+
# icon: info-circle
9+
# dismissable: true
10+
# content: "**Register for our upcoming Winter 2025 Workshops**. Register [here](https://payments.uq.edu.au/CBCS_R_workshop) or see below for further information about dates and topics covered."
11+
# type: warning
12+
# position: below-navbar
13+
# announcement:
14+
# icon: info-circle
15+
# dismissable: false
16+
# content: "**NOTE: We are having some issues with the registration portal. It will be open again shortly. Please check back regularly if you still want to register. There is still time and space!**"
17+
# type: danger
18+
# position: below-navbar
19+
20+
# page-navigation: true
21+
title: "Spatial Planning Team @ UQ"
22+
# sidebar:
23+
# logo: "HexSticker/logo_LR.png"
24+
# pinned: true
25+
# align: center
26+
# tools:
27+
# - icon: globe
28+
# href: https://openscapes.org
29+
# text: "Openscapes.org"
30+
# - icon: github
31+
# href: https://github.com/openscapes/quarto-website-tutorial
32+
# text: "Quarto website tutorial"
33+
navbar:
34+
left:
35+
- href: index.qmd
36+
text: Home
37+
- href: realTime.qmd
38+
text: Real-time Planning
39+
- href: spatialPlanning.qmd
40+
text: Planning Solutions
41+
- href: climate.qmd
42+
text: Climate-smart Tools
43+
- href: shiny.qmd
44+
text: Our Shiny Tools
45+
- href: publications.qmd
46+
text: Publications
47+
# - href: contact.qmd
48+
# text: Contact
49+
50+
page-footer:
51+
center: "This page is built with [Quarto](https://quarto.org/)."
52+
left: "© Website Dr Jason D. Everett 2025"
53+
54+
resources:
55+
- "data/*"
56+
57+
format:
58+
html:
59+
# theme: cosmo
60+
# theme: spacelab
61+
theme: yeti
62+
css: styles.css
63+
toc: true
64+
toc-depth: 2
65+
toc-expand: 2
66+
toc-location: right
67+
code-copy: true
68+
code-overflow: wrap
69+
link-external-newwindow: true
70+
link-external-icon: true
71+
72+
editor: source
73+
74+
lightbox: true
75+

climate.qmd

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: "Climate-smart tools"
3+
---
4+
5+
Climate change generally reduces the effectiveness of established protected areas in safeguarding biodiversity by causing local extinctions, community changes, and species-distribution shifts beyond protected area boundaries. However, climate change has rarely been incorporated into the design and management of protected areas. Climate-smart protected areas consider climate change throughout design and management, by integrating concepts from climate change ecology.
6+
7+
We have developed multiple approaches for designing climate-smart protected areas. These preferentially place protected areas in climate refugia or climate adaptation hotspots (see Publications – Buenafe et al. (2025); Buenafe et al. (2023); Brito-Morales et al. (2022); Arafeh Dalmau et al. (2021)). Our methods are based on global Earth System Models and are thus ideal for data-poor regions, and in small regions we use data from high resolution climate models (10 km). These methods can be included in our shinyplanr real-time spatial planning app.
8+
9+
We can also develop an online real-time app for assessing the climate vulnerability of protected areas in a region, in comparison to areas outside. This app can also compare the climate vulnerability of particular species based on where the region is within their global distribution.
10+
11+
<!-- An example is below {show mock-up app}. -->
12+

contact.qmd

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
title: "Contact Us"
3+
---
4+
5+
If you would like to be notified when further details of the upcoming workshops are released please join our mailing list. We will only send a couple of emails per year to advertise when the upcoming workshops have been released. This website will remain our main communication tool.
6+
7+
If you have questions now, feel free to email our team at UQ's Centre for Biodiversity and Conservation Science (CBCS): <a href="mailto:cbcs-workshops@uq.edu.au">cbcs-workshops@uq.edu.au</a>.
8+
9+
**Join the mailing list to get notified of upcoming workshops**
10+
```{=html}
11+
<iframe width="100%", height = "800px", src="https://forms.gle/8oZcxPzCAUpQQMRA7" title="Join our R Workshops Mailing List"></iframe>
12+
```

developingShiny.qmd

Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
---
2+
title: "Instructions for R Workshops @ UQ 2025"
3+
---
4+
5+
Dear Participants,
6+
7+
We are looking forward to seeing you at our next *R Workshop @ UQ*. The Workshop will run from 9-4 pm on campus at UQ. Instructions for software installation, room allocation and break times will be posted here closer to the date.
8+
9+
10+
In the meantime, if you have and questions or concerns, please don't hesitate to reach out to us at cbcs-workshops@uq.edu.au.
11+
12+
We look forward to meeting you soon.
13+
14+
Regards
15+
16+
Ant, Dave, Jase and Nick
17+
18+
19+
<!-- Dear Participants, -->
20+
21+
<!-- We are looking forward to seeing you at the UQ R Workshops. Regardless of what day(s) you are attending, the workshop will be held in the [ModWest (11A)](https://maps.uq.edu.au/?zoom=17.133847918167472&campusId=406&lat=-27.49593090391089&lng=153.01187889746922&zLevel=1&identifier=9d24ef79-582b-466a-baca-627343e0050e){target="_blank"} building. Monday-Thursday will be in Room 130 and Friday will be in Room 110. The Workshop will run from 9-4 pm -- please arrive at least 10 minutes early so that we can start on time and help with any last-minute installation issues. We will have a 15 minute Morning/Afternoon Tea break and Lunch will be from 12:30-1:30 pm. -->
22+
23+
<!-- There are lots of places to [eat on campus](https://maps.uq.edu.au/?zoom=17.490780813923735&campusId=406&lat=-27.496416376945803&lng=153.01218778256037&zLevel=1&category=31754){target="_blank"}. -->
24+
25+
<!-- **PLEASE READ CAREFULLY** In order to take full advantage of the workshop, you will need to have a laptop, have the ability to connect to a public wifi network (details below), have the latest versions of R and RStudio installed on your machine, have successfully installed all the required packages (see below). If you are using a work/company laptop where access is restricted, please double check these conditions with your IT department. -->
26+
27+
<!-- Please come back here regularly before the workshop. If there are any changes we will put them here and highlight them. -->
28+
29+
<!-- ## 1. Laptops -->
30+
31+
<!-- Bring a laptop, if at all possible. Otherwise, you will need to work in pairs (which is fun too!). You will need to have install permissions on your laptop to install the software and packages below. If you don't, ask get your IT support to help. -->
32+
33+
<!-- ## 2. Installing R -->
34+
35+
<!-- It is straightforward to install R on your machine. **Please make sure you have the latest version (currently R 4.4.2)**. If you already have R installed, you can check you have the version R version "4.4.2 (2024-10-31)" by running `version` in the console. If you don't have version 4.4.2 , please update. -->
36+
37+
<!-- ### Follow these steps: -->
38+
39+
<!-- 1. Go to the [CRAN (Comprehensive R Archive Network) R website](http://cran.r-project.org){target="_blank"}. If you type 'r' into Google it is the first entry, then choose CRAN under Download, Packages on the left hand side, and then choose a mirror site in Australia.\ -->
40+
<!-- 2. Choose to download R for Linux, Mac or Windows.\ -->
41+
<!-- 3. For Windows users, just install 'base' and this will link you to the download file.\ -->
42+
<!-- 4. For Mac users, choose the version relevant to your Operating System.\ -->
43+
<!-- 5. If you are a Linux user, you know what to do! -->
44+
45+
<!-- ## 3. Installing RStudio -->
46+
47+
<!-- We will use RStudio in this Workshop, a free front-end to R for Windows, Mac or Linux (i.e., R is working in the background). It makes working with R easier, more productive, and organised, especially for new users. There are other front-ends, but RStudio is the most popular. **Please make sure you have the latest version (currently Version: 2024.12.0)**. You can check your version by going to the menu "Help" --\> "Check for Updates". -->
48+
49+
<!-- Go to the [RStudio website](https://posit.co/download/rstudio-desktop/){target="_blank"} and choose Install RStudio. It should autodetect your machine type, but if it doesn't, you can choose the download for the machine type you have down the bottom of the page. -->
50+
51+
<!-- ## 4. Installing the packages needed for the Workshop -->
52+
53+
<!-- Depending on what day you attend, there will be different package requirements. Please carefully read the instructions below and run the code corresponding to the day(s) of the workshop you are attending. -->
54+
55+
<!-- In RStudio, go to the Console. This should be bottom left window, with the command line indicated by "\>". Paste in the following code and hit Return: -->
56+
57+
<!-- #### **Day 1 (Monday 10th February): Introduction to R and the tidyverse** -->
58+
59+
<!-- ```{r eval=FALSE} -->
60+
<!-- install.packages(c("tidyverse", "ggthemes", "patchwork")) -->
61+
<!-- ``` -->
62+
63+
<!-- #### **Day 2 (Tuesday 11th February): Linear modelling** -->
64+
65+
<!-- ```{r eval=FALSE} -->
66+
<!-- install.packages(c("tidyverse", "GGally", "marginaleffects", "MASSExtra", "boot", "gglm")) -->
67+
<!-- ``` -->
68+
69+
<!-- #### **Day 3 (Wednesday 12th February): Mixed Modelling** -->
70+
71+
<!-- [**NOTE:** On Tuesday 4th February we updated this list to include `gglm`. Please ensure you also install `gglm`. ]{style="color:red;"} -->
72+
73+
<!-- ```{r eval=FALSE} -->
74+
<!-- install.packages(c("tidyverse", "ADER", "glmmTMB", "DHARMa", "marginaleffects", "MuMIn", "mgcv", "patchwork", "gratia", "gglm")) -->
75+
<!-- ``` -->
76+
77+
<!-- #### **Day 4 (Thursday 13th February): Spatial modelling with temporal and spatial autocorrelation** -->
78+
79+
<!-- ```{r eval=FALSE} -->
80+
<!-- install.packages(c("tidyverse", "sf", "sp", "mgcv", "marginaleffects", "gstat", "spdep", "DHARMa", "MASS", "lmtest", "gratia", "patchwork")) -->
81+
<!-- ``` -->
82+
83+
<!-- #### **Day 5 (Friday 14th February): Multivariate statistics** -->
84+
85+
<!-- [**NOTE:** On Tuesday 11th February we updated this list to include `patchwork`. Please ensure you also install `patchwork`. ]{style="color:red;"} -->
86+
87+
<!-- ```{r eval=FALSE} -->
88+
<!-- install.packages(c("tidyverse", "vegan", "RgoogleMaps", "ggordiplots", "metR", "labdsv", "GGally", "partykit", "factoextra", "dendextend", "patchwork")) -->
89+
<!-- ``` -->
90+
91+
<!-- After running the install.packages function, look at the log it produces -- everything should say it installed OK (if asked whether to install from source, just hit "n"). If you have installation problems, please contact us and we will try and help you (include all relevant error messages). -->
92+
93+
<!-- #### **All Days - Update existing packages** -->
94+
95+
<!-- Once you have successfully installed all the required packages for your days, please ensure all your other packages are up to date. This is really important as the functionality of all packages changes and we have written the code for this workshop using the latest version of **R**, **RStudio** and installed packages. You can ensure everything is up to date by running the following code. -->
96+
97+
<!-- ```{r eval=FALSE} -->
98+
<!-- update.packages(ask = FALSE) -->
99+
<!-- ``` -->
100+
101+
<!-- ## 5. Connecting to WiFi -->
102+
103+
<!-- Your experience at the workshop will be greatly enhanced (and in some cases required) if you can access the internet. There are a range of options available, but if your laptop is centrally managed by your employer, please check with your IT department before attending the workshop. -->
104+
105+
<!-- - For UQ Staff/Students you can access the WiFi as you normally would on campus.\ -->
106+
<!-- - For other university/research affiliated staff/students, [eduroam](https://www.eduroam.edu.au/eduroam-for-users/){target="_blank"} will be available. Please ensure you know how to connect and consider testing the connection on your home campus.\ -->
107+
<!-- - For everyone else, UQ runs a Guest WiFi network. You can connect to the network by signing in with your Apple, Google or LinkedIn accounts. You can access further information [here](https://my.uq.edu.au/information-and-services/information-technology/internet-and-wifi/uq-guest-wifi){target="_blank"}.\ -->
108+
<!-- - Alternatively you can hotspot with your phone. -->
109+
110+
<!-- If you have and questions or concerns, please don't hesitate to reach out to us. -->
111+
112+
<!-- We look forward to seeing you there! -->
113+
114+
<!-- Regards -->
115+
116+
<!-- Ant, Dave, Jase and Nick -->

docs/.nojekyll

Whitespace-only changes.

0 commit comments

Comments
 (0)