Last active
November 24, 2021 10:58
-
-
Save Pakillo/23212b72a02b9d524073 to your computer and use it in GitHub Desktop.
Geographical projections I often use
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Spatial reference systems I often use | |
## Source this gist from R: | |
# source("https://gist.githubusercontent.com/Pakillo/23212b72a02b9d524073/raw/b73b28354f61d381b5614a2254cf128b93e11c8a/projections.R") | |
# or using devtools: | |
# devtools::source_gist("https://gist.github.com/Pakillo/23212b72a02b9d524073") | |
# EPSG codes: | |
geo <- 4326 # Geographic, datum WGS84 | |
laea.etrs89 <- 3035 # Lambert Azimuthal Equal Area - ETRS89 | |
utm30N.ed50 <- 23030 # UTM 30 N (North) - Datum ED50 (European Datum 1950) | |
utm30N.etrs89 <- 25830 # UTM 30 N - Datum ETRS89 | |
# See http://spatialreference.org for more information |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment