26 September 2023 2 3K Report

---

title: "Study Area Map"

author: "Musab Isak"

date: "2023-08-27"

output: html_document

---

```{r setup, include=FALSE}

knitr::opts_chunk$set(echo = TRUE)

```

**Load packages**

```{r}

library(tidyverse) #provide tools for data manipulation

library(ggplot2) #Used for creating intricate and customizable data visualizations

library(dplyr) #Offers a set of functions for efficient data manipulation

library(sf) #Provides tools for working with spatial data

library(rnaturalearth) #Allows you to access and retrieve geographical data from the Natural earth dataset for mapping and analysis.

library(rnaturalearthdata) # Provides functions to load and manage Natural Earth data within R

library(raster) #Focuses on the manipulation and analysis of gridded spatial data

library(viridis) #Offers a set of perceptually uniform color scales for creating informative and visually appealing visualizations.

library(ggspatial) #Extends ggplot2 for spatial data, allowing you to combine the power of ggplot2 with spatial visualizations and data.

```

**Get Shape Data of the country and study areas**

```{r}

turkey

Similar questions and discussions