Browse Source

added points_elided() to README

master
boB Rudis 7 years ago
parent
commit
19c0ada0c4
No known key found for this signature in database GPG Key ID: 1D7529BE14E2BBA9
  1. 2
      NAMESPACE
  2. 1
      NEWS.md
  3. 4
      README.Rmd
  4. 6
      README.md
  5. 2
      man/usa_sf.Rd

2
NAMESPACE

@ -1,8 +1,8 @@
# Generated by roxygen2: do not edit by hand
export(counties_composite)
export(points_elided)
export(counties_sf)
export(points_elided)
export(us_aeqd_proj)
export(us_eqdc_proj)
export(us_laea_proj)

1
NEWS.md

@ -1,5 +1,6 @@
0.3.0
* simplefeatures (sf) functions
* `points_elided()` function courtesy of @rdinter
0.1.0
* Initial release

4
README.Rmd

@ -10,6 +10,10 @@ The following functions are implemented:
- `counties_sf`: Retreive a U.S. county composite map, optionally with a projection, as a simplefeature
- `usa_sf`: Retreive a U.S. state composite map, optionally with a projection, as a simplefeature
New ones:
- `points_elided`: Shift points around Alaska and Hawaii to the elided area (by @rdinter)
Some legacy ones:
- `usa_composite`: Retreive a U.S. composite map, optionally with a projection

6
README.md

@ -8,6 +8,10 @@ The following functions are implemented:
- `counties_sf`: Retreive a U.S. county composite map, optionally with a projection, as a simplefeature
- `usa_sf`: Retreive a U.S. state composite map, optionally with a projection, as a simplefeature
New ones:
- `points_elided`: Shift points around Alaska and Hawaii to the elided area (by @rdinter)
Some legacy ones:
- `usa_composite`: Retreive a U.S. composite map, optionally with a projection
@ -263,7 +267,7 @@ library(testthat)
date()
```
## [1] "Thu Jan 26 23:49:15 2017"
## [1] "Thu Jan 26 23:57:29 2017"
``` r
test_dir("tests/")

2
man/usa_sf.Rd

@ -46,7 +46,7 @@ system.file("extdata/composite_us_states.geojson.gz", package="albersusa")
\examples{
library(sf)
plot(usa_sf())
plot(usa_sf()) # these take a while to render
plot(usa_sf("laea"))
}

Loading…
Cancel
Save