-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chores/prep cran siane #6
Changes from 5 commits
adc548a
cdb350d
8dffe77
3eceb0b
e5b810c
a9fae35
ee470e6
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^.*\.Rproj$ # Automatically added by RStudio, | ||
^\.Rproj\.user$ # used for temporary files. | ||
^README.md$ # An Rmarkdown file used to generate README.md | ||
Images | ||
.git | ||
.gitignore | ||
RData | ||
Siane.Rproj | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,23 @@ | ||
Package: Siane | ||
Title: Siane | ||
Title: Explore the Spanish INE Data using this Geographic Tool | ||
Version: 0.1 | ||
Description: Statistic polygon plots of INE data | ||
Depends: R (>= 3.3.1) | ||
License: MIT | ||
Description: A tool that assists the user in two tasks: the map reading process and the | ||
data representation process. The reading process is leveraged with functions that allow | ||
the user to find maps in the Siane repository easily, i.e. searching by map year or | ||
administrative level. The other main functionality is to bind numerical data to polygons. | ||
This package is only compatible with the spanish IGN(National Institute of Geography) maps | ||
and the INE(National Institute of Statistics) data. | ||
Depends: plyr, raster, rgdal, sp, methods, utils | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Authors@R: c(person("Carlos J. Gil Bellosta", | ||
email = "[email protected]",role = c("aut","cre")), | ||
person("Nuno", "Carvalho", role = c("aut"), | ||
email = "[email protected]", role = c("aut")), | ||
person("Nuno", "Carvalho", role = c("cre", "aut"), | ||
email = "[email protected]")) | ||
Author: Carlos J. Gil Bellosta[aut, cre] | ||
Nuno Carvalho[aut] | ||
Author: Carlos J. Gil Bellosta [aut], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This field, as well as the |
||
Nuno Carvalho [cre, aut] | ||
Maintainer: Nuno Carvalho <[email protected]> | ||
Depends: RColorBrewer, classInt, maptools, plyr, raster, rgdal, sp | ||
RoxygenNote: 6.0.1 | ||
Suggests: knitr, | ||
rmarkdown | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
YEAR: 2017 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should be |
||
COPYRIGHT HOLDER: Your name goes here | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Substitute |
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Packages in
Depends
are automatically loaded when the user loads your library. Does the user need them for using your package? If the answer is no for any of them, then they should be moved toImports
instead ofDepends
. See Other dependencies for further details aboutDepends
andImports
.