Discus23
Discus23

Reputation: 521

How to simply start mapping in R?

For the first time, I want to do mapping in R, something very basic to start with.

For example, draw the map of a country and add points according to GPS coordinates that I have in a datatable.

I thought it would be simple but it looks more complicated than expected.

How to start? Which package do you recommend me to use?

I found a lot of package to do mapping, but I can't decide which one would be the most suitable for my case.

THANKS

Upvotes: 0

Views: 157

Answers (1)

dufei
dufei

Reputation: 3357

Depends on your starting point, I would say – if you're familiar with ggplot2 already, I would go for the corresponding tutorial here: https://ggplot2-book.org/maps.html

Other than that, https://bookdown.org/robinlovelace/geocompr/adv-map.html is a very good resource for anything geospatial in R. It focuses on tmap instead of ggplot2 though.

Upvotes: 1

Related Questions