diff --git a/DESCRIPTION b/DESCRIPTION index a1d22fc4..66744c8c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,5 +1,5 @@ Package: osmdata -Version: 0.1.3.005 +Version: 0.1.3.006 Authors@R: c( person("Mark", "Padgham", email="mark.padgham@email.com", role=c("aut", "cre")), person("Bob", "Rudis", role="aut"), diff --git a/codemeta.json b/codemeta.json index 12deb903..460ebcbb 100644 --- a/codemeta.json +++ b/codemeta.json @@ -10,7 +10,7 @@ "codeRepository": "https://github.com/ropensci/osmdata", "issueTracker": "https://github.com/ropensci/osmdata/issues", "license": "https://spdx.org/licenses/GPL-3.0", - "version": "0.1.3.5", + "version": "0.1.3.6", "programmingLanguage": { "@type": "ComputerLanguage", "name": "R", diff --git a/vignettes/osmdata.Rmd b/vignettes/osmdata.Rmd index 2b01176e..eabf5ab6 100644 --- a/vignettes/osmdata.Rmd +++ b/vignettes/osmdata.Rmd @@ -871,6 +871,16 @@ detail provided in the help files for each of these function. lines which are not part of any higher-level objects, and `$osm_points` only contains points which are not part of any higher-level objects. +A further additional function is the ability to extract data as represented in +the OSM database prior to a specified date, or within a specified range of +dates. This is achieved by passing one or both values to the [`opq()` +function](https://docs.ropensci.org/osmdata/reference/opq.html) of `datetime1` +and `datetime2`. The resultant data extracted with one or more +`add_osm_feature()` calls and an extraction function (`osmdata_sf/sp/sc/xml`) +will then contain only those data present prior to the specified date (when +`datetime1` only given), or between the two specified dates (when both +`datetime1` and `datetime2` given). + ## 6. Related Packages