-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
67 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 = "[email protected]"), | ||
person("Norbert", "Billet", role = c("ctb"), email = "[email protected]")) | ||
Maintainer: Emmanuel Blondel <[email protected]> | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.onLoad <- function (libname, pkgname) { # nocov start | ||
|
||
} # nocov end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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:[email protected]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
library(testthat) | ||
test_check("ows4R") |
Empty file.