--- title: "Getting Started with the ecotourism Package" format: html: toc: true toc-depth: 2 number-sections: true toc-location: left fig-cap-location: top code-fold: false code-tools: true theme: flatly page-layout: full editor: visual vignette: > %\VignetteIndexEntry{Getting Started with the ecotourism Package} %\VignetteEngine{quarto::html} %\VignetteEncoding{UTF-8} --- ```{r, echo=FALSE, message=FALSE, warning=FALSE} # Ensure the temporary library from R CMD check is visible (esp. on Windows) libdir <- Sys.getenv("R_LIBS") if (nzchar(libdir)) { parts <- strsplit(libdir, .Platform$path.sep, fixed = TRUE)[[1]] .libPaths(unique(c(parts, .libPaths()))) } # now load your package suppressPackageStartupMessages(library(ecotourism)) ``` ## πŸ‘‹ Welcome The **ecotourism** package provides tools to analyze ecological observation data alongside weather conditions. This guide will help you get started with the package and direct you to detailed vignettes for specific organisms and workflows. ------------------------------------------------------------------------ ## 🧭 What You Can Do Analyze observation records for various species with tools to: - πŸ“ Identify top observation sites\ - 🌦️ Integrate environmental data from nearby weather stations\ - πŸ—ΊοΈ Visualize spatiotemporal patterns ------------------------------------------------------------------------ ## πŸ§ͺ Organism-Specific Workflows Explore vignettes dedicated to individual species: - πŸ”¦ [Glowworms Observations](glowworms.html)\ - 🐦 [Gouldian Finch Observations](gouldian_finch.html)\ - 🐠 [Manta Rays Observations](manta_rays.html)\ - 🌸 [Orchids Observations](orchids.html) Each vignette covers: - Data cleaning and wrangling\ - Mapping and temporal summaries\ - Top station selection ------------------------------------------------------------------------ ## 🌀️ Weather Integration Combine ecological observations with environmental data: - πŸ“Š [**Weather Data Workflow**](weather_data.html)\ Join species data with daily weather from nearby stations. - πŸ—ΊοΈ [**Weather Station Metadata**](weather_stations.html)\ View coordinates and metadata for weather stations used in analysis. ------------------------------------------------------------------------ ## ️ Tourism Data - πŸ“Š [**Tourism Data**](tourism.html)\ ------------------------------------------------------------------------ Ecotourism dataset schema ## πŸš€ Get Started To begin, choose an organism above or dive into the weather data tools to enrich your analyses. The `ecotourism` package makes it easy to explore interactions between biodiversity and climate in Australia.