├── .gitignore ├── README.md └── openlandmap-logo-black.png /.gitignore: -------------------------------------------------------------------------------- 1 | # History files 2 | .Rhistory 3 | .Rapp.history 4 | 5 | # Session Data files 6 | .RData 7 | 8 | # Example code in package build process 9 | *-Ex.R 10 | 11 | # Output files from R CMD build 12 | /*.tar.gz 13 | 14 | # Output files from R CMD check 15 | /*.Rcheck/ 16 | 17 | # RStudio files 18 | .Rproj.user/ 19 | 20 | # produced vignettes 21 | vignettes/*.html 22 | vignettes/*.pdf 23 | 24 | # OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 25 | .httr-oauth 26 | 27 | # knitr and R markdown default cache directories 28 | /*_cache/ 29 | /cache/ 30 | 31 | # Temporary files created by R markdown 32 | *.utf8.md 33 | *.knit.md 34 | 35 | # Shiny token, see https://shiny.rstudio.com/articles/shinyapps.html 36 | rsconnect/ 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | OpenLandMap — Open Land Data service 2 | ==================================== 3 | 4 | 5 | 6 | 7 | Migrated to: https://gitlab.com/openlandmap 8 | -------------------------------------------------------------------------------- /openlandmap-logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Envirometrix/LandGISmaps/60b53315088cd0e6fab458c93832ba4a3ddbc816/openlandmap-logo-black.png --------------------------------------------------------------------------------