Skip to content

Commit

Permalink
Add
Browse files Browse the repository at this point in the history
  • Loading branch information
dieghernan committed Nov 23, 2020
1 parent b009a00 commit 3813cab
Show file tree
Hide file tree
Showing 82 changed files with 10,383 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
^.*\.Rproj$
^\.Rproj\.user$
^data-raw$
^LICENSE\.md$
^README\.Rmd$
^dev$
^.github$
^mapSpain\.Rcheck$
^mapSpain.*\.tar\.gz$
^mapSpain.*\.tgz$
1 change: 1 addition & 0 deletions .github/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.html
92 changes: 92 additions & 0 deletions .github/workflows/check-full.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag.
# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: '0 6 * * 3,6'


name: R-CMD-check

jobs:
R-CMD-check:
runs-on: ${{ matrix.config.os }}

name: ${{ matrix.config.os }} (${{ matrix.config.r }})

strategy:
fail-fast: false
matrix:
config:
- {os: windows-latest, r: 'devel'}
- {os: windows-latest, r: 'release'}
- {os: windows-latest, r: 'oldrel'}
# - {os: macOS-latest, r: 'devel'}
- {os: macOS-latest, r: 'release'}
- {os: macOS-latest, r: 'oldrel'}
- {os: ubuntu-20.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
- {os: ubuntu-20.04, r: 'devel', rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
- {os: ubuntu-20.04, r: 'oldrel', rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}
- {os: ubuntu-20.04, r: '3.6', rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest"}



env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
RSPM: ${{ matrix.config.rspm }}

steps:
- uses: actions/checkout@v2

- uses: r-lib/actions/setup-r@master
with:
r-version: ${{ matrix.config.r }}

- uses: r-lib/actions/setup-pandoc@master

- name: Query dependencies
run: |
install.packages('remotes')
saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2)
writeLines(sprintf("R-%i.%i", getRversion()$major, getRversion()$minor), ".github/R-version")
shell: Rscript {0}

- name: Cache R packages
if: runner.os != 'Windows'
uses: actions/cache@v2
with:
path: ${{ env.R_LIBS_USER }}
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}
restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-

- name: Install system dependencies
if: runner.os == 'Linux'
run: |
while read -r cmd
do
eval sudo $cmd
done < <(Rscript -e 'writeLines(remotes::system_requirements("ubuntu", "20.04"))')
- name: Install dependencies
run: |
remotes::install_deps(dependencies = TRUE)
remotes::install_cran("rcmdcheck")
shell: Rscript {0}

- name: Check
env:
_R_CHECK_CRAN_INCOMING_REMOTE_: false
run: rcmdcheck::rcmdcheck(args = c("--no-manual", "--as-cran"), error_on = "warning", check_dir = "check")
shell: Rscript {0}

- name: Upload check results
if: failure()
uses: actions/upload-artifact@main
with:
name: ${{ runner.os }}-r${{ matrix.config.r }}-results
path: check
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
mapSpain.Rcheck/
mapSpain*.tar.gz
mapSpain*.tgz
38 changes: 38 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
Package: mapSpain
Type: Package
Title: Administrative Boundaries of Spain Including CCAA, Provinces and Municipalities
Version: 0.0.0-9000
Authors@R:
c(person(given = "Diego",
family = "Hernangómez",
role = c("aut", "cre", "cph"),
email = "diego.hernangomezherrero@gmail.com",
comment = c(ORCID = "0000-0001-8457-4658")),
person(given = "EuroGraphics",
role = "cph",
comment = "for the administrative boundaries.")
)
Description: This package provides Administrative Boundaries of Spain based on
the GISCO (Geographic Information System of the Commission) Eurostat database
<https://ec.europa.eu/eurostat/web/gisco>. It also provides a leaflet plugin
and the ability of downloading and processing static tiles.
License: GPL-3
Encoding: UTF-8
LazyData: true
RoxygenNote: 7.1.1
BugReports: https://github.com/dieghernan/mapSpain/issues
URL: https://dieghernan.github.io/mapSpain/, https://github.com/dieghernan/mapSpain
Depends:
R (>= 3.6.0)
Imports:
sf (>= 0.9),
countrycode (>= 1.2.0),
giscoR (>= 0.2.0),
raster (>= 3.0),
png (>= 0.1-5),
slippymath (>= 0.3.1),
leaflet (>= 2.0.0)
Suggests:
cartography (>= 2.4),
rgdal,
tinytest
Loading

0 comments on commit 3813cab

Please sign in to comment.