Skip to content

Commit

Permalink
fix #106
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Apr 12, 2023
1 parent 62ea0e1 commit da91150
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: ows4R
Version: 0.3-4
Date: 2023-03-10
Version: 0.3-5
Date: 2023-04-12
Title: Interface to OGC Web-Services (OWS)
Authors@R: c(person("Emmanuel", "Blondel", role = c("aut", "cre"), email = "emmanuel.blondel1@gmail.com", comment = c(ORCID = "0000-0002-5870-5762")),
person("Alexandre", "Bennici", role = c("ctb"), comment = c(ORCID = "0000-0003-2160-3487")),
Expand All @@ -18,5 +18,5 @@ License: MIT + file LICENSE
URL: https://github.com/eblondel/ows4R, https://eblondel.github.io/ows4R/, https://www.ogc.org/standards/
BugReports: https://github.com/eblondel/ows4R/issues
LazyLoad: yes
RoxygenNote: 7.2.1
RoxygenNote: 7.2.3
VignetteBuilder: knitr
10 changes: 8 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
## [ows4R 0.3-4](https://github.com/eblondel/ows4R) | [![CRAN_Status_Badge](https://img.shields.io/badge/CRAN-published-blue.svg)](https://github.com/eblondel/ows4R)
## [ows4R 0.3-5](https://github.com/eblondel/ows4R) | [![CRAN_Status_Badge](https://img.shields.io/badge/CRAN-published-blue.svg)](https://github.com/eblondel/ows4R)

**Enhancements**

- [#106](https://github.com/eblondel/ows4R/issues/106) ows4R will switch off s2 by default (s2 is not ISO/OGC compliant)

## [ows4R 0.3-4](https://cran.r-project.org/package=ows4R) | [![CRAN_Status_Badge](https://img.shields.io/badge/CRAN-published-blue.svg)](https://cran.r-project.org/package=ows4R)

**Corrections**

Expand All @@ -8,7 +14,7 @@

- [#101](https://github.com/eblondel/ows4R/issues/101) WFS - Ensure features CRS are inherited

## [ows4R 0.3-3](https://github.com/eblondel/ows4R) | [![CRAN_Status_Badge](https://img.shields.io/badge/CRAN-published-blue.svg)](https://github.com/eblondel/ows4R)
## [ows4R 0.3-3]((https://cran.r-project.org/src/contrib/Archive/ows4R/ows4R_0.3-3.tar.gz) | [![CRAN_Status_Badge](https://img.shields.io/badge/CRAN-published-blue.svg)]((https://cran.r-project.org/src/contrib/Archive/ows4R/ows4R_0.3-3.tar.gz)

**Corrections**

Expand Down
6 changes: 6 additions & 0 deletions R/profile.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
.onLoad <- function (libname, pkgname) { # nocov start

#make sure sf relies on... "sf" (aka ISO/OGC Simple Features)! and not s2
if(sf::sf_use_s2()){
packageStartupMessage("Google's s2 geometry is not OGC compliant!")
sf::sf_use_s2(FALSE)
}

ISOMetadataNamespace$GML$uri <- "http://www.opengis.net/gml"

assign(".ows4R", new.env(), envir= asNamespace(pkgname))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Build Status](https://github.com/eblondel/ows4R/actions/workflows/r-cmd-check.yml/badge.svg?branch=master)](https://github.com/eblondel/ows4R/actions/workflows/r-cmd-check.yml)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/ows4R)](https://cran.r-project.org/package=ows4R)
[![cran checks](https://badges.cranchecks.info/worst/ows4R.svg)](https://cran.r-project.org/web/checks/check_results_ows4R.html)
[![Github_Status_Badge](https://img.shields.io/badge/Github-0.3--4-blue.svg)](https://github.com/eblondel/ows4R)
[![Github_Status_Badge](https://img.shields.io/badge/Github-0.3--5-blue.svg)](https://github.com/eblondel/ows4R)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1345111.svg)](https://doi.org/10.5281/zenodo.1345111)

**ows4R – R Interface to OGC Web-Services (OWS)**
Expand Down

0 comments on commit da91150

Please sign in to comment.