https://github.com/mdsumner/listmap
What the Package Does (One Line, Title Case)
https://github.com/mdsumner/listmap
Last synced: 11 months ago
JSON representation
What the Package Does (One Line, Title Case)
- Host: GitHub
- URL: https://github.com/mdsumner/listmap
- Owner: mdsumner
- Created: 2021-09-09T06:47:38.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-09T07:14:59.000Z (almost 5 years ago)
- Last Synced: 2025-05-19T16:13:27.969Z (about 1 year ago)
- Language: R
- Size: 2.27 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
---
output: github_document
editor_options:
chunk_output_type: console
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
options(warn = -1) ## shut rgdal up
```
# listmap
The goal of listmap is to get thelist imagery.
## Installation
You can install ...
## Example
This is a basic example which shows you how to solve a common problem:
```{r example}
library(listmap)
library(raster)
for (ilayer in 3:14) {
plotRGB(listmap(layer = ilayer))
}
```
```{r thenut}
ex <- c(16173799 + c(0, 2000), -4978125 + c(-500, 1500))
r <- raster(extent(ex), nrows = 1024, ncols = 1024, crs = "EPSG:3857")
plotRGB(listmap(r, layer = 4))
plotRGB(listmap(r, layer = 6))
plotRGB(listmap(r, layer = 13))
print(listmap:::layers)
```
## Code of Conduct
Please note that the listmap project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.