Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 5.39 KB

repository_file_description.md

File metadata and controls

25 lines (19 loc) · 5.39 KB

Description of example notebooks in repository

All notebooks described in this section are available in R and Python, you will find them in the R_based_scripts and the Python_based_scripts folders, respectively.

  • AIMS temperature loggers: Available as a Quarto notebook for R users, and as a Jupyter notebook for Python users. In this example, we will connect to the RIMReP geoparquet collection in our AWS S3 bucket to access the AIMS temperature logger dataset, which contains over 150 million records! We will calculate the mean latitude, longitude, and temperature, and total number of temperature records for all deployment sites around the Great Barrier Reef Marine Protected Area using familiar dplyr verbs. Finally, we aggregated all data at a site level to create a map where the site marker change in size in proportion to the number of records at each site.
  • Extracting water temperature at site: Available as a Quarto notebook for R users, and as a Jupyter notebook for Python users. This notebook calculates monthly temperature means for any sites of interest included in the AIMS Sea Surface Temperature Monitoring Program. Data summaries and plots saved in local machine.
  • Extracting spatial data GBR: Available as a Quarto notebook for R users, and as a Jupyter notebook for Python users. This notebook extracts spatial data for all above water features within the Great Barrier Reef Marine Protected Area.
  • Extracting water temperature within GBR feature boundaries: Available as a Quarto notebook and as a Jupyter notebook: This notebook will identify AIMS water temperature monitoring sites within a GBR feature and calculate monthly means.
  • Plotting ABS census data: Available as a Quarto notebook and as a Jupyter notebook: This notebooks uses Australian Bureau of Statistics (ABS) census data to create summary tables, bar plots and maps.
  • Plotting SELTMP data: Available as a Quarto notebook and as a Jupyter notebook: This notebooks uses the the Social and Economic Long-Term Monitoring Program (SELTMP) dataset from CSIRO to create a variety of plots available in their dashboard.

Additionally, there are two more notebooks available exclusively for Python users:

Note: You will notice that there are two files with the same name, but two different extensions: .md and .Rmd. They contain the same information, but in different formats. The .Rmd file is the source code of the notebook, which you can open in RStudio and run. While the .md file is the output of the .Rmd file and they include the results of running the code. If you click on the notebook links above, it will take you to the .md files, which are nicely formatted for GitHub.

Home

Description of scripts in repository

All scripts described in this section are available in R and Python, you will find them in the R_based_scripts and the Python_based_scripts folders, respectively.

  • Useful Functions: Available as an R script and in Python. This script includes a collection of functions that we will use to extract data available in the RIMReP collections using spatial data, such as polygons defining boundaries for the area of our interest.

Home