Aus: Aus

Description Usage Format Examples

Description

Australian coastline in a form suitable for ggplot graphics

Usage

1

Format

A data frame with 439470 rows and 3 columns:

x

numeric: Longitude

y

numeric: Latitude

group

character: A grouping factor for discrete segments

Examples

1
2
3
4
5
6
library(ggplot2)
tas <- subset(Aus, y < -39.5)
ggplot(tas) + aes(x = x, y = y, group = group) + geom_path(colour = "firebrick") + coord_equal() +
  labs(x = "Longitude", y = "Latitude", title = "Tasmania") + theme_bw() +
  theme(plot.title = element_text(hjust = 0.5))
rm(tas)

BillVenables/WWRData documentation built on Jan. 26, 2021, 10:18 p.m.