alagac_roads_sf: Data from the Administration of Land Affairs, Geodesy, and...

Description Usage Format Author(s) Source Examples

Description

Data from the Administration of Land Affairs, Geodesy, and Cartography of Mongolia (ALAGaC)

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17

Format

An object of class sf (inherits from tbl_df, tbl, data.frame) with 2172 rows and 6 columns.

Author(s)

Brendan Knapp brendan.g.knapp@nps.edu

Source

marine.rutgers.edu

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
library(ggplot2)

ggplot() +
 geom_sf(aes(color = "alagac_soum_boundaries_sf"),
         fill = "transparent",
         data = alagac_soum_boundaries_sf) +
 geom_sf(aes(color = "alagac_aimag_boundaries_sf"), 
         fill = "transparent",
         data = alagac_aimag_boundaries_sf) +
 geom_sf(aes(color = "alagac_national_boundary_sf"), 
         fill = "transparent",
         data = alagac_national_boundary_sf) +
 labs(title = "Administrative Boundaries") +
 NULL

ggplot() +
 geom_sf(data = alagac_national_boundary_sf) +
 geom_sf(aes(color = "alagac_aimag_centers_sf"), 
         fill = "transparent",
         show.legend = "point",
         data = alagac_aimag_centers_sf) +
 geom_sf(aes(color = "alagac_soum_centers_sf"), 
         fill = "transparent",
         show.legend = "point",
         data = alagac_soum_centers_sf) +
 labs(title = "Administrative Centers") +
 NULL

ggplot() +
 geom_sf(data = alagac_national_boundary_sf) +
 geom_sf(aes(color = "alagac_major_lakes_sf"), 
         data = alagac_major_lakes_sf) +
 geom_sf(aes(color = "alagac_major_rivers_sf"), 
         data = alagac_major_rivers_sf) +
 labs(title = "Major Bodies of Water") +
 NULL

ggplot() +
 geom_sf(data = alagac_national_boundary_sf) +
 geom_sf(aes(color = "alagac_roads_sf"), 
         data = alagac_roads_sf) +
 geom_sf(aes(color = "alagac_railroads_sf"), 
         data = alagac_railroads_sf) +
 labs(title = "Transportation") +
 NULL

knapply/bluesky documentation built on Feb. 26, 2020, 7:18 a.m.