Skip to content
Emmanuel Blondel edited this page Jun 28, 2018 · 22 revisions

ows4R - R Interface to OGC Web-services

ows4R intends to provide an interface in R for using OGC web-services. The services being covered with ows4R are:

  • WFS (Web Feature Service) - versions 1.0.0,1.1.1, 2.0.0
  • CSW (Catalogue Service for the Web) - version 2.0.2

If you wish to sponsor geometa, do not hesitate to contact me


Table of contents

1. Overview
2. Package status
3. Credits
4. User guide
   4.1 Installation
   4.2 Web Feature Service
   4.3 Catalogue Servive
5. Issue reporting

1. Overview and vision


Until now, equivalent tools were existing for other programming languages (e.g. Java, Python) but not in R. ows4R intends to provide facilities to exploit OGC web-services in R.

2. Development status


TBD

3. Credits


(c) 2018, Emmanuel Blondel

Package distributed under MIT license.

If you use ows4R, i would be very grateful if you can add a citation in your published work. By citing ows4R, beyond acknowledging the work, you contribute to make it more visible and guarantee its growing and sustainability. You can get the preferred citation by running citation("ow4R") in R.

4. User guide


4.1 How to install ows4R in R

For now, the package can be installed from Github

install.packages("devtools")

Once the devtools package loaded, you can use the install_github to install ows4R. By default, package will be installed from master which is the current version in development (likely to be unstable).

require("devtools")
install_github("eblondel/ows4R")

4.2 R interface to Web Feature Service (WFS)

TBD

4.3 R Interface to Catalogue Service (CSW)

TBD

5. Issue reporting


Issues can be reported at https://github.com/eblondel/ows4R/issues

Clone this wiki locally