Skip to content

Commit

Permalink
#1 init package
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Feb 14, 2018
1 parent f1079d8 commit d90cc25
Show file tree
Hide file tree
Showing 8 changed files with 67 additions and 2 deletions.
17 changes: 17 additions & 0 deletions DESCRIPTION
@@ -0,0 +1,17 @@
Package: ows4R
Version: 0.1
Date: 2018-02-14
Title: interface to OGC Web-Services (OWS)
Authors@R: c(person("Emmanuel", "Blondel", role = c("aut", "cre"), email = "emmanuel.blondel1@gmail.com"),
person("Norbert", "Billet", role = c("ctb"), email = "norbert.billet@ird.fr"))
Maintainer: Emmanuel Blondel <emmanuel.blondel1@gmail.com>
Depends: R (>= 2.15)
Imports: R6, httr, XML (>= 3.96-1.1), sp, rgdal
Suggests: testthat
Description: Provides an interface to OGC Web-Services (OWS). In a first step, the package supports the Common
OGC Web-Services specifications the Web Feature Service (WFS). ows4R will progressively support other OGC web
service specifications such as Web Map Service (WMS), Web Coverage Service, or Catalogue Service for the web (CSW).
License: MIT + file LICENSE
URL: https://github.com/eblondel/ows4R
BugReports: https://github.com/eblondel/ows4R/issues
LazyLoad: yes
Empty file added NAMESPACE
Empty file.
25 changes: 25 additions & 0 deletions R/ows4R.R
@@ -0,0 +1,25 @@
#' @name ows4R
#' @aliases ows4R-package
#' @aliases ows4R
#' @docType package
#'
#' @title Interface to OGC Web-Services
#' @description Provides an interface to OGC Web-Services (OWS). In a first step, the package supports the Common
#' OGC Web-Services specifications the Web Feature Service (WFS). ows4R will progressively support other OGC web
#' service specifications such as Web Map Service (WMS), Web Coverage Service, or Catalogue Service for the web (CSW).
#'
#'
#' @details
#' \tabular{ll}{
#' Package: \tab ows4R\cr
#' Type: \tab Package\cr
#' Version
#' : \tab 0.1\cr
#' Date: \tab 2018-02-14\cr
#' License: \tab GPL(>=2.0)\cr
#' LazyLoad: \tab yes\cr
#' }
#'
#'@author Emmanuel Blondel \email{emmanuel.blondel1@@gmail.com}
#'
NULL
3 changes: 3 additions & 0 deletions R/profile.R
@@ -0,0 +1,3 @@
.onLoad <- function (libname, pkgname) { # nocov start

} # nocov end
5 changes: 3 additions & 2 deletions README.md
Expand Up @@ -5,6 +5,7 @@ R client for OGC Web-Services
* the Common OGC Web-Services specifications
* the Web Feature Service (WFS), with support for all versions (_i.e._ ``1.0.0``, ``1.1.0``, and ``2.0.0``).

In addition, a native R WMS client is going to be investigated.

For more information, or if you are interested in funding this R package project, do not hesitate to contact me.

For more information, or if you are interested in funding this R package project or to contribute to it, do not hesitate to contact me by [e-mail](mailto:emmanuel.blondel1@gmail.com)

17 changes: 17 additions & 0 deletions ows4R.Rproj
@@ -0,0 +1,17 @@
Version: 1.0

RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default

EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8

RnwWeave: Sweave
LaTeX: pdfLaTeX

BuildType: Package
PackageInstallArgs: --no-multiarch --with-keep.source
PackageCheckArgs: --as-cran --run-donttest --no-build-vignettes
2 changes: 2 additions & 0 deletions tests/test-all.R
@@ -0,0 +1,2 @@
library(testthat)
test_check("ows4R")
Empty file added tests/testthat/placeholder
Empty file.

0 comments on commit d90cc25

Please sign in to comment.