From 028a13cdeb604ef7c8b35e16ca95a1f77c9f6c2f Mon Sep 17 00:00:00 2001 From: eblondel Date: Thu, 21 Mar 2024 17:20:43 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20eblondel?= =?UTF-8?q?/ows4R@30fab8f0fdc54290b4b28f573af4ecb455f2fcac=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgdown.yml | 2 +- reference/OWSHttpRequest.html | 5 +++++ search.json | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgdown.yml b/pkgdown.yml index 376802a..fa91539 100644 --- a/pkgdown.yml +++ b/pkgdown.yml @@ -4,7 +4,7 @@ pkgdown_sha: ~ articles: csw: csw.html wcs: wcs.html -last_built: 2024-02-28T21:54Z +last_built: 2024-03-21T17:20Z urls: reference: https://eblondel.github.io/ows4R/reference article: https://eblondel.github.io/ows4R/articles diff --git a/reference/OWSHttpRequest.html b/reference/OWSHttpRequest.html index 0279a2b..6406bd8 100644 --- a/reference/OWSHttpRequest.html +++ b/reference/OWSHttpRequest.html @@ -131,6 +131,7 @@

Usage

attrs = NULL, contentType = "text/xml", mimeType = "text/xml", + skipXmlComments = TRUE, logger = NULL, ... )

@@ -202,6 +203,10 @@

Arguments +
skipXmlComments
+

Skip XML comments from response

+ +
logger

logger

diff --git a/search.json b/search.json index cf46187..f5bf911 100644 --- a/search.json +++ b/search.json @@ -1 +1 @@ -[{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"create-csw-client","dir":"Articles","previous_headings":"","what":"Create CSW Client","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"order operate Catalogue Service, need create interface R CSW. done class CSWClient, follows: can define level logger: “INFO” get ows4R logs, “DEBUG” internal logs (Curl details). also possible define username credentials case operations require authentication use Catalogue Service. operations require authentication (e.g. CSW Transaction operations GeoNetwork), may need specify user pwd parameters.","code":"CSW <- CSWClient$new(\"http://localhost:8080/csw\", \"2.0.2\", logger = \"INFO\")"},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"get-capabilities-getcapabilities","dir":"Articles","previous_headings":"","what":"Get Capabilities (GetCapabilities)","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"create CSWClient, ows4R run GetCapabilities request. access CSW Capabilities sections, can use following code:","code":"caps <- CSW$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"describe-a-record-describerecord","dir":"Articles","previous_headings":"","what":"Describe a record (DescribeRecord)","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"YET SUPPORTED","code":""},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"get-a-record-getrecordbyid","dir":"Articles","previous_headings":"","what":"Get a record (GetRecordById)","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"example shows get metadata record ID, bind geometa ISO/OGC metadata classes.","code":"#supposing a metadata identified as \"my-metadata-identifier\" md <- CSW$getRecordById(\"my-metadata-identifier\", outputSchema = \"http://www.isotc211.org/2005/gmd\")"},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"get-records-getrecords","dir":"Articles","previous_headings":"","what":"Get records (GetRecords)","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"section gives several examples get records ows4R CSW client.","code":""},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"basic-query","dir":"Articles","previous_headings":"Get records (GetRecords)","what":"Basic query","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"basic GetRecords request can done following code: default, request return 5 first metadata records. records returned Dublin Core metadata format, handled list R.","code":"records <- CSW$getRecords()"},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"query-with-maxrecords-parameter","dir":"Articles","previous_headings":"Get records (GetRecords)","what":"Query with maxRecords parameter","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"change maximum number records returned, use maxRecords parameter","code":"records <- CSW$getRecords(maxRecords = 20L)"},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"query-with-cql-filters","dir":"Articles","previous_headings":"Get records (GetRecords)","what":"Query with CQL filters","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"query records based filter, introduce 2 notions inherited CSW specification: query handled ows4R accept parameter constraint (corresponding given filter). Query CQL Filter metadata title example shows : create CSWConstraint specifying CQL text filter metadata title. properties refer Dublin Core metadata format, hence notation dc:title. set CSWQuery based constraint/filter get get metadata records based query Query CQL Filter metadata title abstract Another example GetRecords query CQL filter based two properties (title, abstract): Query CQL Filter metadata identifier may also try perform ``GetRecords``` based metadata identifier. case existing metadata record identifier, expect get list length 1.","code":"cons <- CSWConstraint$new(cqlText = \"dc:title like '%ips%'\") query <- CSWQuery$new(constraint = cons) records <- CSW$getRecords(query = query) cons <- CSWConstraint$new(cqlText = \"dc:title like '%ips%' and dct:abstract like '%pharetra%'\") query <- CSWQuery$new(constraint = cons) records <- CSW$getRecords(query = query) cons <- CSWConstraint$new(cqlText = \"dc:identifier = 'my-metadata-identifier'\") query <- CSWQuery$new(constraint = cons) records <- CSW$getRecords(query = query)"},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"query-with-ogc-filters","dir":"Articles","previous_headings":"Get records (GetRecords)","what":"Query with OGC filters","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"Instead using CQL text filter, ows4R allows specify OGC Filter basis build CSWConstraint. OGC Filters can created class/function OGCFilter specifying expression, among following: PropertyIsEqualTo / PropertyIsNotEqualTo PropertyIsLessThan / PropertyIsGreaterThan PropertyIsLessThanOrEqualTo / PropertyIsGreaterThanOrEqualTo PropertyIsLike PropertyIsNull PropertyIsBetween BBOX Query OGC filter - PropertyIsLike example constructs constraint OGCFilter made PropertyIsLike predicate CSW AnyText. result list records _any text like ‘%Physio%’ (records string ‘Physio’ included): Query OGC filter - PropertyIsEqualTo","code":"filter <- OGCFilter$new( PropertyIsLike$new(\"csw:AnyText\", \"%Physio%\")) cons <- CSWConstraint$new(filter = filter) query <- CSWQuery$new(constraint = cons) records <- csw2$getRecords(query = query) filter <- OGCFilter$new( PropertyIsEqualTo$new(\"csw:AnyText\", \"species\")) cons <- CSWConstraint$new(filter = filter) query <- CSWQuery$new(constraint = cons) records <- CSW$getRecords(query = query)"},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"transaction---insertupdatedelete-transaction","dir":"Articles","previous_headings":"","what":"Transaction - Insert,Update,Delete (Transaction)","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"CSW server used supports Transaction operations (Insert, Update, Delete), ows4R allows perform operations. following examples highlight different operations available: Insert Update (Full) Update (Partial) Delete methods insertRecord updateRecord also support options deal geometa ISOMetadata objects. option geometa_validate set default TRUE operates validation vs. ISO/TC 19139 schemas. option geometa_inspire can enabled test metadata INSPIRE. Records inserted/updated CSW-T include footer XML comments containing validation details. See geometa documentation","code":"mdfile <- system.file(\"extdata/data\", \"metadata.xml\", package = \"ows4R\") md <- geometa::ISOMetadata$new(xml = XML::xmlParse(mdfile)) insert <- CSW$insertRecord(record = md) insert$getResult() #TRUE if inserted, FALSE otherwise md$identificationInfo[[1]]$citation$setTitle(\"a new title\") update <- CSW$updateRecord(record = md) update$getResult() #TRUE if updated, FALSE otherwise recordProperty <- CSWRecordProperty$new(\"apiso:Title\", \"NEW_TITLE\") filter = OGCFilter$new(PropertyIsEqualTo$new(\"apiso:Identifier\", md$fileIdentifier)) constraint <- CSWConstraint$new(filter = filter) update <- CSW$updateRecord(recordProperty = recordProperty, constraint = constraint) update$getResult() #TRUE if updated, FALSE otherwise delete <- CSW$deleteRecordById(md$fileIdentifier) delete$getResult() #TRUE if deleted, FALSE otherwise"},{"path":"https://eblondel.github.io/ows4R/articles/wcs.html","id":"create-wcs-client","dir":"Articles","previous_headings":"","what":"Create WCS Client","title":"Use ows4R with OGC WCS (Web Coverage Service)","text":"order operate Web Coverage Service, need create interface R WCS. done class WCSClient, follows: can define level logger: “INFO” get ows4R logs, “DEBUG” internal logs (Curl details). also possible define username password (user pwd parameters) case operations require authentication use Web Coverage Service. Note: also possible connect ot WCS means Central Authentication System (CAS) ows4R CASClient. , can pass CAS URL means cas_url argument.","code":"WCS <- WCSClient$new(\"https://ows.rasdaman.org/rasdaman/ows\", \"2.1.0\", logger = \"INFO\")"},{"path":"https://eblondel.github.io/ows4R/articles/wcs.html","id":"get-capabilities-getcapabilities","dir":"Articles","previous_headings":"","what":"Get Capabilities (GetCapabilities)","title":"Use ows4R with OGC WCS (Web Coverage Service)","text":"create WCSClient, ows4R run GetCapabilities request. access WCS Capabilities sections, can use following code:","code":"caps <- WCS$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/articles/wcs.html","id":"get-coverage-summaries","dir":"Articles","previous_headings":"","what":"Get coverage summaries","title":"Use ows4R with OGC WCS (Web Coverage Service)","text":"capabilities, possible get coverage summaries caps$getCoverageSummaries(). method return list objects class WCSCoverageSummary. get/find specific coverage summary name, can run following method:","code":"chla <- caps$findCoverageSummaryById(\"AverageChloroColorScaled\", exact = T)"},{"path":"https://eblondel.github.io/ows4R/articles/wcs.html","id":"describe-a-coverage-describecoverage","dir":"Articles","previous_headings":"","what":"Describe a coverage (DescribeCoverage)","title":"Use ows4R with OGC WCS (Web Coverage Service)","text":"description coverage can fetched either coverage summary directly WCS client. invoked first time, OGC WCS DescribeCoverage request done. Get description coverage summary Get description WCS client coverage description corresponds exhaustive metadata set describing coverage characteristics coverage limits space time. represented object class WCSCoverageDescription including core GML metadata properties usable R thanks geometa. Get list coverage dimensions Associated coverage description, ows4R defined convenient method list dimensions coverage: method particularly useful spatio-temporal coverage, allowing retrieve temporal extent (time instants available given coverage). present example, coverage available download certain number time instants:","code":"chla_des <- chla$getDescription() chla_des <- WCS$describeCoverage(\"AverageChloroColorScaled\") chla_dims <- chla$getDimensions() chla_time_instants <- chla_dims[[1]]$coefficients"},{"path":"https://eblondel.github.io/ows4R/articles/wcs.html","id":"get-coverage-data-getcoverage","dir":"Articles","previous_headings":"","what":"Get coverage data (GetCoverage)","title":"Use ows4R with OGC WCS (Web Coverage Service)","text":"Get single coverage coverage well-described dimensions well-known, ’s possible get coverage data. Similarly coverage description, coverage data can get either coverage summary, directly WCS Client (specifying coverage name first argument). Note however getting data WCS, data DIRECTLY accessed R web-service, data downloaded temporary file within R session temp directory. done transparently ows4R, without action required user. examples show get coverage coverage summary object. possible limit spatial (spatial-temporal) extent : slicing: specify single value specific dimension, eg. elevation, time trimming: specify min-max values range specific dimension, eg. lon/lat result getCoverage method object class SpatRaster terra package. Get stack coverages ows4R extends WCS standard allows users download coverage stack means extra getCoverageStack method (available coverage summary object). code shows download timeseries coverages latest five time instants available:","code":"cov_data <- chla$getCoverage( bbox = OWSUtils$toBBOX(-10, -9, 40, 42), time = chla_dims[[1]]$coefficients[[1]] ) cov_stack <- chla$getCoverageStack( bbox = OWSUtils$toBBOX(-10, -9, 40, 42), time = tail(chla_dims[[1]]$coefficients, 5) )"},{"path":"https://eblondel.github.io/ows4R/articles/wcs.html","id":"download-coverage-data-files","dir":"Articles","previous_headings":"","what":"Download coverage data files","title":"Use ows4R with OGC WCS (Web Coverage Service)","text":"methods described allow read coverage data within R terra package without persisting data specific files named user, temporary file within R session temp directory. However sometimes required wished download coverage data files file system. ows4R allows download coverage data files getCoverage getCoverageStack. single coverage getCoverage method provides filename argument can used download data files: coverage stack download data files coverage stack, required provide function, handled argument filename_handler set coverage target file name. function set mandatory arguments, namely: identifier (coverage identifier), time (time filter), elevation (elevation filter), bbox (bbox filter), format (target format); output function filename used given coverage. simplify download ows4R puts disposal ready--use filename handler named WCSCoverageFilenameHandler enough add trigger data files download.","code":"cov_data <- chla$getCoverage( bbox = OWSUtils$toBBOX(-10, -9, 40, 42), time = chla_dims[[1]]$coefficients[[1]], filename = \"myfile.tif\" ) cov_stack <- chla$getCoverageStack( bbox = OWSUtils$toBBOX(-10, -9, 40, 42), time = tail(chla_dims[[1]]$coefficients, 5), filename_handler = WCSCoverageFilenameHandler )"},{"path":"https://eblondel.github.io/ows4R/articles/wcs.html","id":"comparing-data-get-from-wcs-getcoverage-vs--wms-getfeatureinfo","dir":"Articles","previous_headings":"","what":"Comparing data get from WCS (GetCoverage) vs. WMS (GetFeatureInfo)","title":"Use ows4R with OGC WCS (Web Coverage Service)","text":"matter quality assurance, possible compare raster data values get using WCS/Getcoverage data values get WMS/GetFeatureInfo operation (emulating map click). example illustrates check:","code":"require(terra) require(testthat) #Get data using WCS vliz <- WCSClient$new(url = \"https://geo.vliz.be/geoserver/wcs\", serviceVersion = \"2.0.1\", logger = \"DEBUG\") cov <- vliz$getCapabilities()$findCoverageSummaryById(\"Emodnetbio__aca_spp_19582016_L1\", exact = TRUE) cov_des <- cov$getDescription() cov_data <- cov$getCoverage( bbox = OWSUtils$toBBOX(8.37,8.41,58.18,58.24), time = cov$getDimensions()[[3]]$coefficients[1] ) cov_data_stack <- cov$getCoverageStack( bbox = OWSUtils$toBBOX(8.37,8.41,58.18,58.24), time = cov$getDimensions()[[3]]$coefficients[1] ) expect_true(terra::compareGeom(cov_data,cov_data_stack)) #compare with data returned by WMS GetFeatureInfo vliz_wms <- WMSClient$new(url = \"https://geo.vliz.be/geoserver/wms\", service = \"1.1.1\", logger = \"DEBUG\") gfi <- vliz_wms$getFeatureInfo( layer = \"Emodnetbio:aca_spp_19582016_L1\", feature_count = 1, x = 50, y = 50, srs = \"EPSG:4326\", width = 101, height = 101, bbox = OWSUtils$toBBOX(8.12713623046875,8.68194580078125,57.92266845703125,58.47747802734375) ) #final check expect_equal(terra::values(cov_data)[[1]], gfi$relative_abundance)"},{"path":"https://eblondel.github.io/ows4R/authors.html","id":null,"dir":"","previous_headings":"","what":"Authors","title":"Authors and Citation","text":"Emmanuel Blondel. Author, maintainer. Alexandre Bennici. Contributor. Norbert Billet. Contributor.","code":""},{"path":"https://eblondel.github.io/ows4R/authors.html","id":"citation","dir":"","previous_headings":"","what":"Citation","title":"Authors and Citation","text":"Blondel E (2024). ows4R: Interface OGC Web-Services (OWS). R package version 0.4, https://eblondel.github.io/ows4R/, https://www.ogc.org/standards/, https://github.com/eblondel/ows4R.","code":"@Manual{, title = {ows4R: Interface to OGC Web-Services (OWS)}, author = {Emmanuel Blondel}, year = {2024}, note = {R package version 0.4, https://eblondel.github.io/ows4R/, https://www.ogc.org/standards/}, url = {https://github.com/eblondel/ows4R}, }"},{"path":"https://eblondel.github.io/ows4R/index.html","id":"sponsors","dir":"","previous_headings":"","what":"Sponsors","title":"Interface to OGC Web-Services (OWS)","text":"following projects contributed strenghten ows4R: core, WFS CSW support WMS WPS support Blue-Cloud received funding European Union’s Horizon programme call BG-07-2019-2020, topic: [] 2019 - Blue Cloud services, Grant Agreement .862409. WCS support","code":""},{"path":"https://eblondel.github.io/ows4R/index.html","id":"citation","dir":"","previous_headings":"Sponsors","what":"Citation","title":"Interface to OGC Web-Services (OWS)","text":"thank advance people use ows4R citing work / publication(s). , please use citation provided link","code":""},{"path":"https://eblondel.github.io/ows4R/index.html","id":"ogc-standards-coverage-status","dir":"","previous_headings":"","what":"OGC standards coverage status","title":"Interface to OGC Web-Services (OWS)","text":"case missing feature, create ticket.","code":""},{"path":"https://eblondel.github.io/ows4R/index.html","id":"development-perspectives","dir":"","previous_headings":"","what":"Development perspectives","title":"Interface to OGC Web-Services (OWS)","text":"Support additional OGC web-service standard specifications including: Web Coverage Processing Service (WCPS) Filter Encoding (FES) version 2.0 Web Feature Service (WFS) Transaction operations Catalogue Service (CSW) version 3.0 (including Transaction Harvest operations) OGC API … information, interested funding R project contribute , hesitate contact e-mail","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"And — And","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"And — And","text":"Object R6Class modelling operator","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"And — And","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"And — And","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryLogicOpType -> ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"And — And","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::BinaryLogicOpType$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"And — And","text":"$new() $clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"And — And","text":"Initializes expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"And — And","text":"","code":"And$new(...)"},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"And — And","text":"... list objects class OGCExpression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"And — And","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"And — And","text":"","code":"And$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"And — And","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"And — And","text":"","code":"expr1 <- PropertyIsEqualTo$new(PropertyName = \"property1\", Literal = \"value1\") expr2 <- PropertyIsEqualTo$new(PropertyName = \"property2\", Literal = \"value2\") and <- And$new(expr1,expr2) and_xml <- and$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":null,"dir":"Reference","previous_headings":"","what":"BBOX — BBOX","title":"BBOX — BBOX","text":"BBOX BBOX","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"BBOX — BBOX","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"BBOX — BBOX","text":"Object R6Class modelling BBOX","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"BBOX — BBOX","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"BBOX — BBOX","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> BBOX","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"BBOX — BBOX","text":"PropertyName property name field XML encoding Envelope envelope object class GMLEnvelope geometa","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"BBOX — BBOX","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"BBOX — BBOX","text":"BBOX$new() BBOX$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"BBOX — BBOX","text":"Initializes BBOX expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"BBOX — BBOX","text":"","code":"BBOX$new(bbox, srsName = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"BBOX — BBOX","text":"bbox object class matrix srsName srs name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"BBOX — BBOX","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"BBOX — BBOX","text":"","code":"BBOX$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"BBOX — BBOX","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"BBOX — BBOX","text":"","code":"bbox <- OWSUtils$toBBOX(-180,-90,180,90) expr <- BBOX$new(bbox) expr_xml <- expr$encode() #see how it looks like in XML #> [geometa][WARN] Element '{http://www.opengis.net/gml}Envelope': No matching global declaration available for the validation root at line 1. #> [geometa][WARN] Object 'GMLEnvelope' is INVALID according to ISO 19139 XML schemas!"},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":null,"dir":"Reference","previous_headings":"","what":"BinaryComparisonOpType — BinaryComparisonOpType","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"BinaryComparisonOpType BinaryComparisonOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"Object R6Class modelling BinaryComparisonOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"abstract super class property operation classes","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> BinaryComparisonOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"PropertyName property name field XML encoding Literal literal field XML encoding attrs attributes XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"BinaryComparisonOpType$new() BinaryComparisonOpType$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"Initializes object extending BinaryComparisonOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"","code":"BinaryComparisonOpType$new( element, namespacePrefix, PropertyName, Literal, matchCase = NA )"},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"element element name namespacePrefix XML namespace prefix PropertyName property name Literal literal matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"","code":"BinaryComparisonOpType$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":null,"dir":"Reference","previous_headings":"","what":"BinaryLogicOpType — BinaryLogicOpType","title":"BinaryLogicOpType — BinaryLogicOpType","text":"BinaryLogicOpType BinaryLogicOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"BinaryLogicOpType — BinaryLogicOpType","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"BinaryLogicOpType — BinaryLogicOpType","text":"Object R6Class modelling BinaryLogicOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"BinaryLogicOpType — BinaryLogicOpType","text":"abstract super class binary logical operation classes","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"BinaryLogicOpType — BinaryLogicOpType","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> BinaryLogicOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"BinaryLogicOpType — BinaryLogicOpType","text":"operations list OGC expressions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"BinaryLogicOpType — BinaryLogicOpType","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"BinaryLogicOpType — BinaryLogicOpType","text":"BinaryLogicOpType$new() BinaryLogicOpType$setExprVersion() BinaryLogicOpType$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"BinaryLogicOpType — BinaryLogicOpType","text":"Initializes BinaryLogicOpType expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"BinaryLogicOpType — BinaryLogicOpType","text":"","code":"BinaryLogicOpType$new(..., element, namespacePrefix, exprVersion = \"1.1.0\")"},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"BinaryLogicOpType — BinaryLogicOpType","text":"... list objects class OGCExpression element element namespacePrefix namespacePrefix exprVersion OGC expression version. Default \"1.1.0\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"method-setexprversion-","dir":"Reference","previous_headings":"","what":"Method setExprVersion()","title":"BinaryLogicOpType — BinaryLogicOpType","text":"Sets expression version. methods control expression versions set operations specified expression.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"BinaryLogicOpType — BinaryLogicOpType","text":"","code":"BinaryLogicOpType$setExprVersion(exprVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"BinaryLogicOpType — BinaryLogicOpType","text":"exprVersion OGC expression version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"BinaryLogicOpType — BinaryLogicOpType","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"BinaryLogicOpType — BinaryLogicOpType","text":"","code":"BinaryLogicOpType$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"BinaryLogicOpType — BinaryLogicOpType","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":null,"dir":"Reference","previous_headings":"","what":"CASClient — CASClient","title":"CASClient — CASClient","text":"CASClient CASClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CASClient — CASClient","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CASClient — CASClient","text":"Object R6Class methods interfacing Central Authentication Service (CAS).","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"CASClient — CASClient","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CASClient — CASClient","text":"Emmanuel Blondel ","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CASClient — CASClient","text":"CASClient$new() CASClient$getUrl() CASClient$login() CASClient$logout() CASClient$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CASClient — CASClient","text":"Initializes object class CASClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CASClient — CASClient","text":"","code":"CASClient$new(url)"},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CASClient — CASClient","text":"url base URL Central Authentication Service (CAS)","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"method-geturl-","dir":"Reference","previous_headings":"","what":"Method getUrl()","title":"CASClient — CASClient","text":"Get CAS base URL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CASClient — CASClient","text":"","code":"CASClient$getUrl()"},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"CASClient — CASClient","text":"base URL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"method-login-","dir":"Reference","previous_headings":"","what":"Method login()","title":"CASClient — CASClient","text":"Logs CAS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"CASClient — CASClient","text":"","code":"CASClient$login(user, pwd)"},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CASClient — CASClient","text":"user user pwd password","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"CASClient — CASClient","text":"TRUE logged , FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"method-logout-","dir":"Reference","previous_headings":"","what":"Method logout()","title":"CASClient — CASClient","text":"Logs CAS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"CASClient — CASClient","text":"","code":"CASClient$logout()"},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"CASClient — CASClient","text":"TRUE logged , FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CASClient — CASClient","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"CASClient — CASClient","text":"","code":"CASClient$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"CASClient — CASClient","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWCapabilities — CSWCapabilities","title":"CSWCapabilities — CSWCapabilities","text":"CSWCapabilities CSWCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWCapabilities — CSWCapabilities","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWCapabilities — CSWCapabilities","text":"Object R6Class methods interfacing OGC Catalogue Service Web (CSW) Get Capabilities document.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"CSWCapabilities — CSWCapabilities","text":"Class used read CSWCapabilities document. use CSWClient recommended instead benefit full set capabilities associated CSW server.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWCapabilities — CSWCapabilities","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"CSWCapabilities — CSWCapabilities","text":"ows4R::OGCAbstractObject -> ows4R::OWSCapabilities -> CSWCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWCapabilities — CSWCapabilities","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSCapabilities$getClient() ows4R::OWSCapabilities$getOWSVersion() ows4R::OWSCapabilities$getOperationsMetadata() ows4R::OWSCapabilities$getRequest() ows4R::OWSCapabilities$getService() ows4R::OWSCapabilities$getServiceIdentification() ows4R::OWSCapabilities$getServiceProvider() ows4R::OWSCapabilities$getServiceVersion() ows4R::OWSCapabilities$getUrl() ows4R::OWSCapabilities$setClient()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWCapabilities — CSWCapabilities","text":"CSWCapabilities$new() CSWCapabilities$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWCapabilities — CSWCapabilities","text":"Initializes CSWCapabilities object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWCapabilities — CSWCapabilities","text":"","code":"CSWCapabilities$new(url, version, client = NULL, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWCapabilities — CSWCapabilities","text":"url url version version client object class CSWClient logger logger type NULL, \"INFO\" \"DEBUG\" ... parameter pass OWSGetCapabilities service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWCapabilities — CSWCapabilities","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWCapabilities — CSWCapabilities","text":"","code":"CSWCapabilities$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWCapabilities — CSWCapabilities","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWClient — CSWClient","title":"CSWClient — CSWClient","text":"CSWClient CSWClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWClient — CSWClient","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWClient — CSWClient","text":"Object R6Class methods interfacing OGC Catalogue Service Web.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWClient — CSWClient","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"CSWClient — CSWClient","text":"ows4R::OGCAbstractObject -> ows4R::OWSClient -> CSWClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWClient — CSWClient","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSClient$getCASUrl() ows4R::OWSClient$getConfig() ows4R::OWSClient$getHeaders() ows4R::OWSClient$getPwd() ows4R::OWSClient$getToken() ows4R::OWSClient$getUrl() ows4R::OWSClient$getUser() ows4R::OWSClient$getVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWClient — CSWClient","text":"CSWClient$new() CSWClient$getCapabilities() CSWClient$reloadCapabilities() CSWClient$describeRecord() CSWClient$getRecordById() CSWClient$getRecords() CSWClient$transaction() CSWClient$insertRecord() CSWClient$updateRecord() CSWClient$deleteRecord() CSWClient$deleteRecordById() CSWClient$harvestRecord() CSWClient$harvestNode() CSWClient$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWClient — CSWClient","text":"method used instantiate CSWClient url OGC service. Authentication supported using basic auth (using user/pwd arguments), bearer token (using token argument), custom (using headers argument). default, logger argument set NULL (logger). argument accepts two possible values: INFO: print ows4R logs, DEBUG: print verbose logs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$new( url, serviceVersion = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), cas_url = NULL, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"url url serviceVersion CSW service version user user pwd password token token headers headers config config cas_url Central Authentication Service (CAS) URL logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-getcapabilities-","dir":"Reference","previous_headings":"","what":"Method getCapabilities()","title":"CSWClient — CSWClient","text":"Get CSW capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"object class CSWCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-reloadcapabilities-","dir":"Reference","previous_headings":"","what":"Method reloadCapabilities()","title":"CSWClient — CSWClient","text":"Reloads CSW capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$reloadCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-describerecord-","dir":"Reference","previous_headings":"","what":"Method describeRecord()","title":"CSWClient — CSWClient","text":"Describe records. Retrieves XML schema CSW records. default, returns XML schema CSW records (http://www.opengis.net/cat/csw/2.0.2). schemas, specify outputSchema required, e.g. http://www.isotc211.org/2005/gmd ISO 19115/19139 schema","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$describeRecord(namespace, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"namespace namespace ... parameter pass CSWDescribeRecord service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"service record description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-getrecordbyid-","dir":"Reference","previous_headings":"","what":"Method getRecordById()","title":"CSWClient — CSWClient","text":"Get record Id. default, record returned following CSW schema (http://www.opengis.net/cat/csw/2.0.2). schemas, specify outputSchema required, e.g. http://www.isotc211.org/2005/gmd ISO 19115/19139 records. parameter elementSetName among values \"full\", \"brief\", \"summary\". default \"full\" corresponds full metadata sheet returned. \"brief\" \"summary\" contain subset metadata content.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$getRecordById(id, elementSetName = \"full\", ...)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"id record id elementSetName element set name. Default \"full\" ... parameter pass CSWGetRecordById service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"fetched record, NULL otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-getrecords-","dir":"Reference","previous_headings":"","what":"Method getRecords()","title":"CSWClient — CSWClient","text":"Get records based query, object class CSWQuery. maximum number records can set either full query (maxRecords) per request (maxRecordsPerRequest, default set 10 records) considering operation paginated. default, record returned following CSW schema (http://www.opengis.net/cat/csw/2.0.2). schemas, specify outputSchema required, e.g. http://www.isotc211.org/2005/gmd ISO 19115/19139 records.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$getRecords( query = CSWQuery$new(), maxRecords = NULL, maxRecordsPerRequest = 10L, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"query object class CSWQuery. default, empty query set. maxRecords max number total records. Default NULL meaning records returned. maxRecordsPerRequest max number records return per request. Default set 10. ... parameter passed CSWGetRecords service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"list records. default record returned Dublin Core list object. case ISO 19115/19139 set outputSchema, record object class ISOMetadata geometa.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-transaction-","dir":"Reference","previous_headings":"","what":"Method transaction()","title":"CSWClient — CSWClient","text":"Generic transaction method. Used inserting, updating deleting metadata using transactional CSW service. type gives type transaction (Insert, Update, Delete). record","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$transaction( type, record = NULL, recordProperty = NULL, constraint = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"type transaction either \"Insert\", \"Update\" \"Delete\" record record subject transaction recordProperty record property, object class CSWRecordProperty constraint constraint, object class CSWConstraint ... parameter pass CSWTransaction service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"TRUE transaction succeeded, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-insertrecord-","dir":"Reference","previous_headings":"","what":"Method insertRecord()","title":"CSWClient — CSWClient","text":"Inserts new record","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$insertRecord(record, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-5","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"record record subject Insertion ... parameter pass transaction","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"TRUE insertion succeeded, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-updaterecord-","dir":"Reference","previous_headings":"","what":"Method updateRecord()","title":"CSWClient — CSWClient","text":"Updates existing record","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$updateRecord( record = NULL, recordProperty = NULL, constraint = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-6","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"record record subject Insertion recordProperty record property, object class CSWRecordProperty constraint constraint, object class CSWConstraint ... parameter pass transaction","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"TRUE update succeeded, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-deleterecord-","dir":"Reference","previous_headings":"","what":"Method deleteRecord()","title":"CSWClient — CSWClient","text":"Deletes existing (set ) record(s). constraint (object class CSWConstraint) can specified limit deletion records.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$deleteRecord(record = NULL, constraint = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-7","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"record record subject Insertion constraint constraint, object class CSWConstraint ... parameter pass transaction","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"TRUE deletion succeeded, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-deleterecordbyid-","dir":"Reference","previous_headings":"","what":"Method deleteRecordById()","title":"CSWClient — CSWClient","text":"Deletes existing record identifier (constraint used identify record based identifier).","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$deleteRecordById(id)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-8","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"id record id","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-8","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"TRUE deletion succeeded, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-harvestrecord-","dir":"Reference","previous_headings":"","what":"Method harvestRecord()","title":"CSWClient — CSWClient","text":"Harvests single record sourceUrl, given resourceType (default \"http://www.isotc211.org/2005/gmd\").","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-11","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$harvestRecord( sourceUrl, resourceType = \"http://www.isotc211.org/2005/gmd\" )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-9","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"sourceUrl source URL resourceType resource type. Default \"http://www.isotc211.org/2005/gmd\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-9","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"TRUE harvesting succeeded, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-harvestnode-","dir":"Reference","previous_headings":"","what":"Method harvestNode()","title":"CSWClient — CSWClient","text":"Harvests CSW node (endpoint defined url). query (object class CSWQuery) can specificed needed restrain harvesting subset. resourceType defines type resources harvested (default \"http://www.isotc211.org/2005/gmd\")","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-12","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$harvestNode( url, query = CSWQuery$new(), resourceType = \"http://www.isotc211.org/2005/gmd\", sourceBaseUrl )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-10","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"url CSW node URL query CSW query, object class CSWQuery resourceType resource type. Default \"http://www.isotc211.org/2005/gmd\" sourceBaseUrl source base URL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-10","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"object class list giving number records found actually harvested","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWClient — CSWClient","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-13","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-11","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"CSWClient — CSWClient","text":"","code":"# \\dontrun{ #example based on CSW endpoint responding at http://localhost:8000/csw csw <- CSWClient$new(\"http://localhost:8000/csw\", serviceVersion = \"2.0.2\") #> Error in curl::curl_fetch_memory(url, handle = handle): Failed to connect to localhost port 8000 after 0 ms: Connection refused #get capabilities caps <- csw$getCapabilities() #> Error in eval(expr, envir, enclos): object 'csw' not found #get records records <- csw$getRecords() #> Error in eval(expr, envir, enclos): object 'csw' not found #get record by id record <- csw$getRecordById(\"my-metadata-id\") #> Error in eval(expr, envir, enclos): object 'csw' not found #Advanced examples at https://github.com/eblondel/ows4R/wiki#csw # }"},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWConstraint — CSWConstraint","title":"CSWConstraint — CSWConstraint","text":"CSWConstraint CSWConstraint","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWConstraint — CSWConstraint","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWConstraint — CSWConstraint","text":"Object R6Class modelling CSW Constraint","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWConstraint — CSWConstraint","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"CSWConstraint — CSWConstraint","text":"ows4R::OGCAbstractObject -> CSWConstraint","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"CSWConstraint — CSWConstraint","text":"wrap internal property object XML encoding CqlText text use CQL filter filter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWConstraint — CSWConstraint","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWConstraint — CSWConstraint","text":"CSWConstraint$new() CSWConstraint$setServiceVersion() CSWConstraint$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWConstraint — CSWConstraint","text":"Initializes CSWConstraint object used constrain CSW operations.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWConstraint — CSWConstraint","text":"","code":"CSWConstraint$new(cqlText = NULL, filter = NULL, serviceVersion = \"2.0.2\")"},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWConstraint — CSWConstraint","text":"cqlText cqlText, object class character filter filter, object extending OGCFilter serviceVersion CSW service version. Default \"2.0.2\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"method-setserviceversion-","dir":"Reference","previous_headings":"","what":"Method setServiceVersion()","title":"CSWConstraint — CSWConstraint","text":"Set service version. methods ensures underlying filter property properly set right OGC filter version.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWConstraint — CSWConstraint","text":"","code":"CSWConstraint$setServiceVersion(serviceVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWConstraint — CSWConstraint","text":"serviceVersion service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWConstraint — CSWConstraint","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWConstraint — CSWConstraint","text":"","code":"CSWConstraint$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWConstraint — CSWConstraint","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"CSWConstraint — CSWConstraint","text":"","code":"filter <- OGCFilter$new( PropertyIsEqualTo$new(\"apiso:Identifier\", \"12345\") ) cons <- CSWConstraint$new(filter = filter) cons_xml <- cons$encode() #how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWDescribeRecord — CSWDescribeRecord","title":"CSWDescribeRecord — CSWDescribeRecord","text":"CSWDescribeRecord CSWDescribeRecord","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWDescribeRecord — CSWDescribeRecord","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWDescribeRecord — CSWDescribeRecord","text":"Object R6Class modelling CSW DescribeRecord request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"CSWDescribeRecord — CSWDescribeRecord","text":"Class used internally ows4R trigger CSW DescribeRecord request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWDescribeRecord — CSWDescribeRecord","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"CSWDescribeRecord — CSWDescribeRecord","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> CSWDescribeRecord","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWDescribeRecord — CSWDescribeRecord","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWDescribeRecord — CSWDescribeRecord","text":"CSWDescribeRecord$new() CSWDescribeRecord$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWDescribeRecord — CSWDescribeRecord","text":"Initializes CSWDescribeRecord service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWDescribeRecord — CSWDescribeRecord","text":"","code":"CSWDescribeRecord$new( capabilities, op, url, version, namespace = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWDescribeRecord — CSWDescribeRecord","text":"capabilities object class CSWCapabilities op object class OWSOperation retrieved capabilities url url version version namespace namespace user user pwd password token token headers headers config config logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWDescribeRecord — CSWDescribeRecord","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWDescribeRecord — CSWDescribeRecord","text":"","code":"CSWDescribeRecord$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWDescribeRecord — CSWDescribeRecord","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWGetRecordById — CSWGetRecordById","title":"CSWGetRecordById — CSWGetRecordById","text":"CSWGetRecordById CSWGetRecordById","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWGetRecordById — CSWGetRecordById","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWGetRecordById — CSWGetRecordById","text":"Object R6Class modelling CSW GetRecordById request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"CSWGetRecordById — CSWGetRecordById","text":"Class used internally ows4R trigger CSW GetRecordById request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWGetRecordById — CSWGetRecordById","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"CSWGetRecordById — CSWGetRecordById","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> CSWGetRecordById","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"CSWGetRecordById — CSWGetRecordById","text":"Id record Id property request XML encoding ElementSetName element set name property XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWGetRecordById — CSWGetRecordById","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWGetRecordById — CSWGetRecordById","text":"CSWGetRecordById$new() CSWGetRecordById$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWGetRecordById — CSWGetRecordById","text":"Initializes CSWGetRecordById service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWGetRecordById — CSWGetRecordById","text":"","code":"CSWGetRecordById$new( capabilities, op, url, serviceVersion = \"2.0.2\", user = NULL, pwd = NULL, token = NULL, headers = headers, config = httr::config(), id, elementSetName = \"full\", logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWGetRecordById — CSWGetRecordById","text":"capabilities object class CSWCapabilities op object class OWSOperation retrieved capabilities url url serviceVersion serviceVersion. Default \"2.0.2 user user pwd password token token headers headers config config id record id elementSetName element set name. Default \"full\" logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWGetRecordById — CSWGetRecordById","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWGetRecordById — CSWGetRecordById","text":"","code":"CSWGetRecordById$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWGetRecordById — CSWGetRecordById","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWGetRecords — CSWGetRecords","title":"CSWGetRecords — CSWGetRecords","text":"CSWGetRecords CSWGetRecords","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWGetRecords — CSWGetRecords","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWGetRecords — CSWGetRecords","text":"Object R6Class modelling CSW GetRecords request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"CSWGetRecords — CSWGetRecords","text":"Class used internally ows4R trigger CSW GetRecords request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWGetRecords — CSWGetRecords","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"CSWGetRecords — CSWGetRecords","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> CSWGetRecords","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"CSWGetRecords — CSWGetRecords","text":"Query query property request XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWGetRecords — CSWGetRecords","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWGetRecords — CSWGetRecords","text":"CSWGetRecords$new() CSWGetRecords$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWGetRecords — CSWGetRecords","text":"Initializes CSWGetRecordById service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWGetRecords — CSWGetRecords","text":"","code":"CSWGetRecords$new( capabilities, op, url, serviceVersion = \"2.0.2\", user = NULL, pwd = NULL, token = NULL, headers = list(), config = httr::config(), query = NULL, logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWGetRecords — CSWGetRecords","text":"capabilities object class CSWCapabilities op object class OWSOperation retrieved capabilities url url serviceVersion serviceVersion. Default \"2.0.2 user user pwd password token token headers headers config config query object class CSWQuery logger logger ... parameter pass service request, resultType, startPosition, maxRecords, outputFormat, outputSchema","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWGetRecords — CSWGetRecords","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWGetRecords — CSWGetRecords","text":"","code":"CSWGetRecords$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWGetRecords — CSWGetRecords","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWHarvest — CSWHarvest","title":"CSWHarvest — CSWHarvest","text":"CSWHarvest CSWHarvest","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWHarvest — CSWHarvest","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWHarvest — CSWHarvest","text":"Object R6Class modelling CSW Harvest request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"CSWHarvest — CSWHarvest","text":"Class used internally ows4R trigger CSW Harvest request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWHarvest — CSWHarvest","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"CSWHarvest — CSWHarvest","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> CSWHarvest","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"CSWHarvest — CSWHarvest","text":"Source source property request XML encoding ResourceType resource type property request XML encoding ResourceFormat resource format property request XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWHarvest — CSWHarvest","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWHarvest — CSWHarvest","text":"CSWHarvest$new() CSWHarvest$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWHarvest — CSWHarvest","text":"Initializes CSWHarvest service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWHarvest — CSWHarvest","text":"","code":"CSWHarvest$new( capabilities, op, url, serviceVersion = \"2.0.2\", user = NULL, pwd = NULL, token = NULL, headers = list(), config = httr::config(), source = NULL, resourceType = \"http://www.isotc211.org/schemas/2005/gmd/\", resourceFormat = \"application/xml\", logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWHarvest — CSWHarvest","text":"capabilities object class CSWCapabilities op object class OWSOperation retrieved capabilities url url serviceVersion serviceVersion. Default \"2.0.2 user user pwd password token token headers headers config config source source resourceType resource type. Default \"http://www.isotc211.org/schemas/2005/gmd/\" resourceFormat resource format. Default \"application/xml\" logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWHarvest — CSWHarvest","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWHarvest — CSWHarvest","text":"","code":"CSWHarvest$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWHarvest — CSWHarvest","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWQuery — CSWQuery","title":"CSWQuery — CSWQuery","text":"CSWQuery CSWQuery","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWQuery — CSWQuery","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWQuery — CSWQuery","text":"Object R6Class modelling CSW Query","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWQuery — CSWQuery","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"CSWQuery — CSWQuery","text":"ows4R::OGCAbstractObject -> CSWQuery","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"CSWQuery — CSWQuery","text":"ElementSetName element set name property request XML encoding constraint property request XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWQuery — CSWQuery","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWQuery — CSWQuery","text":"CSWQuery$new() CSWQuery$setServiceVersion() CSWQuery$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWQuery — CSWQuery","text":"method used instantiate CSWQUery object. elementSetName can either \"full\" (default), \"brief\" \"summary\". constraint CSWConstraint can defined query. typeNames indicates query (default \"csw:Record\"). serviceVersion gives CSW service version (default \"2.0.2\")","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWQuery — CSWQuery","text":"","code":"CSWQuery$new( elementSetName = \"full\", constraint = NULL, typeNames = \"csw:Record\", serviceVersion = \"2.0.2\" )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWQuery — CSWQuery","text":"elementSetName element set name. Default \"full\" constraint object class CSWConstraint typeNames type names serviceVersion CSW service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"method-setserviceversion-","dir":"Reference","previous_headings":"","what":"Method setServiceVersion()","title":"CSWQuery — CSWQuery","text":"Set service version. methods ensures propery naming typeNames depending service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWQuery — CSWQuery","text":"","code":"CSWQuery$setServiceVersion(serviceVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWQuery — CSWQuery","text":"serviceVersion service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWQuery — CSWQuery","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWQuery — CSWQuery","text":"","code":"CSWQuery$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWQuery — CSWQuery","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"CSWQuery — CSWQuery","text":"","code":"#CSWQuery - elementSetName query_full <- CSWQuery$new() query_brief <- CSWQuery$new(elementSetName = \"brief\") query_summary <- CSWQuery$new(elementSetName = \"summary\") #CSWQuery - cqlText with title cons <- CSWConstraint$new(cqlText = \"dc:title like '%ips%'\") query <- CSWQuery$new(constraint = cons) #CSW 2.0.2 - Query - Filter / AnyText filter <- OGCFilter$new( PropertyIsLike$new(\"csw:AnyText\", \"%Physio%\")) cons <- CSWConstraint$new(filter = filter) query <- CSWQuery$new(constraint = cons) #CSW 2.0.2 - Query - Filter / AnyText Equal filter <- OGCFilter$new( PropertyIsEqualTo$new(\"csw:AnyText\", \"species\")) cons <- CSWConstraint$new(filter = filter) query <- CSWQuery$new(constraint = cons) #CSW 2.0.2 - Query - Filter / AnyText And Not filter <- OGCFilter$new(And$new( PropertyIsLike$new(\"csw:AnyText\", \"%lorem%\"), PropertyIsLike$new(\"csw:AnyText\", \"%ipsum%\"), Not$new( PropertyIsLike$new(\"csw:AnyText\", \"%dolor%\") ) )) cons <- CSWConstraint$new(filter = filter) query <- CSWQuery$new(constraint = cons) #CSW 2.0.2 - Query - Filter / AnyText And nested Or filter <- OGCFilter$new(And$new( PropertyIsEqualTo$new(\"dc:title\", \"Aliquam fermentum purus quis arcu\"), PropertyIsEqualTo$new(\"dc:format\", \"application/pdf\"), Or$new( PropertyIsEqualTo$new(\"dc:type\", \"http://purl.org/dc/dcmitype/Dataset\"), PropertyIsEqualTo$new(\"dc:type\", \"http://purl.org/dc/dcmitype/Service\"), PropertyIsEqualTo$new(\"dc:type\", \"http://purl.org/dc/dcmitype/Image\"), PropertyIsEqualTo$new(\"dc:type\", \"http://purl.org/dc/dcmitype/Text\") ) )) cons <- CSWConstraint$new(filter = filter) query <- CSWQuery$new(elementSetName = \"brief\", constraint = cons) #CSW 2.0.2 - Query - Filter / BBOX bbox <- matrix(c(-180,180,-90,90), nrow = 2, ncol = 2, byrow = TRUE, dimnames = list(c(\"x\", \"y\"), c(\"min\",\"max\"))) filter <- OGCFilter$new( BBOX$new(bbox = bbox) ) cons <- CSWConstraint$new(filter = filter) query <- CSWQuery$new(elementSetName = \"brief\", constraint = cons)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWRecordProperty — CSWRecordProperty","title":"CSWRecordProperty — CSWRecordProperty","text":"CSWRecordProperty CSWRecordProperty","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWRecordProperty — CSWRecordProperty","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWRecordProperty — CSWRecordProperty","text":"Object R6Class modelling CSW RecordProperty","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWRecordProperty — CSWRecordProperty","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"CSWRecordProperty — CSWRecordProperty","text":"ows4R::OGCAbstractObject -> CSWRecordProperty","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"CSWRecordProperty — CSWRecordProperty","text":"wrap internal property XML encoding Name name property request XML encoding Value property request XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWRecordProperty — CSWRecordProperty","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWRecordProperty — CSWRecordProperty","text":"CSWRecordProperty$new() CSWRecordProperty$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWRecordProperty — CSWRecordProperty","text":"Initializes object class CSWRecordProperty","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWRecordProperty — CSWRecordProperty","text":"","code":"CSWRecordProperty$new(name, value, cswVersion = \"2.0.2\")"},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWRecordProperty — CSWRecordProperty","text":"name name value value cswVersion CSW service version. Default \"2.0.2\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWRecordProperty — CSWRecordProperty","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWRecordProperty — CSWRecordProperty","text":"","code":"CSWRecordProperty$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWRecordProperty — CSWRecordProperty","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"CSWRecordProperty — CSWRecordProperty","text":"","code":"rp <- CSWRecordProperty$new(name = \"NAME\", value = \"VALUE\") rp_xml <- rp$encode() #see how it looks in XML"},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWTransaction — CSWTransaction","title":"CSWTransaction — CSWTransaction","text":"CSWTransaction CSWTransaction","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWTransaction — CSWTransaction","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWTransaction — CSWTransaction","text":"Object R6Class modelling CSW Transaction request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"CSWTransaction — CSWTransaction","text":"Class used internally ows4R trigger CSW Transaction request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWTransaction — CSWTransaction","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"CSWTransaction — CSWTransaction","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> CSWTransaction","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWTransaction — CSWTransaction","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWTransaction — CSWTransaction","text":"CSWTransaction$new() CSWTransaction$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWTransaction — CSWTransaction","text":"Initializes CSWTransaction service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWTransaction — CSWTransaction","text":"","code":"CSWTransaction$new( capabilities, op, url, serviceVersion, type, user = NULL, pwd = NULL, token = NULL, headers = list(), record = NULL, recordProperty = NULL, constraint = NULL, logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWTransaction — CSWTransaction","text":"capabilities object class CSWCapabilities op object class OWSOperation retrieved capabilities url url serviceVersion serviceVersion. Default \"2.0.2 type type transaction, either \"Insert\", \"Update\", \"Delete\" user user pwd password token token headers headers record record recordProperty record property constraint constraint logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWTransaction — CSWTransaction","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWTransaction — CSWTransaction","text":"","code":"CSWTransaction$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWTransaction — CSWTransaction","text":"deep Whether make deep clone.","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"Not — Not","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Not — Not","text":"Object R6Class modelling ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Not — Not","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"Not — Not","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::UnaryLogicOpType -> ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"Not — Not","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::UnaryLogicOpType$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"Not — Not","text":"$new() $clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"Not — Not","text":"Initializes expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Not — Not","text":"","code":"Not$new(...)"},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Not — Not","text":"... list objects class OGCExpression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"Not — Not","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"Not — Not","text":"","code":"Not$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"Not — Not","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Not — Not","text":"","code":"expr <- PropertyIsEqualTo$new(PropertyName = \"property\", Literal = \"value\") not <- Not$new(expr) not_xml <- not$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":null,"dir":"Reference","previous_headings":"","what":"OGCAbstractObject — OGCAbstractObject","title":"OGCAbstractObject — OGCAbstractObject","text":"OGCAbstractObject OGCAbstractObject","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OGCAbstractObject — OGCAbstractObject","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OGCAbstractObject — OGCAbstractObject","text":"Object R6Class modelling OGCAbstractObject","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OGCAbstractObject — OGCAbstractObject","text":"abstract class used ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OGCAbstractObject — OGCAbstractObject","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"OGCAbstractObject — OGCAbstractObject","text":"verbose.info logical property indicate whether INFO logs displayed verbose.debug logical property indicate whether DEBUG logs displayed loggerType logger type, either NULL, \"INFO\", \"DEBUG\" wrap internal property XML encoding element element used XML encoding namespace namespace used XML encoding defaults default values used XML encoding attrs attributes used XML encoding","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OGCAbstractObject — OGCAbstractObject","text":"OGCAbstractObject$logger() OGCAbstractObject$INFO() OGCAbstractObject$WARN() OGCAbstractObject$ERROR() OGCAbstractObject$new() OGCAbstractObject$getClassName() OGCAbstractObject$getClass() OGCAbstractObject$isFieldInheritedFrom() OGCAbstractObject$getNamespaceDefinition() OGCAbstractObject$encode() OGCAbstractObject$print() OGCAbstractObject$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-logger-","dir":"Reference","previous_headings":"","what":"Method logger()","title":"OGCAbstractObject — OGCAbstractObject","text":"basic logger function","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$logger(type, text)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"type type logs message. text log message text displayed","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-info-","dir":"Reference","previous_headings":"","what":"Method INFO()","title":"OGCAbstractObject — OGCAbstractObject","text":"basic INFO logger function","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$INFO(text)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"text log message text displayed","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-warn-","dir":"Reference","previous_headings":"","what":"Method WARN()","title":"OGCAbstractObject — OGCAbstractObject","text":"basic WARN logger function","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$WARN(text)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"text log message text displayed","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-error-","dir":"Reference","previous_headings":"","what":"Method ERROR()","title":"OGCAbstractObject — OGCAbstractObject","text":"basic ERROR logger function","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$ERROR(text)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"text log message text displayed","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OGCAbstractObject — OGCAbstractObject","text":"Initializes object extending OGCAbstractObject","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$new( xml = NULL, element = NULL, namespacePrefix = NULL, attrs = list(), defaults = list(), wrap = FALSE, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"xml object class XMLInternalNode-class XML element element name namespacePrefix namespace prefix XML encoding attrs list attributes defaults list default values wrap whether XML element wrapped XML encoding logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-getclassname-","dir":"Reference","previous_headings":"","what":"Method getClassName()","title":"OGCAbstractObject — OGCAbstractObject","text":"Get class name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$getClassName()"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OGCAbstractObject — OGCAbstractObject","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-getclass-","dir":"Reference","previous_headings":"","what":"Method getClass()","title":"OGCAbstractObject — OGCAbstractObject","text":"Get class","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$getClass()"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OGCAbstractObject — OGCAbstractObject","text":"object class R6Class","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-isfieldinheritedfrom-","dir":"Reference","previous_headings":"","what":"Method isFieldInheritedFrom()","title":"OGCAbstractObject — OGCAbstractObject","text":"Utility return parent class field defined","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$isFieldInheritedFrom(field)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-5","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"field field name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"OGCAbstractObject — OGCAbstractObject","text":"object class R6Class","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-getnamespacedefinition-","dir":"Reference","previous_headings":"","what":"Method getNamespaceDefinition()","title":"OGCAbstractObject — OGCAbstractObject","text":"Gets namespace definition","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$getNamespaceDefinition(recursive = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-6","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"recursive Get namespace recursively","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"OGCAbstractObject — OGCAbstractObject","text":"namespace definitions named list","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-encode-","dir":"Reference","previous_headings":"","what":"Method encode()","title":"OGCAbstractObject — OGCAbstractObject","text":"Encodes XML. addNS . Extra parameters related geometa objects: geometa_validate (TRUE default) geometa_inspire (FALSE default) can used perform ISO INSPIRE validation respectively. case object class geometa::INSPIREMetadataValidator, proper user API key, specified geometa_inspireValidator argument.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$encode( addNS = TRUE, geometa_validate = TRUE, geometa_inspire = FALSE, geometa_inspireValidator = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-7","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"addNS addNS controls addition XML namespaces geometa_validate Relates geometa object ISO validation. Default TRUE geometa_inspire Relates geometa object INSPIRE validation. Default FALSE geometa_inspireValidator Relates geometa object INSPIRE validation. Default NULL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"OGCAbstractObject — OGCAbstractObject","text":"object class XMLInternalNode-class XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-print-","dir":"Reference","previous_headings":"","what":"Method print()","title":"OGCAbstractObject — OGCAbstractObject","text":"Provides custom print output (tree) current class","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$print(..., depth = 1)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-8","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"... args depth class nesting depth","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OGCAbstractObject — OGCAbstractObject","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-11","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-9","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":null,"dir":"Reference","previous_headings":"","what":"OGCExpression — OGCExpression","title":"OGCExpression — OGCExpression","text":"OGCExpression OGCExpression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OGCExpression — OGCExpression","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OGCExpression — OGCExpression","text":"Object R6Class modelling OGC Expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OGCExpression — OGCExpression","text":"abstract class","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OGCExpression — OGCExpression","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OGCExpression — OGCExpression","text":"ows4R::OGCAbstractObject -> OGCExpression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OGCExpression — OGCExpression","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OGCExpression — OGCExpression","text":"OGCExpression$new() OGCExpression$setExprVersion() OGCExpression$getExprVersion() OGCExpression$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OGCExpression — OGCExpression","text":"Initializes object class OGCExpression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCExpression — OGCExpression","text":"","code":"OGCExpression$new( element, namespacePrefix, attrs = NULL, defaults = NULL, exprVersion = \"1.1.0\" )"},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCExpression — OGCExpression","text":"element element name namespacePrefix XML namespace prefix attrs attributes defaults default values exprVersion OGC version expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"method-setexprversion-","dir":"Reference","previous_headings":"","what":"Method setExprVersion()","title":"OGCExpression — OGCExpression","text":"Sets expression version. methods control proper XML namespace prefix setting","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCExpression — OGCExpression","text":"","code":"OGCExpression$setExprVersion(exprVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCExpression — OGCExpression","text":"exprVersion OGC expression version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"method-getexprversion-","dir":"Reference","previous_headings":"","what":"Method getExprVersion()","title":"OGCExpression — OGCExpression","text":"Gets expression version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCExpression — OGCExpression","text":"","code":"OGCExpression$getExprVersion()"},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OGCExpression — OGCExpression","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OGCExpression — OGCExpression","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCExpression — OGCExpression","text":"","code":"OGCExpression$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCExpression — OGCExpression","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":null,"dir":"Reference","previous_headings":"","what":"OGCFilter — OGCFilter","title":"OGCFilter — OGCFilter","text":"OGCFilter OGCFilter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OGCFilter — OGCFilter","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OGCFilter — OGCFilter","text":"Object R6Class modelling OGC Filter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OGCFilter — OGCFilter","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OGCFilter — OGCFilter","text":"ows4R::OGCAbstractObject -> OGCFilter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"OGCFilter — OGCFilter","text":"expr OGC expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OGCFilter — OGCFilter","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OGCFilter — OGCFilter","text":"OGCFilter$new() OGCFilter$setFilterVersion() OGCFilter$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OGCFilter — OGCFilter","text":"Initializes object class OGCFilter.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCFilter — OGCFilter","text":"","code":"OGCFilter$new(expr, filterVersion = \"1.1.0\")"},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCFilter — OGCFilter","text":"expr object class OGCExpression filterVersion OGC filter version. Default \"1.1.0\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"method-setfilterversion-","dir":"Reference","previous_headings":"","what":"Method setFilterVersion()","title":"OGCFilter — OGCFilter","text":"Sets OGC filter version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCFilter — OGCFilter","text":"","code":"OGCFilter$setFilterVersion(filterVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCFilter — OGCFilter","text":"filterVersion OGC filter version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OGCFilter — OGCFilter","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCFilter — OGCFilter","text":"","code":"OGCFilter$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCFilter — OGCFilter","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"OGCFilter — OGCFilter","text":"","code":"expr <- PropertyIsEqualTo$new(PropertyName = \"property\", Literal = \"value\") not <- Not$new(expr) not_xml <- not$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSBoundingBox — OWSBoundingBox","title":"OWSBoundingBox — OWSBoundingBox","text":"OWSBoundingBox OWSBoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSBoundingBox — OWSBoundingBox","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSBoundingBox — OWSBoundingBox","text":"Object R6Class modelling OGC Bounding Box","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSBoundingBox — OWSBoundingBox","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OWSBoundingBox — OWSBoundingBox","text":"ows4R::OGCAbstractObject -> OWSBoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"OWSBoundingBox — OWSBoundingBox","text":"attrs attributes associated XML LowerCorner lower corner coordinates UpperCorner upper corner coordinates","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSBoundingBox — OWSBoundingBox","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSBoundingBox — OWSBoundingBox","text":"OWSBoundingBox$new() OWSBoundingBox$decode() OWSBoundingBox$getBBOX() OWSBoundingBox$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSBoundingBox — OWSBoundingBox","text":"Initializes object class OWSBoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSBoundingBox — OWSBoundingBox","text":"","code":"OWSBoundingBox$new( xml = NULL, element = NULL, namespacePrefix = NULL, owsVersion, serviceVersion, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSBoundingBox — OWSBoundingBox","text":"xml object class XMLInternalNode-class initialize XML element element name namespacePrefix namespace prefix owsVersion OWS version serviceVersion service version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"OWSBoundingBox — OWSBoundingBox","text":"Decodes object class OWSBoundingBox XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSBoundingBox — OWSBoundingBox","text":"","code":"OWSBoundingBox$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSBoundingBox — OWSBoundingBox","text":"xml object class XMLInternalNode-class XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"method-getbbox-","dir":"Reference","previous_headings":"","what":"Method getBBOX()","title":"OWSBoundingBox — OWSBoundingBox","text":"Get BBOX object class bbox sf package","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSBoundingBox — OWSBoundingBox","text":"","code":"OWSBoundingBox$getBBOX()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSBoundingBox — OWSBoundingBox","text":"numeric vector length four, xmin, ymin, xmax ymax values","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSBoundingBox — OWSBoundingBox","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSBoundingBox — OWSBoundingBox","text":"","code":"OWSBoundingBox$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSBoundingBox — OWSBoundingBox","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSGetCapabilities — OWSCapabilities","title":"OWSGetCapabilities — OWSCapabilities","text":"OWSGetCapabilities OWSGetCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSGetCapabilities — OWSCapabilities","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSGetCapabilities — OWSCapabilities","text":"Object R6Class methods interfacing abstract OWS Get Capabilities document.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSGetCapabilities — OWSCapabilities","text":"abstract class used ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSGetCapabilities — OWSCapabilities","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OWSGetCapabilities — OWSCapabilities","text":"ows4R::OGCAbstractObject -> OWSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSGetCapabilities — OWSCapabilities","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSGetCapabilities — OWSCapabilities","text":"OWSCapabilities$new() OWSCapabilities$setClient() OWSCapabilities$getClient() OWSCapabilities$getUrl() OWSCapabilities$getService() OWSCapabilities$getServiceVersion() OWSCapabilities$getOWSVersion() OWSCapabilities$getRequest() OWSCapabilities$getServiceIdentification() OWSCapabilities$getServiceProvider() OWSCapabilities$getOperationsMetadata() OWSCapabilities$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSGetCapabilities — OWSCapabilities","text":"Initializes OWSCapabilities object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$new( element = NULL, namespacePrefix = NULL, url, service, owsVersion, serviceVersion, logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSGetCapabilities — OWSCapabilities","text":"element element namespacePrefix namespace prefix url url service service owsVersion OWS version serviceVersion service version logger logger type NULL, \"INFO\" \"DEBUG\" ... parameter pass OWSGetCapabilities service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-setclient-","dir":"Reference","previous_headings":"","what":"Method setClient()","title":"OWSGetCapabilities — OWSCapabilities","text":"Sets OGC client","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$setClient(client)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSGetCapabilities — OWSCapabilities","text":"client object extending OWSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getclient-","dir":"Reference","previous_headings":"","what":"Method getClient()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get client","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getClient()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSGetCapabilities — OWSCapabilities","text":"object extending OWSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-geturl-","dir":"Reference","previous_headings":"","what":"Method getUrl()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get URL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getUrl()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getservice-","dir":"Reference","previous_headings":"","what":"Method getService()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get service","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getService()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getserviceversion-","dir":"Reference","previous_headings":"","what":"Method getServiceVersion()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getServiceVersion()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getowsversion-","dir":"Reference","previous_headings":"","what":"Method getOWSVersion()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get OWS version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getOWSVersion()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getrequest-","dir":"Reference","previous_headings":"","what":"Method getRequest()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getRequest()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class OWSGetCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getserviceidentification-","dir":"Reference","previous_headings":"","what":"Method getServiceIdentification()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get service identification","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getServiceIdentification()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class OWSServiceIdentification","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getserviceprovider-","dir":"Reference","previous_headings":"","what":"Method getServiceProvider()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get service provider","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getServiceProvider()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class OWSServiceProvider","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getoperationsmetadata-","dir":"Reference","previous_headings":"","what":"Method getOperationsMetadata()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get service operations metadata","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getOperationsMetadata()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class OWSOperationsMetadata","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSGetCapabilities — OWSCapabilities","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-11","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSGetCapabilities — OWSCapabilities","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSClient — OWSClient","title":"OWSClient — OWSClient","text":"OWSClient OWSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSClient — OWSClient","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSClient — OWSClient","text":"Object R6Class methods interfacing Common OGC web-service.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSClient — OWSClient","text":"Abstract class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSClient — OWSClient","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OWSClient — OWSClient","text":"ows4R::OGCAbstractObject -> OWSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"OWSClient — OWSClient","text":"url Base url OWS service version version OWS service capabilities object giving OWS service capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSClient — OWSClient","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSClient — OWSClient","text":"OWSClient$new() OWSClient$getUrl() OWSClient$getVersion() OWSClient$getCapabilities() OWSClient$getUser() OWSClient$getPwd() OWSClient$getToken() OWSClient$getHeaders() OWSClient$getConfig() OWSClient$getCASUrl() OWSClient$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSClient — OWSClient","text":"method used instantiate OWSClient url OGC service. Authentication supported using basic auth (using user/pwd arguments), bearer token (using token argument), custom (using headers argument). default, logger argument set NULL (logger). argument accepts two possible values: INFO: print ows4R logs, DEBUG: print verbose logs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$new( url, service, serviceVersion, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), cas_url = NULL, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSClient — OWSClient","text":"url url service service name serviceVersion CSW service version user user pwd password token token headers headers config config cas_url Central Authentication Service (CAS) URL logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-geturl-","dir":"Reference","previous_headings":"","what":"Method getUrl()","title":"OWSClient — OWSClient","text":"Get URL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getUrl()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"url service, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-getversion-","dir":"Reference","previous_headings":"","what":"Method getVersion()","title":"OWSClient — OWSClient","text":"Get version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getVersion()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"version service, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-getcapabilities-","dir":"Reference","previous_headings":"","what":"Method getCapabilities()","title":"OWSClient — OWSClient","text":"Get capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"capabilities, object class OWSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-getuser-","dir":"Reference","previous_headings":"","what":"Method getUser()","title":"OWSClient — OWSClient","text":"Get user","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getUser()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"user, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-getpwd-","dir":"Reference","previous_headings":"","what":"Method getPwd()","title":"OWSClient — OWSClient","text":"Get password","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getPwd()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"password, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-gettoken-","dir":"Reference","previous_headings":"","what":"Method getToken()","title":"OWSClient — OWSClient","text":"Get token","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getToken()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"token, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-getheaders-","dir":"Reference","previous_headings":"","what":"Method getHeaders()","title":"OWSClient — OWSClient","text":"Get headers","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getHeaders()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"headers, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-getconfig-","dir":"Reference","previous_headings":"","what":"Method getConfig()","title":"OWSClient — OWSClient","text":"Get httr config","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getConfig()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"httr config, ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-getcasurl-","dir":"Reference","previous_headings":"","what":"Method getCASUrl()","title":"OWSClient — OWSClient","text":"Get CAS URL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getCASUrl()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-8","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"CAS URL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSClient — OWSClient","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSClient — OWSClient","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSCodeType — OWSCodeType","title":"OWSCodeType — OWSCodeType","text":"OWSCodeType OWSCodeType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSCodeType — OWSCodeType","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSCodeType — OWSCodeType","text":"Object R6Class modelling OWS CodeType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSCodeType — OWSCodeType","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OWSCodeType — OWSCodeType","text":"ows4R::OGCAbstractObject -> OWSCodeType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"OWSCodeType — OWSCodeType","text":"value code type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSCodeType — OWSCodeType","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSCodeType — OWSCodeType","text":"OWSCodeType$new() OWSCodeType$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSCodeType — OWSCodeType","text":"Initializes object class OWSCodeType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSCodeType — OWSCodeType","text":"","code":"OWSCodeType$new(xml = NULL, owsVersion = \"1.1\", value)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSCodeType — OWSCodeType","text":"xml object class XMLInternalNode-class XML owsVersion OWS version. Default \"1.1\" value code type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSCodeType — OWSCodeType","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSCodeType — OWSCodeType","text":"","code":"OWSCodeType$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSCodeType — OWSCodeType","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSException — OWSException","title":"OWSException — OWSException","text":"OWSException OWSException","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSException — OWSException","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSException — OWSException","text":"Object R6Class modelling OWS Service exception","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSException — OWSException","text":"Abstract class used ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSException — OWSException","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OWSException — OWSException","text":"ows4R::OGCAbstractObject -> OWSException","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"OWSException — OWSException","text":"ExceptionText exception text","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSException — OWSException","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSException — OWSException","text":"OWSException$new() OWSException$getLocator() OWSException$getCode() OWSException$getText() OWSException$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSException — OWSException","text":"Initializes object class OWSException","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSException — OWSException","text":"","code":"OWSException$new(xmlObj, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSException — OWSException","text":"xmlObj object class XMLInternalNode-class XML logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"method-getlocator-","dir":"Reference","previous_headings":"","what":"Method getLocator()","title":"OWSException — OWSException","text":"Get exception locator","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSException — OWSException","text":"","code":"OWSException$getLocator()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSException — OWSException","text":"exception locator, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"method-getcode-","dir":"Reference","previous_headings":"","what":"Method getCode()","title":"OWSException — OWSException","text":"Get exception code","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSException — OWSException","text":"","code":"OWSException$getCode()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSException — OWSException","text":"exception code, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"method-gettext-","dir":"Reference","previous_headings":"","what":"Method getText()","title":"OWSException — OWSException","text":"Get exception text explanation","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSException — OWSException","text":"","code":"OWSException$getText()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSException — OWSException","text":"exception text, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSException — OWSException","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSException — OWSException","text":"","code":"OWSException$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSException — OWSException","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSGetCapabilities — OWSGetCapabilities","title":"OWSGetCapabilities — OWSGetCapabilities","text":"OWSGetCapabilities OWSGetCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSGetCapabilities — OWSGetCapabilities","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSGetCapabilities — OWSGetCapabilities","text":"Object R6Class modelling GetCapabilities request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSGetCapabilities — OWSGetCapabilities","text":"Class used internally ows4R trigger OWS GetCapabilities request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSGetCapabilities — OWSGetCapabilities","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"OWSGetCapabilities — OWSGetCapabilities","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> OWSGetCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSGetCapabilities — OWSGetCapabilities","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSGetCapabilities — OWSGetCapabilities","text":"OWSGetCapabilities$new() OWSGetCapabilities$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSGetCapabilities — OWSGetCapabilities","text":"Initializes OWSGetCapabilities service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSGetCapabilities","text":"","code":"OWSGetCapabilities$new( element = NULL, namespacePrefix = NULL, url, service, version, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), ... )"},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSGetCapabilities — OWSGetCapabilities","text":"element element namespacePrefix namespace prefix url url service service name version service version user user pwd password token token headers headers config config ... parameter pass request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSGetCapabilities — OWSGetCapabilities","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSGetCapabilities","text":"","code":"OWSGetCapabilities$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSGetCapabilities — OWSGetCapabilities","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSHttpRequest — OWSHttpRequest","title":"OWSHttpRequest — OWSHttpRequest","text":"OWSHttpRequest OWSHttpRequest","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSHttpRequest — OWSHttpRequest","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSHttpRequest — OWSHttpRequest","text":"Object R6Class modelling generic OWS http request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSHttpRequest — OWSHttpRequest","text":"Abstract class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSHttpRequest — OWSHttpRequest","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OWSHttpRequest — OWSHttpRequest","text":"ows4R::OGCAbstractObject -> OWSHttpRequest","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSHttpRequest — OWSHttpRequest","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSHttpRequest — OWSHttpRequest","text":"OWSHttpRequest$new() OWSHttpRequest$execute() OWSHttpRequest$getCapabilities() OWSHttpRequest$getRequest() OWSHttpRequest$getRequestHeaders() OWSHttpRequest$getStatus() OWSHttpRequest$getResponse() OWSHttpRequest$getException() OWSHttpRequest$hasException() OWSHttpRequest$getResult() OWSHttpRequest$setResult() OWSHttpRequest$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSHttpRequest — OWSHttpRequest","text":"Initializes OWS HTTP request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$new( element, namespacePrefix, capabilities, op, type, url, request, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), namedParams = NULL, attrs = NULL, contentType = \"text/xml\", mimeType = \"text/xml\", logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSHttpRequest — OWSHttpRequest","text":"element element namespacePrefix namespace prefix capabilities object class extending OWSCapabilities op object class OWSOperation type type request, eg. GET, POST url url request request name user user pwd password token token headers headers config config namedParams named list attrs attributes contentType content type. Default value \"text/xml\" mimeType mime type. Default value \"text/xml\" logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-execute-","dir":"Reference","previous_headings":"","what":"Method execute()","title":"OWSHttpRequest — OWSHttpRequest","text":"Executes request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$execute()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-getcapabilities-","dir":"Reference","previous_headings":"","what":"Method getCapabilities()","title":"OWSHttpRequest — OWSHttpRequest","text":"Get capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"object class extending OWSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-getrequest-","dir":"Reference","previous_headings":"","what":"Method getRequest()","title":"OWSHttpRequest — OWSHttpRequest","text":"Get request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$getRequest()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-getrequestheaders-","dir":"Reference","previous_headings":"","what":"Method getRequestHeaders()","title":"OWSHttpRequest — OWSHttpRequest","text":"Get request headers","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$getRequestHeaders()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"request headers","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-getstatus-","dir":"Reference","previous_headings":"","what":"Method getStatus()","title":"OWSHttpRequest — OWSHttpRequest","text":"get status code","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$getStatus()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"request status code","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-getresponse-","dir":"Reference","previous_headings":"","what":"Method getResponse()","title":"OWSHttpRequest — OWSHttpRequest","text":"get request response","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$getResponse()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"request response","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-getexception-","dir":"Reference","previous_headings":"","what":"Method getException()","title":"OWSHttpRequest — OWSHttpRequest","text":"get request exception","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$getException()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"request exception","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-hasexception-","dir":"Reference","previous_headings":"","what":"Method hasException()","title":"OWSHttpRequest — OWSHttpRequest","text":"Indicates exception","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$hasException()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"TRUE exception, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-getresult-","dir":"Reference","previous_headings":"","what":"Method getResult()","title":"OWSHttpRequest — OWSHttpRequest","text":"Get result TRUE request successful, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$getResult()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"result, object class logical","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-setresult-","dir":"Reference","previous_headings":"","what":"Method setResult()","title":"OWSHttpRequest — OWSHttpRequest","text":"Set result","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$setResult(result)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSHttpRequest — OWSHttpRequest","text":"result object class logical","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSHttpRequest — OWSHttpRequest","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-11","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSHttpRequest — OWSHttpRequest","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSNamespace — OWSNamespace","title":"OWSNamespace — OWSNamespace","text":"OWSNamespace OWSNamespace","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSNamespace — OWSNamespace","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSNamespace — OWSNamespace","text":"Object R6Class modelling OWS Namespace","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSNamespace — OWSNamespace","text":"class used internally ows4R specifying XML namespaces","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSNamespace — OWSNamespace","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"OWSNamespace — OWSNamespace","text":"id namespace id uri namespace uri","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSNamespace — OWSNamespace","text":"OWSNamespace$new() OWSNamespace$getDefinition() OWSNamespace$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSNamespace — OWSNamespace","text":"Initializes OWSNamespace","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSNamespace — OWSNamespace","text":"","code":"OWSNamespace$new(id, uri)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSNamespace — OWSNamespace","text":"id id uri uri","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"method-getdefinition-","dir":"Reference","previous_headings":"","what":"Method getDefinition()","title":"OWSNamespace — OWSNamespace","text":"Get namespace definition","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSNamespace — OWSNamespace","text":"","code":"OWSNamespace$getDefinition()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSNamespace — OWSNamespace","text":"named list id uri","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSNamespace — OWSNamespace","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSNamespace — OWSNamespace","text":"","code":"OWSNamespace$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSNamespace — OWSNamespace","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSOperation — OWSOperation","title":"OWSOperation — OWSOperation","text":"OWSOperation OWSOperation","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSOperation — OWSOperation","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSOperation — OWSOperation","text":"Object R6Class modelling OGC Operation","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSOperation — OWSOperation","text":"Internal class used internally ows4R reading capabilities documents","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSOperation — OWSOperation","text":"Emmanuel Blondel ","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSOperation — OWSOperation","text":"OWSOperation$new() OWSOperation$getName() OWSOperation$getParameters() OWSOperation$getParameter() OWSOperation$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSOperation — OWSOperation","text":"Initializes object class OWSOperation.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperation — OWSOperation","text":"","code":"OWSOperation$new(xmlObj, owsVersion, serviceVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSOperation — OWSOperation","text":"xmlObj object class XMLInternalNode-class XML owsVersion OWS version serviceVersion service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"method-getname-","dir":"Reference","previous_headings":"","what":"Method getName()","title":"OWSOperation — OWSOperation","text":"Get operation name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperation — OWSOperation","text":"","code":"OWSOperation$getName()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSOperation — OWSOperation","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"method-getparameters-","dir":"Reference","previous_headings":"","what":"Method getParameters()","title":"OWSOperation — OWSOperation","text":"Get parameters","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperation — OWSOperation","text":"","code":"OWSOperation$getParameters()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSOperation — OWSOperation","text":"parameters","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"method-getparameter-","dir":"Reference","previous_headings":"","what":"Method getParameter()","title":"OWSOperation — OWSOperation","text":"Get parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperation — OWSOperation","text":"","code":"OWSOperation$getParameter(name)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSOperation — OWSOperation","text":"name name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSOperation — OWSOperation","text":"parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSOperation — OWSOperation","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperation — OWSOperation","text":"","code":"OWSOperation$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSOperation — OWSOperation","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSOperationsMetadata — OWSOperationsMetadata","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"OWSOperationsMetadata OWSOperationsMetadata","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"Object R6Class modelling OGC Operations Metadata","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"Abstract class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"Emmanuel Blondel ","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"OWSOperationsMetadata$new() OWSOperationsMetadata$getOperations() OWSOperationsMetadata$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"Initializes OWSOperationsMetadata object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"","code":"OWSOperationsMetadata$new(xmlObj, owsVersion, serviceVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"xmlObj object class XMLInternalNode-class XML owsVersion OWS version serviceVersion service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"method-getoperations-","dir":"Reference","previous_headings":"","what":"Method getOperations()","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"Get operations","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"","code":"OWSOperationsMetadata$getOperations()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"list OWSOperation","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"","code":"OWSOperationsMetadata$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSRequest — OWSRequest","title":"OWSRequest — OWSRequest","text":"OWSRequest OWSRequest","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSRequest — OWSRequest","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSRequest — OWSRequest","text":"Object R6Class modelling OWS Service Capability Request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSRequest — OWSRequest","text":"Abstract class used ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSRequest — OWSRequest","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OWSRequest — OWSRequest","text":"ows4R::OGCAbstractObject -> OWSRequest","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSRequest — OWSRequest","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSRequest — OWSRequest","text":"OWSRequest$new() OWSRequest$getName() OWSRequest$getFormats() OWSRequest$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSRequest — OWSRequest","text":"Initializes object class OWSRequest","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSRequest — OWSRequest","text":"","code":"OWSRequest$new(xmlObj, capabilities, version, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSRequest — OWSRequest","text":"xmlObj object class XMLInternalNode-class XML capabilities object class extending OWSCapabilities version version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"method-getname-","dir":"Reference","previous_headings":"","what":"Method getName()","title":"OWSRequest — OWSRequest","text":"Get request name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSRequest — OWSRequest","text":"","code":"OWSRequest$getName()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSRequest — OWSRequest","text":"name, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"method-getformats-","dir":"Reference","previous_headings":"","what":"Method getFormats()","title":"OWSRequest — OWSRequest","text":"Get request formats","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSRequest — OWSRequest","text":"","code":"OWSRequest$getFormats()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSRequest — OWSRequest","text":"formats, object (vector) class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSRequest — OWSRequest","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSRequest — OWSRequest","text":"","code":"OWSRequest$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSRequest — OWSRequest","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSServiceIdentification — OWSServiceIdentification","title":"OWSServiceIdentification — OWSServiceIdentification","text":"OWSServiceIdentification OWSServiceIdentification","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSServiceIdentification — OWSServiceIdentification","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Object R6Class modelling OGC Service Identification","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Abstract class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Emmanuel Blondel ","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSServiceIdentification — OWSServiceIdentification","text":"OWSServiceIdentification$new() OWSServiceIdentification$getName() OWSServiceIdentification$getTitle() OWSServiceIdentification$getAbstract() OWSServiceIdentification$getKeywords() OWSServiceIdentification$getOnlineResource() OWSServiceIdentification$getServiceType() OWSServiceIdentification$getServiceTypeVersion() OWSServiceIdentification$getFees() OWSServiceIdentification$getAccessConstraints() OWSServiceIdentification$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Initializes object class OWSServiceIdentification","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$new(xmlObj, owsVersion, serviceVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSServiceIdentification — OWSServiceIdentification","text":"xmlObj object class XMLInternalNode-class XML owsVersion OWS version serviceVersion service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getname-","dir":"Reference","previous_headings":"","what":"Method getName()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getName()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"name, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-gettitle-","dir":"Reference","previous_headings":"","what":"Method getTitle()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - title","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getTitle()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"title, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getabstract-","dir":"Reference","previous_headings":"","what":"Method getAbstract()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - abstract","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getAbstract()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"abstract, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getkeywords-","dir":"Reference","previous_headings":"","what":"Method getKeywords()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - keywords","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getKeywords()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"keywords, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getonlineresource-","dir":"Reference","previous_headings":"","what":"Method getOnlineResource()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - online resource","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getOnlineResource()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"online resource, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getservicetype-","dir":"Reference","previous_headings":"","what":"Method getServiceType()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - service type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getServiceType()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"service type, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getservicetypeversion-","dir":"Reference","previous_headings":"","what":"Method getServiceTypeVersion()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - service type version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getServiceTypeVersion()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"service type version, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getfees-","dir":"Reference","previous_headings":"","what":"Method getFees()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - fees","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getFees()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"fees, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getaccessconstraints-","dir":"Reference","previous_headings":"","what":"Method getAccessConstraints()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - access constraints","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getAccessConstraints()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-8","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"access constraints, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSServiceIdentification — OWSServiceIdentification","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSServiceProvider — OWSServiceProvider","title":"OWSServiceProvider — OWSServiceProvider","text":"OWSServiceProvider OWSServiceProvider","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSServiceProvider — OWSServiceProvider","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSServiceProvider — OWSServiceProvider","text":"Object R6Class modelling OGC Service Provider","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSServiceProvider — OWSServiceProvider","text":"Abstract class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSServiceProvider — OWSServiceProvider","text":"Emmanuel Blondel ","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSServiceProvider — OWSServiceProvider","text":"OWSServiceProvider$new() OWSServiceProvider$getProviderName() OWSServiceProvider$getProviderSite() OWSServiceProvider$getServiceContact() OWSServiceProvider$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSServiceProvider — OWSServiceProvider","text":"Initializes object class OWSServiceProvider","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceProvider — OWSServiceProvider","text":"","code":"OWSServiceProvider$new(xmlObj, owsVersion, serviceVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSServiceProvider — OWSServiceProvider","text":"xmlObj object class XMLInternalNode-class XML owsVersion OWS version serviceVersion service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"method-getprovidername-","dir":"Reference","previous_headings":"","what":"Method getProviderName()","title":"OWSServiceProvider — OWSServiceProvider","text":"Get provider name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceProvider — OWSServiceProvider","text":"","code":"OWSServiceProvider$getProviderName()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSServiceProvider — OWSServiceProvider","text":"provider name, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"method-getprovidersite-","dir":"Reference","previous_headings":"","what":"Method getProviderSite()","title":"OWSServiceProvider — OWSServiceProvider","text":"Get provider site","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceProvider — OWSServiceProvider","text":"","code":"OWSServiceProvider$getProviderSite()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSServiceProvider — OWSServiceProvider","text":"provider site, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"method-getservicecontact-","dir":"Reference","previous_headings":"","what":"Method getServiceContact()","title":"OWSServiceProvider — OWSServiceProvider","text":"Get provider contact","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceProvider — OWSServiceProvider","text":"","code":"OWSServiceProvider$getServiceContact()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSServiceProvider — OWSServiceProvider","text":"provider contact, object class ISOResponsibleParty geometa","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSServiceProvider — OWSServiceProvider","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceProvider — OWSServiceProvider","text":"","code":"OWSServiceProvider$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSServiceProvider — OWSServiceProvider","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSUtils.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSUtils — OWSUtils","title":"OWSUtils — OWSUtils","text":"OWSUtils","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSUtils.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSUtils — OWSUtils","text":"","code":"OWSUtils"},{"path":"https://eblondel.github.io/ows4R/reference/OWSUtils.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSUtils — OWSUtils","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSUtils.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSUtils — OWSUtils","text":"set OWS Utilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSUtils.html","id":"static-methods","dir":"Reference","previous_headings":"","what":"Static methods","title":"OWSUtils — OWSUtils","text":"getNamespaces() Get namespaces associated given XML object findNamespace(namespaces, id, uri) Finds namespace id URI toBBOX(xmin, xmax, ymin, ymax) Creates bbox matrix min/max x/y coordinates findP4s(srsName, morphToESRI) Finds PROJ4 string definition given srsName toCRS(srsName) Converts srsName CRS object toEPSG(crs) Get EPSG code CRS object getAspectRatio(bbox) Get aspect ratio given bbox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSUtils.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSUtils — OWSUtils","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSUtils.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"OWSUtils — OWSUtils","text":"","code":"#toBBOX bbox <- OWSUtils$toBBOX(-180,-90,180,90) #toCRS crs <- OWSUtils$toCRS(\"EPSG:4326\")"},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"OWSWGS84BoundingBox OWSWGS84BoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"Object R6Class modelling OGC WS84 BoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"Class used internally geometa","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"ows4R::OGCAbstractObject -> ows4R::OWSBoundingBox -> OWSWGS84BoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSBoundingBox$decode() ows4R::OWSBoundingBox$getBBOX()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"OWSWGS84BoundingBox$new() OWSWGS84BoundingBox$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"Initializes object class OWSBoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"","code":"OWSWGS84BoundingBox$new(xml = NULL, owsVersion, serviceVersion, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"xml object class XMLInternalNode-class initialize XML owsVersion OWS version serviceVersion service version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"","code":"OWSWGS84BoundingBox$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"deep Whether make deep clone.","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"Or — Or","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Or — Or","text":"Object R6Class modelling operator","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Or — Or","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"Or — Or","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryLogicOpType -> ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"Or — Or","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::BinaryLogicOpType$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"Or — Or","text":"$new() $clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"Or — Or","text":"Initializes expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Or — Or","text":"","code":"Or$new(...)"},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Or — Or","text":"... list objects class OGCExpression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"Or — Or","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"Or — Or","text":"","code":"Or$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"Or — Or","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Or — Or","text":"","code":"expr1 <- PropertyIsEqualTo$new(PropertyName = \"property1\", Literal = \"value1\") expr2 <- PropertyIsEqualTo$new(PropertyName = \"property2\", Literal = \"value2\") or <- Or$new(expr1,expr2) or_xml <- or$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsBetween — PropertyIsBetween","title":"PropertyIsBetween — PropertyIsBetween","text":"PropertyIsBetween PropertyIsBetween","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsBetween — PropertyIsBetween","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsBetween — PropertyIsBetween","text":"Object R6Class modelling PropertyIsBetween","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsBetween — PropertyIsBetween","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsBetween — PropertyIsBetween","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> PropertyIsBetween","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"PropertyIsBetween — PropertyIsBetween","text":"PropertyName property name field XML encoding lower lower value upper upper value","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsBetween — PropertyIsBetween","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsBetween — PropertyIsBetween","text":"PropertyIsBetween$new() PropertyIsBetween$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsBetween — PropertyIsBetween","text":"Initializes object extending PropertyIsLike","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsBetween — PropertyIsBetween","text":"","code":"PropertyIsBetween$new(PropertyName, lower, upper)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsBetween — PropertyIsBetween","text":"PropertyName property name lower lower value upper upper value","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsBetween — PropertyIsBetween","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsBetween — PropertyIsBetween","text":"","code":"PropertyIsBetween$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsBetween — PropertyIsBetween","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsBetween — PropertyIsBetween","text":"","code":"expr <- PropertyIsBetween$new(PropertyName = \"property\", lower = 1, upper = 10) expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsEqualTo — PropertyIsEqualTo","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"PropertyIsEqualTo PropertyIsEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"Object R6Class modelling PropertyIsEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryComparisonOpType -> PropertyIsEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"PropertyIsEqualTo$new() PropertyIsEqualTo$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"Initializes object extending PropertyIsEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"","code":"PropertyIsEqualTo$new(PropertyName, Literal, matchCase = NA)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"PropertyName property name Literal literal matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"","code":"PropertyIsEqualTo$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"","code":"expr <- PropertyIsEqualTo$new(PropertyName = \"property\", Literal = \"value\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsGreaterThan — PropertyIsGreaterThan","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"PropertyIsGreaterThan PropertyIsGreaterThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"Object R6Class modelling PropertyIsGreaterThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryComparisonOpType -> PropertyIsGreaterThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"PropertyIsGreaterThan$new() PropertyIsGreaterThan$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"Initializes object extending PropertyIsGreaterThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"","code":"PropertyIsGreaterThan$new(PropertyName, Literal, matchCase = NA)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"PropertyName property name Literal literal matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"","code":"PropertyIsGreaterThan$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"","code":"expr <- PropertyIsGreaterThan$new(PropertyName = \"property\", Literal = \"value\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"PropertyIsGreaterThanOrEqualTo PropertyIsGreaterThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"Object R6Class modelling PropertyIsGreaterThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryComparisonOpType -> PropertyIsGreaterThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"PropertyIsGreaterThanOrEqualTo$new() PropertyIsGreaterThanOrEqualTo$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"Initializes object extending PropertyIsGreaterThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"","code":"PropertyIsGreaterThanOrEqualTo$new(PropertyName, Literal, matchCase = NA)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"PropertyName property name Literal literal matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"","code":"PropertyIsGreaterThanOrEqualTo$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"","code":"expr <- PropertyIsGreaterThanOrEqualTo$new(PropertyName = \"property\", Literal = \"value\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsLessThan — PropertyIsLessThan","title":"PropertyIsLessThan — PropertyIsLessThan","text":"PropertyIsLessThan PropertyIsLessThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsLessThan — PropertyIsLessThan","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsLessThan — PropertyIsLessThan","text":"Object R6Class modelling PropertyIsLessThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsLessThan — PropertyIsLessThan","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsLessThan — PropertyIsLessThan","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryComparisonOpType -> PropertyIsLessThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsLessThan — PropertyIsLessThan","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsLessThan — PropertyIsLessThan","text":"PropertyIsLessThan$new() PropertyIsLessThan$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsLessThan — PropertyIsLessThan","text":"Initializes object extending PropertyIsLessThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsLessThan — PropertyIsLessThan","text":"","code":"PropertyIsLessThan$new(PropertyName, Literal, matchCase = NA)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsLessThan — PropertyIsLessThan","text":"PropertyName property name Literal literal matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsLessThan — PropertyIsLessThan","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsLessThan — PropertyIsLessThan","text":"","code":"PropertyIsLessThan$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsLessThan — PropertyIsLessThan","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsLessThan — PropertyIsLessThan","text":"","code":"expr <- PropertyIsLessThan$new(PropertyName = \"property\", Literal = \"value\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"PropertyIsLesserThanOrEqualTo PropertyIsLesserThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"Object R6Class modelling PropertyIsLesserThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryComparisonOpType -> PropertyIsLessThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"PropertyIsLessThanOrEqualTo$new() PropertyIsLessThanOrEqualTo$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"Initializes object extending PropertyIsLessThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"","code":"PropertyIsLessThanOrEqualTo$new(PropertyName, Literal, matchCase = NA)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"PropertyName property name Literal literal matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"","code":"PropertyIsLessThanOrEqualTo$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"","code":"expr <- PropertyIsLessThanOrEqualTo$new(PropertyName = \"property\", Literal = \"value\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsLike — PropertyIsLike","title":"PropertyIsLike — PropertyIsLike","text":"PropertyIsLike PropertyIsLike","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsLike — PropertyIsLike","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsLike — PropertyIsLike","text":"Object R6Class modelling PropertyIsLike","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsLike — PropertyIsLike","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsLike — PropertyIsLike","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> PropertyIsLike","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"PropertyIsLike — PropertyIsLike","text":"PropertyName property name field XML encoding Literal literal field XML encoding attrs attributes XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsLike — PropertyIsLike","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsLike — PropertyIsLike","text":"PropertyIsLike$new() PropertyIsLike$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsLike — PropertyIsLike","text":"Initializes object extending PropertyIsLike","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsLike — PropertyIsLike","text":"","code":"PropertyIsLike$new( PropertyName, Literal, escapeChar = \"\\\\\", singleChar = \"_\", wildCard = \"%\", matchCase = NA )"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsLike — PropertyIsLike","text":"PropertyName property name Literal literal escapeChar escape character. Default \"\\\" singleChar single character. Default \"_\" wildCard wildcard matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsLike — PropertyIsLike","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsLike — PropertyIsLike","text":"","code":"PropertyIsLike$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsLike — PropertyIsLike","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsLike — PropertyIsLike","text":"","code":"expr <- PropertyIsLike$new(PropertyName = \"property\", Literal = \"value\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"PropertyIsNotEqualTo PropertyIsNotEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"Object R6Class modelling PropertyIsNotEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryComparisonOpType -> PropertyIsNotEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"PropertyIsNotEqualTo$new() PropertyIsNotEqualTo$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"Initializes object extending PropertyIsNotEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"","code":"PropertyIsNotEqualTo$new(PropertyName, Literal, matchCase = NA)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"PropertyName property name Literal literal matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"","code":"PropertyIsNotEqualTo$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"","code":"expr <- PropertyIsNotEqualTo$new(PropertyName = \"property\", Literal = \"value\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsNull — PropertyIsNull","title":"PropertyIsNull — PropertyIsNull","text":"PropertyIsNull PropertyIsNull","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsNull — PropertyIsNull","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsNull — PropertyIsNull","text":"Object R6Class modelling PropertyIsNull","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsNull — PropertyIsNull","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsNull — PropertyIsNull","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> PropertyIsNull","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"PropertyIsNull — PropertyIsNull","text":"PropertyName property name field XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsNull — PropertyIsNull","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsNull — PropertyIsNull","text":"PropertyIsNull$new() PropertyIsNull$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsNull — PropertyIsNull","text":"Initializes object extending PropertyIsLike","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsNull — PropertyIsNull","text":"","code":"PropertyIsNull$new(PropertyName)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsNull — PropertyIsNull","text":"PropertyName property name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsNull — PropertyIsNull","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsNull — PropertyIsNull","text":"","code":"PropertyIsNull$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsNull — PropertyIsNull","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsNull — PropertyIsNull","text":"","code":"expr <- PropertyIsNull$new(PropertyName = \"property\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":null,"dir":"Reference","previous_headings":"","what":"UnaryLogicOpType — UnaryLogicOpType","title":"UnaryLogicOpType — UnaryLogicOpType","text":"UnaryLogicOpType UnaryLogicOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"UnaryLogicOpType — UnaryLogicOpType","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"UnaryLogicOpType — UnaryLogicOpType","text":"Object R6Class modelling UnaryLogicOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"UnaryLogicOpType — UnaryLogicOpType","text":"abstract super class unary logical operation classes","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"UnaryLogicOpType — UnaryLogicOpType","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> UnaryLogicOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"UnaryLogicOpType — UnaryLogicOpType","text":"operations list OGC expressions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"UnaryLogicOpType — UnaryLogicOpType","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"UnaryLogicOpType — UnaryLogicOpType","text":"UnaryLogicOpType$new() UnaryLogicOpType$setExprVersion() UnaryLogicOpType$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"UnaryLogicOpType — UnaryLogicOpType","text":"Initializes UnaryLogicOpType expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"UnaryLogicOpType — UnaryLogicOpType","text":"","code":"UnaryLogicOpType$new(..., element, namespacePrefix, exprVersion = \"1.1.0\")"},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"UnaryLogicOpType — UnaryLogicOpType","text":"... list objects class OGCExpression element element namespacePrefix namespacePrefix exprVersion OGC expression version. Default \"1.1.0\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"method-setexprversion-","dir":"Reference","previous_headings":"","what":"Method setExprVersion()","title":"UnaryLogicOpType — UnaryLogicOpType","text":"Sets expression version. methods control expression versions set operations specified expression.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"UnaryLogicOpType — UnaryLogicOpType","text":"","code":"UnaryLogicOpType$setExprVersion(exprVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"UnaryLogicOpType — UnaryLogicOpType","text":"exprVersion OGC expression version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"UnaryLogicOpType — UnaryLogicOpType","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"UnaryLogicOpType — UnaryLogicOpType","text":"","code":"UnaryLogicOpType$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"UnaryLogicOpType — UnaryLogicOpType","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCapabilities — WCSCapabilities","title":"WCSCapabilities — WCSCapabilities","text":"WCSCapabilities WCSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSCapabilities — WCSCapabilities","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCapabilities — WCSCapabilities","text":"Object R6Class methods interfacing OGC Web Coverage Service Get Capabilities document.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCapabilities — WCSCapabilities","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WCSCapabilities — WCSCapabilities","text":"ows4R::OGCAbstractObject -> ows4R::OWSCapabilities -> WCSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSCapabilities — WCSCapabilities","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSCapabilities$getClient() ows4R::OWSCapabilities$getOWSVersion() ows4R::OWSCapabilities$getOperationsMetadata() ows4R::OWSCapabilities$getRequest() ows4R::OWSCapabilities$getService() ows4R::OWSCapabilities$getServiceIdentification() ows4R::OWSCapabilities$getServiceProvider() ows4R::OWSCapabilities$getServiceVersion() ows4R::OWSCapabilities$getUrl() ows4R::OWSCapabilities$setClient()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSCapabilities — WCSCapabilities","text":"WCSCapabilities$new() WCSCapabilities$getCoverageSummaries() WCSCapabilities$findCoverageSummaryById() WCSCapabilities$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSCapabilities — WCSCapabilities","text":"Initializes WCSCapabilities object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCapabilities — WCSCapabilities","text":"","code":"WCSCapabilities$new(url, version, client = NULL, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCapabilities — WCSCapabilities","text":"url url version version client object class WCSClient logger logger type NULL, \"INFO\" \"DEBUG\" ... parameter pass OWSGetCapabilities service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"method-getcoveragesummaries-","dir":"Reference","previous_headings":"","what":"Method getCoverageSummaries()","title":"WCSCapabilities — WCSCapabilities","text":"Get coverage summaries","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCapabilities — WCSCapabilities","text":"","code":"WCSCapabilities$getCoverageSummaries()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCapabilities — WCSCapabilities","text":"list WCSCoverageSummary objects","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"method-findcoveragesummarybyid-","dir":"Reference","previous_headings":"","what":"Method findCoverageSummaryById()","title":"WCSCapabilities — WCSCapabilities","text":"Finds coverage name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCapabilities — WCSCapabilities","text":"","code":"WCSCapabilities$findCoverageSummaryById(expr, exact = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCapabilities — WCSCapabilities","text":"expr expr exact exact matching? Default TRUE","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSCapabilities — WCSCapabilities","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCapabilities — WCSCapabilities","text":"","code":"WCSCapabilities$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCapabilities — WCSCapabilities","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"WCSCapabilities — WCSCapabilities","text":"","code":"# \\dontrun{ WCSCapabilities$new(\"http://localhost:8080/geoserver/wcs\", serviceVersion = \"2.0.1\") #> Error in initialize(...): argument \"version\" is missing, with no default # }"},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSClient — WCSClient","title":"WCSClient — WCSClient","text":"WCSClient WCSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSClient — WCSClient","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSClient — WCSClient","text":"Object R6Class methods interfacing OGC Web Coverage Service.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSClient — WCSClient","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WCSClient — WCSClient","text":"ows4R::OGCAbstractObject -> ows4R::OWSClient -> WCSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSClient — WCSClient","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSClient$getCASUrl() ows4R::OWSClient$getConfig() ows4R::OWSClient$getHeaders() ows4R::OWSClient$getPwd() ows4R::OWSClient$getToken() ows4R::OWSClient$getUrl() ows4R::OWSClient$getUser() ows4R::OWSClient$getVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSClient — WCSClient","text":"WCSClient$new() WCSClient$getCapabilities() WCSClient$reloadCapabilities() WCSClient$describeCoverage() WCSClient$getCoverage() WCSClient$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSClient — WCSClient","text":"method used instantiate WCSClient url OGC service. Authentication supported using basic auth (using user/pwd arguments), bearer token (using token argument), custom (using headers argument). default, logger argument set NULL (logger). argument accepts two possible values: INFO: print ows4R logs, DEBUG: print verbose logs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSClient — WCSClient","text":"","code":"WCSClient$new( url, serviceVersion = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), cas_url = NULL, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSClient — WCSClient","text":"url url serviceVersion WFS service version user user pwd password token token headers headers config config cas_url Central Authentication Service (CAS) URL logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"method-getcapabilities-","dir":"Reference","previous_headings":"","what":"Method getCapabilities()","title":"WCSClient — WCSClient","text":"Get WCS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSClient — WCSClient","text":"","code":"WCSClient$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSClient — WCSClient","text":"object class WCSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"method-reloadcapabilities-","dir":"Reference","previous_headings":"","what":"Method reloadCapabilities()","title":"WCSClient — WCSClient","text":"Reloads WCS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSClient — WCSClient","text":"","code":"WCSClient$reloadCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"method-describecoverage-","dir":"Reference","previous_headings":"","what":"Method describeCoverage()","title":"WCSClient — WCSClient","text":"Describes coverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSClient — WCSClient","text":"","code":"WCSClient$describeCoverage(identifier)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSClient — WCSClient","text":"identifier identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSClient — WCSClient","text":"object class WCSCoverageDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"method-getcoverage-","dir":"Reference","previous_headings":"","what":"Method getCoverage()","title":"WCSClient — WCSClient","text":"Get coverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSClient — WCSClient","text":"","code":"WCSClient$getCoverage( identifier, bbox = NULL, crs = NULL, time = NULL, format = NULL, rangesubset = NULL, gridbaseCRS = NULL, gridtype = NULL, gridCS = NULL, gridorigin = NULL, gridoffsets = NULL, method = \"GET\", filename = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSClient — WCSClient","text":"identifier Coverage identifier. Object class character bbox bbox. Object class matrix. Default NULL. eg. OWSUtils$toBBOX(-180,180,-90,90) crs crs. Object class character giving CRS identifier (EPSG prefixed code, URI/URN). Default NULL. time time. Object class character representing time instant/period. Default NULL format format. Object class character Default GeoTIFF, coded differently depending WCS version. rangesubset rangesubset. Default NULL gridbaseCRS grid base CRS. Default NULL gridtype grid type. Default NULL gridCS grid CS. Default NULL gridorigin grid origin. Default NULL gridoffsets grid offsets. Default NULL method method get coverage, either 'GET' 'POST' (experimental - development). Object class character. filename filename. Object class character. Optional filename download coverage ... argument WCSGetCoverage elevation elevation. Object class character numeric. Default NULL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSClient — WCSClient","text":"object class SpatRaster terra","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSClient — WCSClient","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSClient — WCSClient","text":"","code":"WCSClient$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSClient — WCSClient","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"WCSClient — WCSClient","text":"","code":"# \\dontrun{ wcs <- WCSClient$new(\"http://localhost:8080/geoserver/wcs\", serviceVersion = \"2.0.1\") #> Error in curl::curl_fetch_memory(url, handle = handle): Failed to connect to localhost port 8080 after 0 ms: Connection refused # }"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCoverage — WCSCoverage","title":"WCSCoverage — WCSCoverage","text":"WCSCoverage WCSCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSCoverage — WCSCoverage","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCoverage — WCSCoverage","text":"Object R6Class modelling WCS coverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSCoverage — WCSCoverage","text":"Class used internally ows4R.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCoverage — WCSCoverage","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WCSCoverage — WCSCoverage","text":"ows4R::OGCAbstractObject -> WCSCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSCoverage — WCSCoverage","text":"description description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSCoverage — WCSCoverage","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSCoverage — WCSCoverage","text":"WCSCoverage$new() WCSCoverage$getIdentifier() WCSCoverage$getTitle() WCSCoverage$getAbstract() WCSCoverage$getReference() WCSCoverage$getData() WCSCoverage$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSCoverage — WCSCoverage","text":"Initializes object class WCSCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverage — WCSCoverage","text":"","code":"WCSCoverage$new(xmlObj, serviceVersion, owsVersion, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverage — WCSCoverage","text":"xmlObj object class XMLInternalNode-class serviceVersion WCS service version owsVersion OWS version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"method-getidentifier-","dir":"Reference","previous_headings":"","what":"Method getIdentifier()","title":"WCSCoverage — WCSCoverage","text":"Get identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverage — WCSCoverage","text":"","code":"WCSCoverage$getIdentifier()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverage — WCSCoverage","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"method-gettitle-","dir":"Reference","previous_headings":"","what":"Method getTitle()","title":"WCSCoverage — WCSCoverage","text":"Get title","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverage — WCSCoverage","text":"","code":"WCSCoverage$getTitle()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverage — WCSCoverage","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"method-getabstract-","dir":"Reference","previous_headings":"","what":"Method getAbstract()","title":"WCSCoverage — WCSCoverage","text":"Get abstract","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverage — WCSCoverage","text":"","code":"WCSCoverage$getAbstract()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverage — WCSCoverage","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"method-getreference-","dir":"Reference","previous_headings":"","what":"Method getReference()","title":"WCSCoverage — WCSCoverage","text":"Get reference","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverage — WCSCoverage","text":"","code":"WCSCoverage$getReference()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverage — WCSCoverage","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"method-getdata-","dir":"Reference","previous_headings":"","what":"Method getData()","title":"WCSCoverage — WCSCoverage","text":"Get data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverage — WCSCoverage","text":"","code":"WCSCoverage$getData(filename = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverage — WCSCoverage","text":"filename filename. Optional file name download coverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverage — WCSCoverage","text":"object class SpatRaster terra","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSCoverage — WCSCoverage","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverage — WCSCoverage","text":"","code":"WCSCoverage$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverage — WCSCoverage","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCoverageDescription — WCSCoverageDescription","title":"WCSCoverageDescription — WCSCoverageDescription","text":"WCSCoverageDescription WCSCoverageDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSCoverageDescription — WCSCoverageDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCoverageDescription — WCSCoverageDescription","text":"Object R6Class modelling WCS coverage summary","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSCoverageDescription — WCSCoverageDescription","text":"Class used internally ows4R.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCoverageDescription — WCSCoverageDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WCSCoverageDescription — WCSCoverageDescription","text":"geometa::geometaLogger -> geometa::ISOAbstractObject -> geometa::GMLAbstractObject -> geometa::GMLAbstractFeature -> geometa::GMLAbstractCoverage -> geometa::GMLCOVAbstractCoverage -> WCSCoverageDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSCoverageDescription — WCSCoverageDescription","text":"CoverageId coverage ID SupportedCRS supported CRS SupportedFormat supported Format Domain domain Range range ServiceParameters service parmaeters","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSCoverageDescription — WCSCoverageDescription","text":"geometa::geometaLogger$ERROR() geometa::geometaLogger$INFO() geometa::geometaLogger$WARN() geometa::ISOAbstractObject$addFieldAttrs() geometa::ISOAbstractObject$addListElement() geometa::ISOAbstractObject$contains() geometa::ISOAbstractObject$createLocalisedProperty() geometa::ISOAbstractObject$decode() geometa::ISOAbstractObject$delListElement() geometa::ISOAbstractObject$encode() geometa::ISOAbstractObject$getClass() geometa::ISOAbstractObject$getClassName() geometa::ISOAbstractObject$getNamespaceDefinition() geometa::ISOAbstractObject$isDocument() geometa::ISOAbstractObject$isFieldInheritedFrom() geometa::ISOAbstractObject$print() geometa::ISOAbstractObject$save() geometa::ISOAbstractObject$setAttr() geometa::ISOAbstractObject$setCodeList() geometa::ISOAbstractObject$setCodeListValue() geometa::ISOAbstractObject$setCodeSpace() geometa::ISOAbstractObject$setHref() geometa::ISOAbstractObject$setId() geometa::ISOAbstractObject$setIsNull() geometa::ISOAbstractObject$setValue() geometa::ISOAbstractObject$validate() geometa::ISOAbstractObject$wrapBaseElement() geometa::GMLAbstractFeature$setBoundedBy() geometa::GMLAbstractCoverage$setDomainSet() geometa::GMLAbstractCoverage$setRangeSet()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSCoverageDescription — WCSCoverageDescription","text":"WCSCoverageDescription$new() WCSCoverageDescription$getId() WCSCoverageDescription$getSupportedCRS() WCSCoverageDescription$getSupportedFormats() WCSCoverageDescription$getDomain() WCSCoverageDescription$getRange() WCSCoverageDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSCoverageDescription — WCSCoverageDescription","text":"Initializes object class WCSCoverageDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDescription — WCSCoverageDescription","text":"","code":"WCSCoverageDescription$new(xmlObj, serviceVersion, owsVersion, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageDescription — WCSCoverageDescription","text":"xmlObj object class XMLInternalNode-class initialize XML serviceVersion service version owsVersion OWS version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"method-getid-","dir":"Reference","previous_headings":"","what":"Method getId()","title":"WCSCoverageDescription — WCSCoverageDescription","text":"getId","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDescription — WCSCoverageDescription","text":"","code":"WCSCoverageDescription$getId()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageDescription — WCSCoverageDescription","text":"coverage id, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"method-getsupportedcrs-","dir":"Reference","previous_headings":"","what":"Method getSupportedCRS()","title":"WCSCoverageDescription — WCSCoverageDescription","text":"getSupported CRS. Applies WCS 1 coverage descriptions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDescription — WCSCoverageDescription","text":"","code":"WCSCoverageDescription$getSupportedCRS()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"method-getsupportedformats-","dir":"Reference","previous_headings":"","what":"Method getSupportedFormats()","title":"WCSCoverageDescription — WCSCoverageDescription","text":"get supported formats. Applies WCS 1 coverage descriptions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDescription — WCSCoverageDescription","text":"","code":"WCSCoverageDescription$getSupportedFormats()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"method-getdomain-","dir":"Reference","previous_headings":"","what":"Method getDomain()","title":"WCSCoverageDescription — WCSCoverageDescription","text":"get domain. Applies WCS 1 coverage descriptions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDescription — WCSCoverageDescription","text":"","code":"WCSCoverageDescription$getDomain()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"method-getrange-","dir":"Reference","previous_headings":"","what":"Method getRange()","title":"WCSCoverageDescription — WCSCoverageDescription","text":"get range. Applies WCS 1.0 coverage descriptions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDescription — WCSCoverageDescription","text":"","code":"WCSCoverageDescription$getRange()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSCoverageDescription — WCSCoverageDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDescription — WCSCoverageDescription","text":"","code":"WCSCoverageDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageDescription — WCSCoverageDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCoverageDomain — WCSCoverageDomain","title":"WCSCoverageDomain — WCSCoverageDomain","text":"WCSCoverageDomain WCSCoverageDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSCoverageDomain — WCSCoverageDomain","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCoverageDomain — WCSCoverageDomain","text":"Object R6Class modelling WCS coverage domain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSCoverageDomain — WCSCoverageDomain","text":"Class used internally ows4R.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCoverageDomain — WCSCoverageDomain","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WCSCoverageDomain — WCSCoverageDomain","text":"ows4R::OGCAbstractObject -> WCSCoverageDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSCoverageDomain — WCSCoverageDomain","text":"spatialDomain spatial domain temporalDomain temporal domain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSCoverageDomain — WCSCoverageDomain","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSCoverageDomain — WCSCoverageDomain","text":"WCSCoverageDomain$new() WCSCoverageDomain$getSpatialDomain() WCSCoverageDomain$getTemporalDomain() WCSCoverageDomain$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSCoverageDomain — WCSCoverageDomain","text":"Initializes object class WCSCoverageDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDomain — WCSCoverageDomain","text":"","code":"WCSCoverageDomain$new(xmlObj, serviceVersion, owsVersion, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageDomain — WCSCoverageDomain","text":"xmlObj object class XMLInternalNode-class initialize XML serviceVersion service version owsVersion OWS version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"method-getspatialdomain-","dir":"Reference","previous_headings":"","what":"Method getSpatialDomain()","title":"WCSCoverageDomain — WCSCoverageDomain","text":"Get spatial domain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDomain — WCSCoverageDomain","text":"","code":"WCSCoverageDomain$getSpatialDomain()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageDomain — WCSCoverageDomain","text":"object class WCSCoverageSpatialDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"method-gettemporaldomain-","dir":"Reference","previous_headings":"","what":"Method getTemporalDomain()","title":"WCSCoverageDomain — WCSCoverageDomain","text":"Get spatial domain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDomain — WCSCoverageDomain","text":"","code":"WCSCoverageDomain$getTemporalDomain()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageDomain — WCSCoverageDomain","text":"object class WCSCoverageTemporalDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSCoverageDomain — WCSCoverageDomain","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDomain — WCSCoverageDomain","text":"","code":"WCSCoverageDomain$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageDomain — WCSCoverageDomain","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageFilenameHandler.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCoverageFilenameHandler — WCSCoverageFilenameHandler","title":"WCSCoverageFilenameHandler — WCSCoverageFilenameHandler","text":"WCSCoverageFilenameHandler provides coverage filename handler coverage download","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageFilenameHandler.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageFilenameHandler — WCSCoverageFilenameHandler","text":"","code":"WCSCoverageFilenameHandler(identifier, time, elevation, bbox, format)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageFilenameHandler.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageFilenameHandler — WCSCoverageFilenameHandler","text":"identifier coverage identifier time time elevation elevation bbox bbox format format","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageFilenameHandler.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCoverageFilenameHandler — WCSCoverageFilenameHandler","text":"filename use coverage download","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageFilenameHandler.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCoverageFilenameHandler — WCSCoverageFilenameHandler","text":"Emmanuel Blondel, emmanuel.blondel1@gmail.com","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"WCSCoverageSpatialDomain WCSCoverageSpatialDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Object R6Class modelling WCS coverage spatial domain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Class used internally ows4R.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"ows4R::OGCAbstractObject -> WCSCoverageSpatialDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"envelopes envelopes. WCS 1.0 BoundingBox bounding box. WCS 1.1 grids WCS 1.0 GridCRS grid CRS. WCS 1.1","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"WCSCoverageSpatialDomain$new() WCSCoverageSpatialDomain$getEnvelopes() WCSCoverageSpatialDomain$getBoundingBox() WCSCoverageSpatialDomain$getGrids() WCSCoverageSpatialDomain$getGridCRS() WCSCoverageSpatialDomain$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Initializes object class WCSCoverageDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"","code":"WCSCoverageSpatialDomain$new(xmlObj, serviceVersion, owsVersion, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"xmlObj object class XMLInternalNode-class initialize XML serviceVersion service version owsVersion OWS version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"method-getenvelopes-","dir":"Reference","previous_headings":"","what":"Method getEnvelopes()","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Get envelopes. Method applies WCS 1.0 ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"","code":"WCSCoverageSpatialDomain$getEnvelopes()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"list objects class GMLEnvelope GMLEnvelopeWithTimePeriod","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"method-getboundingbox-","dir":"Reference","previous_headings":"","what":"Method getBoundingBox()","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Get bounding boxes. Method applies WCS 1.1 ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"","code":"WCSCoverageSpatialDomain$getBoundingBox()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"list objects class OWSBoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"method-getgrids-","dir":"Reference","previous_headings":"","what":"Method getGrids()","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Get grids. Method applies WCS 1.0 ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"","code":"WCSCoverageSpatialDomain$getGrids()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"list objects class GMLGrid GMLRectifiedGrid","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"method-getgridcrs-","dir":"Reference","previous_headings":"","what":"Method getGridCRS()","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Get Grid CRS. Method applies WCS 1.1 ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"","code":"WCSCoverageSpatialDomain$getGridCRS()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"list objects class WCSGridCRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"","code":"WCSCoverageSpatialDomain$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCoverageSummary — WCSCoverageSummary","title":"WCSCoverageSummary — WCSCoverageSummary","text":"WCSCoverageSummary WCSCoverageSummary","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSCoverageSummary — WCSCoverageSummary","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Object R6Class modelling WCS coverage summary","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Class used internally ows4R.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WCSCoverageSummary — WCSCoverageSummary","text":"ows4R::OGCAbstractObject -> WCSCoverageSummary","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSCoverageSummary — WCSCoverageSummary","text":"CoverageId coverage id CoverageSubtype coverage subtype CoverageSubtypeParent coverage subtype parent WGS84BoundingBox WGS84 bounding box BoundingBox bounding box","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSCoverageSummary — WCSCoverageSummary","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSCoverageSummary — WCSCoverageSummary","text":"WCSCoverageSummary$new() WCSCoverageSummary$getId() WCSCoverageSummary$getSubtype() WCSCoverageSummary$getSubtypeParent() WCSCoverageSummary$getWGS84BoundingBox() WCSCoverageSummary$getBoundingBox() WCSCoverageSummary$getDescription() WCSCoverageSummary$getDimensions() WCSCoverageSummary$getCoverage() WCSCoverageSummary$getCoverageStack() WCSCoverageSummary$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Initializes WCSCoverageSummary object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$new( xmlObj, capabilities, serviceVersion, owsVersion, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageSummary — WCSCoverageSummary","text":"xmlObj object class XMLInternalNode-class XML capabilities object class WCSCapabilities serviceVersion WCS service version owsVersion version logger logger type NULL, \"INFO\" \"DEBUG\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getid-","dir":"Reference","previous_headings":"","what":"Method getId()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get coverage ID","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getId()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getsubtype-","dir":"Reference","previous_headings":"","what":"Method getSubtype()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get sub type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getSubtype()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getsubtypeparent-","dir":"Reference","previous_headings":"","what":"Method getSubtypeParent()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get sub type parent","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getSubtypeParent()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getwgs-boundingbox-","dir":"Reference","previous_headings":"","what":"Method getWGS84BoundingBox()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get bounding box","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getWGS84BoundingBox()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class OWSWGS84BoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getboundingbox-","dir":"Reference","previous_headings":"","what":"Method getBoundingBox()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get WGS84 bounding box","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getBoundingBox()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class OWSBoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getdescription-","dir":"Reference","previous_headings":"","what":"Method getDescription()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getDescription()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class WCSCoverageDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getdimensions-","dir":"Reference","previous_headings":"","what":"Method getDimensions()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get dimensions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getDimensions()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"list dimensions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getcoverage-","dir":"Reference","previous_headings":"","what":"Method getCoverage()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get coverage data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getCoverage( bbox = NULL, crs = NULL, time = NULL, elevation = NULL, format = NULL, rangesubset = NULL, gridbaseCRS = NULL, gridtype = NULL, gridCS = NULL, gridorigin = NULL, gridoffsets = NULL, method = \"GET\", filename = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageSummary — WCSCoverageSummary","text":"bbox bbox. Object class matrix. Default NULL. eg. OWSUtils$toBBOX(-180,180,-90,90) crs crs. Object class character giving CRS identifier (EPSG prefixed code, URI/URN). Default NULL. time time. Object class character representing time instant/period. Default NULL elevation elevation. Object class character numeric. Default NULL format format. Object class character Default GeoTIFF, coded differently depending WCS version. rangesubset rangesubset. Default NULL gridbaseCRS grid base CRS. Default NULL gridtype grid type. Default NULL gridCS grid CS. Default NULL gridorigin grid origin. Default NULL gridoffsets grid offsets. Default NULL method method get coverage, either 'GET' 'POST' (experimental - development). Object class character. filename filename. Object class character. Optional filename download coverage ... argument WCSGetCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class SpatRaster terra","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getcoveragestack-","dir":"Reference","previous_headings":"","what":"Method getCoverageStack()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get spatio-temporal coverage data cubes coverage stack","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getCoverageStack( time = NULL, elevation = NULL, bbox = NULL, filename_handler = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageSummary — WCSCoverageSummary","text":"time time elevation elevation bbox bbox filename_handler Optional filename handling function arguments 'identifier', 'time', 'elevation', 'bbox', 'format' See WCSCoverageFilenameHandler genric filename handler can used. ... parameter pass getCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-8","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class stack raster","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageSummary — WCSCoverageSummary","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"WCSCoverageTemporalDomain WCSCoverageTemporalDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"Object R6Class modelling WCS coverage temporal domain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"Class used internally ows4R.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"ows4R::OGCAbstractObject -> WCSCoverageTemporalDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"instants instants periods periods","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"WCSCoverageTemporalDomain$new() WCSCoverageTemporalDomain$getInstants() WCSCoverageTemporalDomain$getPeriods() WCSCoverageTemporalDomain$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"Initializes object class WCSCoverageTemporalDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"","code":"WCSCoverageTemporalDomain$new( xmlObj, serviceVersion, owsVersion, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"xmlObj object class XMLInternalNode-class initialize XML serviceVersion service version owsVersion OWS version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"method-getinstants-","dir":"Reference","previous_headings":"","what":"Method getInstants()","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"Get time instants","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"","code":"WCSCoverageTemporalDomain$getInstants()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"list objects class POSIXct","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"method-getperiods-","dir":"Reference","previous_headings":"","what":"Method getPeriods()","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"Get time periods","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"","code":"WCSCoverageTemporalDomain$getPeriods()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"list objects class GMLTimePeriod","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"","code":"WCSCoverageTemporalDomain$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSDescribeCoverage — WCSDescribeCoverage","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"WCSDescribeCoverage WCSDescribeCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"Object R6Class modelling WCS DescribeCoverage request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"Class used internally ows4R trigger WCS DescribeCoverage request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> WCSDescribeCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"WCSDescribeCoverage$new() WCSDescribeCoverage$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"Initializes WCSDescribeCoverage service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"","code":"WCSDescribeCoverage$new( capabilities, op, url, serviceVersion, coverageId, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"capabilities object class WCSCapabilities op object class OWSOperation retrieved capabilities url url serviceVersion serviceVersion coverageId coverage ID user user pwd password token token headers headers config config logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"","code":"WCSDescribeCoverage$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSGSElevationDomain — WCSGSElevationDomain","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"WCSGSElevationDomain WCSGSElevationDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"Object R6Class modelling WCS geoserver elevation domain object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"Experimental","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"geometa::geometaLogger -> geometa::ISOAbstractObject -> WCSGSElevationDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"SingleValue single values","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"geometa::geometaLogger$ERROR() geometa::geometaLogger$INFO() geometa::geometaLogger$WARN() geometa::ISOAbstractObject$addFieldAttrs() geometa::ISOAbstractObject$addListElement() geometa::ISOAbstractObject$contains() geometa::ISOAbstractObject$createLocalisedProperty() geometa::ISOAbstractObject$delListElement() geometa::ISOAbstractObject$encode() geometa::ISOAbstractObject$getClass() geometa::ISOAbstractObject$getClassName() geometa::ISOAbstractObject$getNamespaceDefinition() geometa::ISOAbstractObject$initialize() geometa::ISOAbstractObject$isDocument() geometa::ISOAbstractObject$isFieldInheritedFrom() geometa::ISOAbstractObject$print() geometa::ISOAbstractObject$save() geometa::ISOAbstractObject$setAttr() geometa::ISOAbstractObject$setCodeList() geometa::ISOAbstractObject$setCodeListValue() geometa::ISOAbstractObject$setCodeSpace() geometa::ISOAbstractObject$setHref() geometa::ISOAbstractObject$setId() geometa::ISOAbstractObject$setIsNull() geometa::ISOAbstractObject$setValue() geometa::ISOAbstractObject$validate() geometa::ISOAbstractObject$wrapBaseElement()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"WCSGSElevationDomain$decode() WCSGSElevationDomain$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"Decodes XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"","code":"WCSGSElevationDomain$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"xml object class XMLInternalNode-class XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"","code":"WCSGSElevationDomain$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSGSTimeDomain — WCSGSTimeDomain","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"WCSGSTimeDomain WCSGSTimeDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"Object R6Class modelling WCS geoserver time domain object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"Experimental","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"geometa::geometaLogger -> geometa::ISOAbstractObject -> WCSGSTimeDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"TimeInstant time instants","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"geometa::geometaLogger$ERROR() geometa::geometaLogger$INFO() geometa::geometaLogger$WARN() geometa::ISOAbstractObject$addFieldAttrs() geometa::ISOAbstractObject$addListElement() geometa::ISOAbstractObject$contains() geometa::ISOAbstractObject$createLocalisedProperty() geometa::ISOAbstractObject$delListElement() geometa::ISOAbstractObject$encode() geometa::ISOAbstractObject$getClass() geometa::ISOAbstractObject$getClassName() geometa::ISOAbstractObject$getNamespaceDefinition() geometa::ISOAbstractObject$initialize() geometa::ISOAbstractObject$isDocument() geometa::ISOAbstractObject$isFieldInheritedFrom() geometa::ISOAbstractObject$print() geometa::ISOAbstractObject$save() geometa::ISOAbstractObject$setAttr() geometa::ISOAbstractObject$setCodeList() geometa::ISOAbstractObject$setCodeListValue() geometa::ISOAbstractObject$setCodeSpace() geometa::ISOAbstractObject$setHref() geometa::ISOAbstractObject$setId() geometa::ISOAbstractObject$setIsNull() geometa::ISOAbstractObject$setValue() geometa::ISOAbstractObject$validate() geometa::ISOAbstractObject$wrapBaseElement()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"WCSGSTimeDomain$decode() WCSGSTimeDomain$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"Decodes XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"","code":"WCSGSTimeDomain$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"xml object class XMLInternalNode-class XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"","code":"WCSGSTimeDomain$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSGetCoverage — WCSGetCoverage","title":"WCSGetCoverage — WCSGetCoverage","text":"WCSGetCoverage WCSGetCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSGetCoverage — WCSGetCoverage","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSGetCoverage — WCSGetCoverage","text":"Object R6Class modelling WCS GetCoverage request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSGetCoverage — WCSGetCoverage","text":"Class used internally ows4R trigger WCS GetCoverage request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSGetCoverage — WCSGetCoverage","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WCSGetCoverage — WCSGetCoverage","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> WCSGetCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSGetCoverage — WCSGetCoverage","text":"CoverageId coverage identifier format coverage format","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSGetCoverage — WCSGetCoverage","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSGetCoverage — WCSGetCoverage","text":"WCSGetCoverage$new() WCSGetCoverage$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSGetCoverage — WCSGetCoverage","text":"Initializes WCSGetCoverage service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGetCoverage — WCSGetCoverage","text":"","code":"WCSGetCoverage$new( capabilities, op, url, serviceVersion, coverage, envelope = NULL, crs = NULL, time = NULL, elevation = NULL, format = NULL, rangesubset = NULL, gridbaseCRS = NULL, gridtype = NULL, gridCS = NULL, gridorigin = NULL, gridoffsets = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), method = \"GET\", logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGetCoverage — WCSGetCoverage","text":"capabilities object class WCSCapabilities op object class OWSOperation retrieved capabilities url url serviceVersion serviceVersion coverage coverage, object class WCSCoverageSummary envelope envelope crs crs time time elevation elevation format format rangesubset range subset gridbaseCRS grid base CRS gridtype grid type gridCS grid CS gridorigin grid origin gridoffsets grid offsets user user pwd password token token headers headers config config method method logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSGetCoverage — WCSGetCoverage","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGetCoverage — WCSGetCoverage","text":"","code":"WCSGetCoverage$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGetCoverage — WCSGetCoverage","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSGridCRS — WCSGridCRS","title":"WCSGridCRS — WCSGridCRS","text":"WCSGridCRS WCSGridCRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSGridCRS — WCSGridCRS","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSGridCRS — WCSGridCRS","text":"Object R6Class modelling WCS grid CRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSGridCRS — WCSGridCRS","text":"Class used internally ows4R.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSGridCRS — WCSGridCRS","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WCSGridCRS — WCSGridCRS","text":"ows4R::OGCAbstractObject -> WCSGridCRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSGridCRS — WCSGridCRS","text":"GridBaseCRS grid base CRS GridType grid type GridOrigin grid origin GridOffsets grid offsets GridCS grid CS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSGridCRS — WCSGridCRS","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSGridCRS — WCSGridCRS","text":"WCSGridCRS$new() WCSGridCRS$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSGridCRS — WCSGridCRS","text":"Initializes object class WCSGridCRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGridCRS — WCSGridCRS","text":"","code":"WCSGridCRS$new(xmlObj, serviceVersion, owsVersion, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGridCRS — WCSGridCRS","text":"xmlObj object class XMLInternalNode-class initialize XML serviceVersion service version owsVersion OWS version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSGridCRS — WCSGridCRS","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGridCRS — WCSGridCRS","text":"","code":"WCSGridCRS$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGridCRS — WCSGridCRS","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":null,"dir":"Reference","previous_headings":"","what":"WFSCapabilities — WFSCapabilities","title":"WFSCapabilities — WFSCapabilities","text":"WFSCapabilities WFSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WFSCapabilities — WFSCapabilities","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WFSCapabilities — WFSCapabilities","text":"Object R6Class methods interfacing OGC Web Feature Service Get Capabilities document.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WFSCapabilities — WFSCapabilities","text":"Class used read WFSCapabilities document. use WFSClient recommended instead benefit full set capabilities associated WFS server.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WFSCapabilities — WFSCapabilities","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WFSCapabilities — WFSCapabilities","text":"ows4R::OGCAbstractObject -> ows4R::OWSCapabilities -> WFSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WFSCapabilities — WFSCapabilities","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSCapabilities$getClient() ows4R::OWSCapabilities$getOWSVersion() ows4R::OWSCapabilities$getOperationsMetadata() ows4R::OWSCapabilities$getRequest() ows4R::OWSCapabilities$getService() ows4R::OWSCapabilities$getServiceIdentification() ows4R::OWSCapabilities$getServiceProvider() ows4R::OWSCapabilities$getServiceVersion() ows4R::OWSCapabilities$getUrl() ows4R::OWSCapabilities$setClient()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WFSCapabilities — WFSCapabilities","text":"WFSCapabilities$new() WFSCapabilities$getFeatureTypes() WFSCapabilities$findFeatureTypeByName() WFSCapabilities$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WFSCapabilities — WFSCapabilities","text":"Initializes WFSCapabilities object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSCapabilities — WFSCapabilities","text":"","code":"WFSCapabilities$new(url, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSCapabilities — WFSCapabilities","text":"url url version version logger logger type NULL, \"INFO\" \"DEBUG\" ... parameter pass OWSGetCapabilities service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"method-getfeaturetypes-","dir":"Reference","previous_headings":"","what":"Method getFeatureTypes()","title":"WFSCapabilities — WFSCapabilities","text":"List feature types available. pretty TRUE, output object class data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSCapabilities — WFSCapabilities","text":"","code":"WFSCapabilities$getFeatureTypes(pretty = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSCapabilities — WFSCapabilities","text":"pretty whether output summarized data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSCapabilities — WFSCapabilities","text":"list WFSFeatureType data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"method-findfeaturetypebyname-","dir":"Reference","previous_headings":"","what":"Method findFeatureTypeByName()","title":"WFSCapabilities — WFSCapabilities","text":"Finds feature type name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSCapabilities — WFSCapabilities","text":"","code":"WFSCapabilities$findFeatureTypeByName(expr, exact = TRUE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSCapabilities — WFSCapabilities","text":"expr expr exact exact matching? Default TRUE","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WFSCapabilities — WFSCapabilities","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSCapabilities — WFSCapabilities","text":"","code":"WFSCapabilities$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSCapabilities — WFSCapabilities","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":null,"dir":"Reference","previous_headings":"","what":"WFSClient — WFSClient","title":"WFSClient — WFSClient","text":"WFSClient WFSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WFSClient — WFSClient","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WFSClient — WFSClient","text":"Object R6Class methods interfacing OGC Web Feature Service.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WFSClient — WFSClient","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WFSClient — WFSClient","text":"ows4R::OGCAbstractObject -> ows4R::OWSClient -> WFSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WFSClient — WFSClient","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSClient$getCASUrl() ows4R::OWSClient$getConfig() ows4R::OWSClient$getHeaders() ows4R::OWSClient$getPwd() ows4R::OWSClient$getToken() ows4R::OWSClient$getUrl() ows4R::OWSClient$getUser() ows4R::OWSClient$getVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WFSClient — WFSClient","text":"WFSClient$new() WFSClient$getCapabilities() WFSClient$reloadCapabilities() WFSClient$describeFeatureType() WFSClient$getFeatures() WFSClient$getFeatureTypes() WFSClient$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WFSClient — WFSClient","text":"method used instantiate WFSClient url OGC service. Authentication supported using basic auth (using user/pwd arguments), bearer token (using token argument), custom (using headers argument). default, logger argument set NULL (logger). argument accepts two possible values: INFO: print ows4R logs, DEBUG: print verbose logs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSClient — WFSClient","text":"","code":"WFSClient$new( url, serviceVersion = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), cas_url = NULL, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSClient — WFSClient","text":"url url serviceVersion WFS service version user user pwd password token token headers headers config config cas_url Central Authentication Service (CAS) URL logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"method-getcapabilities-","dir":"Reference","previous_headings":"","what":"Method getCapabilities()","title":"WFSClient — WFSClient","text":"Get WFS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSClient — WFSClient","text":"","code":"WFSClient$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSClient — WFSClient","text":"object class WFSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"method-reloadcapabilities-","dir":"Reference","previous_headings":"","what":"Method reloadCapabilities()","title":"WFSClient — WFSClient","text":"Reloads WFS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSClient — WFSClient","text":"","code":"WFSClient$reloadCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"method-describefeaturetype-","dir":"Reference","previous_headings":"","what":"Method describeFeatureType()","title":"WFSClient — WFSClient","text":"Describes feature type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSClient — WFSClient","text":"","code":"WFSClient$describeFeatureType(typeName)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSClient — WFSClient","text":"typeName name feature type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSClient — WFSClient","text":"list WFSFeatureTypeElement","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"method-getfeatures-","dir":"Reference","previous_headings":"","what":"Method getFeatures()","title":"WFSClient — WFSClient","text":"Get features","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSClient — WFSClient","text":"","code":"WFSClient$getFeatures(typeName, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSClient — WFSClient","text":"typeName name feature type ... parameter pass WFSGetFeature request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSClient — WFSClient","text":"features object class sf","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"method-getfeaturetypes-","dir":"Reference","previous_headings":"","what":"Method getFeatureTypes()","title":"WFSClient — WFSClient","text":"List feature types available. pretty TRUE, output object class data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSClient — WFSClient","text":"","code":"WFSClient$getFeatureTypes(pretty = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSClient — WFSClient","text":"pretty whether output summarized data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSClient — WFSClient","text":"list WFSFeatureType data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WFSClient — WFSClient","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSClient — WFSClient","text":"","code":"WFSClient$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSClient — WFSClient","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"WFSClient — WFSClient","text":"","code":"# \\dontrun{ #example based on a WFS endpoint responding at http://localhost:8080/geoserver/wfs wfs <- WFSClient$new(\"http://localhost:8080/geoserver/wfs\", serviceVersion = \"1.1.1\") #> Error in curl::curl_fetch_memory(url, handle = handle): Failed to connect to localhost port 8080 after 0 ms: Connection refused #get capabilities caps <- wfs$getCapabilities() #> Error in eval(expr, envir, enclos): object 'wfs' not found #find feature type ft <- caps$findFeatureTypeByName(\"mylayer\") #> Error in eval(expr, envir, enclos): object 'caps' not found if(length(ft)>0){ data <- ft$getFeatures() data_with_filter <- ft$getFeatures(cql_filter = \"somefilter\") } #> Error in eval(expr, envir, enclos): object 'ft' not found #Advanced examples at https://github.com/eblondel/ows4R/wiki#wfs # }"},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":null,"dir":"Reference","previous_headings":"","what":"WFSDescribeFeatureType — WFSDescribeFeatureType","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"WFSDescribeFeatureType WFSDescribeFeatureType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"Object R6Class modelling WFS DescribeFeatureType request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"Abstract class used ows4R trigger WFS DescribeFeatureType request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> WFSDescribeFeatureType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"WFSDescribeFeatureType$new() WFSDescribeFeatureType$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"Initializes WFSDescribeFeatureType service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"","code":"WFSDescribeFeatureType$new( capabilities, op, url, version, typeName, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"capabilities object class WFSCapabilities op object class OWSOperation retrieved capabilities url url version service version typeName typeName user user pwd pwd token token headers headers config config logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"","code":"WFSDescribeFeatureType$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":null,"dir":"Reference","previous_headings":"","what":"WFSFeatureType — WFSFeatureType","title":"WFSFeatureType — WFSFeatureType","text":"WFSFeatureType WFSFeatureType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WFSFeatureType — WFSFeatureType","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WFSFeatureType — WFSFeatureType","text":"Object R6Class modelling WFS feature type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WFSFeatureType — WFSFeatureType","text":"Class used internally ows4R trigger WFS DescribeFeatureType request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WFSFeatureType — WFSFeatureType","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WFSFeatureType — WFSFeatureType","text":"ows4R::OGCAbstractObject -> WFSFeatureType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WFSFeatureType — WFSFeatureType","text":"description description features features","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WFSFeatureType — WFSFeatureType","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WFSFeatureType — WFSFeatureType","text":"WFSFeatureType$new() WFSFeatureType$getName() WFSFeatureType$getTitle() WFSFeatureType$getAbstract() WFSFeatureType$getKeywords() WFSFeatureType$getDefaultCRS() WFSFeatureType$getBoundingBox() WFSFeatureType$getDescription() WFSFeatureType$hasGeometry() WFSFeatureType$getGeometryType() WFSFeatureType$getFeaturesCRS() WFSFeatureType$getFeatures() WFSFeatureType$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WFSFeatureType — WFSFeatureType","text":"Initializes object class WFSFeatureType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$new(xmlObj, capabilities, version, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"xmlObj object class XMLInternalNode-class initialize XML capabilities object class WFSCapabilities version service version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getname-","dir":"Reference","previous_headings":"","what":"Method getName()","title":"WFSFeatureType — WFSFeatureType","text":"Get feature type name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getName()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-gettitle-","dir":"Reference","previous_headings":"","what":"Method getTitle()","title":"WFSFeatureType — WFSFeatureType","text":"Get feature type title","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getTitle()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getabstract-","dir":"Reference","previous_headings":"","what":"Method getAbstract()","title":"WFSFeatureType — WFSFeatureType","text":"Get feature type abstract","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getAbstract()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getkeywords-","dir":"Reference","previous_headings":"","what":"Method getKeywords()","title":"WFSFeatureType — WFSFeatureType","text":"Get feature type keywords","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getKeywords()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getdefaultcrs-","dir":"Reference","previous_headings":"","what":"Method getDefaultCRS()","title":"WFSFeatureType — WFSFeatureType","text":"Get feature type default CRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getDefaultCRS()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-5","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getboundingbox-","dir":"Reference","previous_headings":"","what":"Method getBoundingBox()","title":"WFSFeatureType — WFSFeatureType","text":"Get feature type bounding box","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getBoundingBox()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-6","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"object class matrix","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getdescription-","dir":"Reference","previous_headings":"","what":"Method getDescription()","title":"WFSFeatureType — WFSFeatureType","text":"Describes feature type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getDescription(pretty = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-7","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"pretty pretty whether return prettified data.frame. Default FALSE","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureType — WFSFeatureType","text":"list WFSFeatureTypeElement data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-hasgeometry-","dir":"Reference","previous_headings":"","what":"Method hasGeometry()","title":"WFSFeatureType — WFSFeatureType","text":"Indicates feature type geometry","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$hasGeometry()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureType — WFSFeatureType","text":"object class logical","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getgeometrytype-","dir":"Reference","previous_headings":"","what":"Method getGeometryType()","title":"WFSFeatureType — WFSFeatureType","text":"Get geometry type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getGeometryType()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureType — WFSFeatureType","text":"object class character representing geometry tpe","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getfeaturescrs-","dir":"Reference","previous_headings":"","what":"Method getFeaturesCRS()","title":"WFSFeatureType — WFSFeatureType","text":"Inherits features CRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getFeaturesCRS(obj)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-8","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"obj features object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureType — WFSFeatureType","text":"object class integer","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getfeatures-","dir":"Reference","previous_headings":"","what":"Method getFeatures()","title":"WFSFeatureType — WFSFeatureType","text":"Get features","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-11","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getFeatures( ..., outputFormat = NULL, paging = FALSE, paging_length = 1000, parallel = FALSE, parallel_handler = NULL, cl = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-9","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"... parameter pass WFSGetFeature request outputFormat output format paging paging. Default FALSE paging_length number features request per page. Default 1000 parallel whether get features using parallel multicore strategy. Default FALSE parallel_handler Handler function parallelize code. eg mclapply cl optional cluster object parallel cluster approaches using eg. parallel::makeCluster typeName name feature type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureType — WFSFeatureType","text":"features object class sf","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WFSFeatureType — WFSFeatureType","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-12","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-10","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":null,"dir":"Reference","previous_headings":"","what":"WFSFeatureTypeElement — WFSFeatureTypeElement","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"WFSFeatureTypeElement WFSFeatureTypeElement","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"Object R6Class modelling WFS feature type element","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"Abstract class used ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"Emmanuel Blondel ","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"WFSFeatureTypeElement$new() WFSFeatureTypeElement$getMinOccurs() WFSFeatureTypeElement$getMaxOccurs() WFSFeatureTypeElement$isNillable() WFSFeatureTypeElement$getName() WFSFeatureTypeElement$getType() WFSFeatureTypeElement$isGeometry() WFSFeatureTypeElement$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"Initializes WFSFeatureTypeElement","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$new(xmlObj, namespaces)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"xmlObj object class XMLInternalNode-class XML namespaces namespaces definitions inherited parent XML, data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-getminoccurs-","dir":"Reference","previous_headings":"","what":"Method getMinOccurs()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"get min occurs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$getMinOccurs()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-getmaxoccurs-","dir":"Reference","previous_headings":"","what":"Method getMaxOccurs()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"get max occurs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$getMaxOccurs()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-isnillable-","dir":"Reference","previous_headings":"","what":"Method isNillable()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"get nillable","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$isNillable()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"object class logical","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-getname-","dir":"Reference","previous_headings":"","what":"Method getName()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"get name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$getName()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-gettype-","dir":"Reference","previous_headings":"","what":"Method getType()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"get type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$getType()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-isgeometry-","dir":"Reference","previous_headings":"","what":"Method isGeometry()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"geometry","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$isGeometry()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"return object class logical","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":null,"dir":"Reference","previous_headings":"","what":"WFSGetFeature — WFSGetFeature","title":"WFSGetFeature — WFSGetFeature","text":"WFSGetFeature WFSGetFeature","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WFSGetFeature — WFSGetFeature","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WFSGetFeature — WFSGetFeature","text":"Object R6Class modelling WFS GetFeature request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WFSGetFeature — WFSGetFeature","text":"Class used internally ows4R trigger WFS GetFeature request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WFSGetFeature — WFSGetFeature","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WFSGetFeature — WFSGetFeature","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> WFSGetFeature","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WFSGetFeature — WFSGetFeature","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WFSGetFeature — WFSGetFeature","text":"WFSGetFeature$new() WFSGetFeature$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WFSGetFeature — WFSGetFeature","text":"Initializes WFSGetFeature service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSGetFeature — WFSGetFeature","text":"","code":"WFSGetFeature$new( capabilities, op, url, version, typeName, outputFormat = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSGetFeature — WFSGetFeature","text":"capabilities object class WFSCapabilities op object class OWSOperation retrieved capabilities url url version service version typeName typeName outputFormat output format user user pwd password token token headers headers config config logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WFSGetFeature — WFSGetFeature","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSGetFeature — WFSGetFeature","text":"","code":"WFSGetFeature$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSGetFeature — WFSGetFeature","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":null,"dir":"Reference","previous_headings":"","what":"WMSCapabilities — WMSCapabilities","title":"WMSCapabilities — WMSCapabilities","text":"WMSCapabilities WMSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WMSCapabilities — WMSCapabilities","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WMSCapabilities — WMSCapabilities","text":"Object R6Class methods interfacing OGC Web Map Service Get Capabilities document.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WMSCapabilities — WMSCapabilities","text":"Class used read WMSCapabilities document. use WMSClient recommended instead benefit full set capabilities associated WMS server.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WMSCapabilities — WMSCapabilities","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WMSCapabilities — WMSCapabilities","text":"ows4R::OGCAbstractObject -> ows4R::OWSCapabilities -> WMSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WMSCapabilities — WMSCapabilities","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSCapabilities$getClient() ows4R::OWSCapabilities$getOWSVersion() ows4R::OWSCapabilities$getOperationsMetadata() ows4R::OWSCapabilities$getRequest() ows4R::OWSCapabilities$getService() ows4R::OWSCapabilities$getServiceIdentification() ows4R::OWSCapabilities$getServiceProvider() ows4R::OWSCapabilities$getServiceVersion() ows4R::OWSCapabilities$getUrl() ows4R::OWSCapabilities$setClient()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WMSCapabilities — WMSCapabilities","text":"WMSCapabilities$new() WMSCapabilities$getRequests() WMSCapabilities$getRequestNames() WMSCapabilities$getLayers() WMSCapabilities$findLayerByName() WMSCapabilities$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WMSCapabilities — WMSCapabilities","text":"Initializes WMSCapabilities object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSCapabilities — WMSCapabilities","text":"","code":"WMSCapabilities$new(url, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSCapabilities — WMSCapabilities","text":"url url version version logger logger type NULL, \"INFO\" \"DEBUG\" ... parameter pass OWSGetCapabilities service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"method-getrequests-","dir":"Reference","previous_headings":"","what":"Method getRequests()","title":"WMSCapabilities — WMSCapabilities","text":"List requests available. pretty TRUE, output object class data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSCapabilities — WMSCapabilities","text":"","code":"WMSCapabilities$getRequests(pretty = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSCapabilities — WMSCapabilities","text":"pretty pretty","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSCapabilities — WMSCapabilities","text":"list OWSRequest available, data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"method-getrequestnames-","dir":"Reference","previous_headings":"","what":"Method getRequestNames()","title":"WMSCapabilities — WMSCapabilities","text":"List names requests available.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSCapabilities — WMSCapabilities","text":"","code":"WMSCapabilities$getRequestNames()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSCapabilities — WMSCapabilities","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"method-getlayers-","dir":"Reference","previous_headings":"","what":"Method getLayers()","title":"WMSCapabilities — WMSCapabilities","text":"List layers available. pretty TRUE, output object class data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSCapabilities — WMSCapabilities","text":"","code":"WMSCapabilities$getLayers(pretty = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSCapabilities — WMSCapabilities","text":"pretty pretty","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSCapabilities — WMSCapabilities","text":"list WMSLayer available, data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"method-findlayerbyname-","dir":"Reference","previous_headings":"","what":"Method findLayerByName()","title":"WMSCapabilities — WMSCapabilities","text":"Finds layer name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSCapabilities — WMSCapabilities","text":"","code":"WMSCapabilities$findLayerByName(expr, exact = TRUE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSCapabilities — WMSCapabilities","text":"expr expr exact exact matching? Default TRUE","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WMSCapabilities — WMSCapabilities","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSCapabilities — WMSCapabilities","text":"","code":"WMSCapabilities$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSCapabilities — WMSCapabilities","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":null,"dir":"Reference","previous_headings":"","what":"WMSClient — WMSClient","title":"WMSClient — WMSClient","text":"WMSClient WMSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WMSClient — WMSClient","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WMSClient — WMSClient","text":"Object R6Class methods interfacing OGC Web Map Service.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WMSClient — WMSClient","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WMSClient — WMSClient","text":"ows4R::OGCAbstractObject -> ows4R::OWSClient -> WMSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WMSClient — WMSClient","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSClient$getCASUrl() ows4R::OWSClient$getConfig() ows4R::OWSClient$getHeaders() ows4R::OWSClient$getPwd() ows4R::OWSClient$getToken() ows4R::OWSClient$getUrl() ows4R::OWSClient$getUser() ows4R::OWSClient$getVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WMSClient — WMSClient","text":"WMSClient$new() WMSClient$getCapabilities() WMSClient$reloadCapabilities() WMSClient$getLayers() WMSClient$getMap() WMSClient$getFeatureInfo() WMSClient$getLegendGraphic() WMSClient$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WMSClient — WMSClient","text":"method used instantiate WMSClient url OGC service. Authentication supported using basic auth (using user/pwd arguments), bearer token (using token argument), custom (using headers argument). default, logger argument set NULL (logger). argument accepts two possible values: INFO: print ows4R logs, DEBUG: print verbose logs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$new( url, serviceVersion = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), cas_url = NULL, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSClient — WMSClient","text":"url url serviceVersion WFS service version user user pwd password token token headers headers config config cas_url Central Authentication Service (CAS) URL logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-getcapabilities-","dir":"Reference","previous_headings":"","what":"Method getCapabilities()","title":"WMSClient — WMSClient","text":"Get WMS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSClient — WMSClient","text":"object class WMSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-reloadcapabilities-","dir":"Reference","previous_headings":"","what":"Method reloadCapabilities()","title":"WMSClient — WMSClient","text":"Reloads WFS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$reloadCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-getlayers-","dir":"Reference","previous_headings":"","what":"Method getLayers()","title":"WMSClient — WMSClient","text":"List layers available. pretty TRUE, output object class data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$getLayers(pretty = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSClient — WMSClient","text":"pretty pretty","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSClient — WMSClient","text":"list WMSLayer available, data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-getmap-","dir":"Reference","previous_headings":"","what":"Method getMap()","title":"WMSClient — WMSClient","text":"Get map. YET IMPLEMENTED","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$getMap()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-getfeatureinfo-","dir":"Reference","previous_headings":"","what":"Method getFeatureInfo()","title":"WMSClient — WMSClient","text":"Get feature info","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$getFeatureInfo( layer, srs = NULL, styles = NULL, feature_count = 1, x, y, width, height, bbox, info_format = \"application/vnd.ogc.gml\", ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSClient — WMSClient","text":"layer layer name srs srs styles styles feature_count feature count. Default 1 x x y y width width height height bbox bbox info_format info format. Default \"application/vnd.ogc.gml\" ... parameter pass WMSGetFeatureInfo request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSClient — WMSClient","text":"object class sf given feature(s)","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-getlegendgraphic-","dir":"Reference","previous_headings":"","what":"Method getLegendGraphic()","title":"WMSClient — WMSClient","text":"Get legend graphic. YET IMPLEMENTED","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$getLegendGraphic()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WMSClient — WMSClient","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSClient — WMSClient","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"WMSClient — WMSClient","text":"","code":"# \\dontrun{ #example based on a WMS endpoint responding at http://localhost:8080/geoserver/wms wms <- WMSClient$new(\"http://localhost:8080/geoserver/wms\", serviceVersion = \"1.1.1\") #> Error in curl::curl_fetch_memory(url, handle = handle): Failed to connect to localhost port 8080 after 0 ms: Connection refused #get capabilities caps <- wms$getCapabilities() #> Error in eval(expr, envir, enclos): object 'wms' not found #get feature info #Advanced examples at https://github.com/eblondel/ows4R/wiki#wms # }"},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":null,"dir":"Reference","previous_headings":"","what":"WMSGetFeatureInfo — WMSGetFeatureInfo","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"WMSGetFeatureInfo WMSGetFeatureInfo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"Object R6Class modelling WMS GetFeatureInfo request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"Class used internally ows4R trigger WMS GetFeatureInfo request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> WMSGetFeatureInfo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"WMSGetFeatureInfo$new() WMSGetFeatureInfo$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"Initializes WMSGetFeatureInfo service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"","code":"WMSGetFeatureInfo$new( capabilities, op, url, version, layers, srs, styles, feature_count = 1, x, y, width, height, bbox, info_format = \"text/xml\", user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"capabilities object class WMSCapabilities op object class OWSOperation retrieved capabilities url url version version layers layers srs srs styles styles feature_count feature count x x y y width width height height bbox bbox info_format info format user user pwd pwd token token headers headers config config logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"","code":"WMSGetFeatureInfo$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":null,"dir":"Reference","previous_headings":"","what":"WMSLayer — WMSLayer","title":"WMSLayer — WMSLayer","text":"WMSLayer WMSLayer","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WMSLayer — WMSLayer","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WMSLayer — WMSLayer","text":"Object R6Class modelling WMS layer","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WMSLayer — WMSLayer","text":"Abstract class used ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WMSLayer — WMSLayer","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WMSLayer — WMSLayer","text":"ows4R::OGCAbstractObject -> WMSLayer","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WMSLayer — WMSLayer","text":"description description features features","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WMSLayer — WMSLayer","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WMSLayer — WMSLayer","text":"WMSLayer$new() WMSLayer$getName() WMSLayer$getTitle() WMSLayer$getAbstract() WMSLayer$getKeywords() WMSLayer$getDefaultCRS() WMSLayer$getBoundingBox() WMSLayer$getBoundingBoxSRS() WMSLayer$getBoundingBoxCRS() WMSLayer$getStyles() WMSLayer$getStylenames() WMSLayer$getDimensions() WMSLayer$getTimeDimension() WMSLayer$getElevationDimension() WMSLayer$getFeatureInfo() WMSLayer$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WMSLayer — WMSLayer","text":"Initializes object class WMSLayer","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$new(xmlObj, capabilities, version, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSLayer — WMSLayer","text":"xmlObj object class XMLInternalNode-class initialize XML capabilities object class WMSCapabilities version service version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getname-","dir":"Reference","previous_headings":"","what":"Method getName()","title":"WMSLayer — WMSLayer","text":"Get layer name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getName()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-gettitle-","dir":"Reference","previous_headings":"","what":"Method getTitle()","title":"WMSLayer — WMSLayer","text":"Get layer title","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getTitle()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getabstract-","dir":"Reference","previous_headings":"","what":"Method getAbstract()","title":"WMSLayer — WMSLayer","text":"Get layer abstract","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getAbstract()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getkeywords-","dir":"Reference","previous_headings":"","what":"Method getKeywords()","title":"WMSLayer — WMSLayer","text":"Get layer keywords","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getKeywords()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getdefaultcrs-","dir":"Reference","previous_headings":"","what":"Method getDefaultCRS()","title":"WMSLayer — WMSLayer","text":"Get layer default CRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getDefaultCRS()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getboundingbox-","dir":"Reference","previous_headings":"","what":"Method getBoundingBox()","title":"WMSLayer — WMSLayer","text":"Get layer bounding box","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getBoundingBox()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class matrix","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getboundingboxsrs-","dir":"Reference","previous_headings":"","what":"Method getBoundingBoxSRS()","title":"WMSLayer — WMSLayer","text":"Get layer bounding box SRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getBoundingBoxSRS()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getboundingboxcrs-","dir":"Reference","previous_headings":"","what":"Method getBoundingBoxCRS()","title":"WMSLayer — WMSLayer","text":"Get layer bounding box CRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getBoundingBoxCRS()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getstyles-","dir":"Reference","previous_headings":"","what":"Method getStyles()","title":"WMSLayer — WMSLayer","text":"Get layer styles","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getStyles()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-8","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class list","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getstylenames-","dir":"Reference","previous_headings":"","what":"Method getStylenames()","title":"WMSLayer — WMSLayer","text":"Get layer style names","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getStylenames()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-9","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"list object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getdimensions-","dir":"Reference","previous_headings":"","what":"Method getDimensions()","title":"WMSLayer — WMSLayer","text":"Get layer dimensions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-11","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getDimensions(time_format = \"character\")"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSLayer — WMSLayer","text":"time_format time format. Default character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-10","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"list including default value listed possible values","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-gettimedimension-","dir":"Reference","previous_headings":"","what":"Method getTimeDimension()","title":"WMSLayer — WMSLayer","text":"Get layer TIME dimensions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-12","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getTimeDimension(time_format = \"character\")"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSLayer — WMSLayer","text":"time_format time format. Default character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-11","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"list including default value listed possible values","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getelevationdimension-","dir":"Reference","previous_headings":"","what":"Method getElevationDimension()","title":"WMSLayer — WMSLayer","text":"Get layer ELEVATION dimensions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-13","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getElevationDimension()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-12","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"list including default value listed possible values","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getfeatureinfo-","dir":"Reference","previous_headings":"","what":"Method getFeatureInfo()","title":"WMSLayer — WMSLayer","text":"Get feature info","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-14","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getFeatureInfo( srs = NULL, styles = NULL, feature_count = 1, x, y, width, height, bbox, info_format = \"text/xml\", ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSLayer — WMSLayer","text":"srs srs styles styles feature_count feature count. Default 1 x x y y width width height height bbox bbox info_format info format. Default \"text/xml\" ... parameter pass WMSGetFeatureInfo request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-13","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class sf given feature(s)","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WMSLayer — WMSLayer","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-15","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSLayer — WMSLayer","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSBoundingBoxData — WPSBoundingBoxData","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"WPSBoundingBoxData WPSBoundingBoxData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"Object R6Class modelling OGC WPS BoundingBox data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"ows4R::OGCAbstractObject -> ows4R::OWSBoundingBox -> WPSBoundingBoxData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSBoundingBox$decode() ows4R::OWSBoundingBox$getBBOX()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"WPSBoundingBoxData$new() WPSBoundingBoxData$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"Initializes object class WPSBoundingBoxData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"","code":"WPSBoundingBoxData$new( xml = NULL, owsVersion, serviceVersion = \"1.0.0\", logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"xml object class XMLInternalNode-class initialize XML owsVersion OWS version serviceVersion WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"","code":"WPSBoundingBoxData$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSCapabilities — WPSCapabilities","title":"WPSCapabilities — WPSCapabilities","text":"WPSCapabilities WPSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSCapabilities — WPSCapabilities","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSCapabilities — WPSCapabilities","text":"Object R6Class methods interfacing OGC Web Processing Service (WPS) Get Capabilities document.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSCapabilities — WPSCapabilities","text":"Class used read WPSCapabilities document. use WPSClient recommended instead benefit full set capabilities associated WPS server.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSCapabilities — WPSCapabilities","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSCapabilities — WPSCapabilities","text":"ows4R::OGCAbstractObject -> ows4R::OWSCapabilities -> WPSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSCapabilities — WPSCapabilities","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSCapabilities$getClient() ows4R::OWSCapabilities$getOWSVersion() ows4R::OWSCapabilities$getOperationsMetadata() ows4R::OWSCapabilities$getRequest() ows4R::OWSCapabilities$getService() ows4R::OWSCapabilities$getServiceIdentification() ows4R::OWSCapabilities$getServiceProvider() ows4R::OWSCapabilities$getServiceVersion() ows4R::OWSCapabilities$getUrl() ows4R::OWSCapabilities$setClient()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSCapabilities — WPSCapabilities","text":"WPSCapabilities$new() WPSCapabilities$getProcesses() WPSCapabilities$describeProcess() WPSCapabilities$execute() WPSCapabilities$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSCapabilities — WPSCapabilities","text":"Initializes WPSCapabilities object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSCapabilities — WPSCapabilities","text":"","code":"WPSCapabilities$new(url, version, client = NULL, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSCapabilities — WPSCapabilities","text":"url url version version client object class WPSClient logger logger type NULL, \"INFO\" \"DEBUG\" ... parameter pass OWSGetCapabilities service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"method-getprocesses-","dir":"Reference","previous_headings":"","what":"Method getProcesses()","title":"WPSCapabilities — WPSCapabilities","text":"Get list processes offered service capabilities. pretty allows control type output. TRUE, data.frame returned. prettified output, also possible get 'full' description process setting full = TRUE case WPS client request process description (information process) process listed capabilities.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSCapabilities — WPSCapabilities","text":"","code":"WPSCapabilities$getProcesses(pretty = FALSE, full = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSCapabilities — WPSCapabilities","text":"pretty pretty full full","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSCapabilities — WPSCapabilities","text":"list WPSProcessDescription data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"method-describeprocess-","dir":"Reference","previous_headings":"","what":"Method describeProcess()","title":"WPSCapabilities — WPSCapabilities","text":"Get description process, given identifier, returning object class WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSCapabilities — WPSCapabilities","text":"","code":"WPSCapabilities$describeProcess(identifier)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSCapabilities — WPSCapabilities","text":"identifier process identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSCapabilities — WPSCapabilities","text":"object class WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"method-execute-","dir":"Reference","previous_headings":"","what":"Method execute()","title":"WPSCapabilities — WPSCapabilities","text":"Execute process, given identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSCapabilities — WPSCapabilities","text":"","code":"WPSCapabilities$execute( identifier, dataInputs = list(), responseForm = NULL, storeExecuteResponse = FALSE, lineage = NULL, status = NULL, update = FALSE, updateInterval = 1 )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSCapabilities — WPSCapabilities","text":"identifier process identifier dataInputs named list data inputs, objects class WPSLiteralData, WPSComplexData WPSBoundingBoxData responseForm response form, object class WPSResponseDocument storeExecuteResponse store execute response? object class logical. FALSE default lineage lineage, object class logical status status, object class logical update update, object class logical. asynchronous requests updateInterval update interval, object class integer. asynchronous requests","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSCapabilities — WPSCapabilities","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSCapabilities — WPSCapabilities","text":"","code":"WPSCapabilities$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSCapabilities — WPSCapabilities","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSClient — WPSClient","title":"WPSClient — WPSClient","text":"WPSClient WPSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSClient — WPSClient","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSClient — WPSClient","text":"Object R6Class methods interfacing OGC Web Processing Service.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSClient — WPSClient","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSClient — WPSClient","text":"ows4R::OGCAbstractObject -> ows4R::OWSClient -> WPSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSClient — WPSClient","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSClient$getCASUrl() ows4R::OWSClient$getConfig() ows4R::OWSClient$getHeaders() ows4R::OWSClient$getPwd() ows4R::OWSClient$getToken() ows4R::OWSClient$getUrl() ows4R::OWSClient$getUser() ows4R::OWSClient$getVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSClient — WPSClient","text":"WPSClient$new() WPSClient$getCapabilities() WPSClient$reloadCapabilities() WPSClient$getProcesses() WPSClient$describeProcess() WPSClient$execute() WPSClient$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSClient — WPSClient","text":"method used instantiate WPSClient url OGC service. Authentication supported using basic auth (using user/pwd arguments), bearer token (using token argument), custom (using headers argument). default, logger argument set NULL (logger). argument accepts two possible values: INFO: print ows4R logs, DEBUG: print verbose logs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSClient — WPSClient","text":"","code":"WPSClient$new( url, serviceVersion = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), cas_url = NULL, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSClient — WPSClient","text":"url url serviceVersion WFS service version user user pwd password token token headers headers config config cas_url Central Authentication Service (CAS) URL logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"method-getcapabilities-","dir":"Reference","previous_headings":"","what":"Method getCapabilities()","title":"WPSClient — WPSClient","text":"Get WPS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSClient — WPSClient","text":"","code":"WPSClient$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSClient — WPSClient","text":"object class WPSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"method-reloadcapabilities-","dir":"Reference","previous_headings":"","what":"Method reloadCapabilities()","title":"WPSClient — WPSClient","text":"Reloads WPS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSClient — WPSClient","text":"","code":"WPSClient$reloadCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"method-getprocesses-","dir":"Reference","previous_headings":"","what":"Method getProcesses()","title":"WPSClient — WPSClient","text":"Get list processes offered service capabilities. pretty allows control type output. TRUE, data.frame returned. prettified output, also possible get 'full' description process setting full = TRUE case WPS client request process description (information process) process listed capabilities.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSClient — WPSClient","text":"","code":"WPSClient$getProcesses(pretty = FALSE, full = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSClient — WPSClient","text":"pretty pretty full full","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSClient — WPSClient","text":"list WPSProcessDescription data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"method-describeprocess-","dir":"Reference","previous_headings":"","what":"Method describeProcess()","title":"WPSClient — WPSClient","text":"Get description process, given identifier, returning object class WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSClient — WPSClient","text":"","code":"WPSClient$describeProcess(identifier)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSClient — WPSClient","text":"identifier process identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSClient — WPSClient","text":"object class WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"method-execute-","dir":"Reference","previous_headings":"","what":"Method execute()","title":"WPSClient — WPSClient","text":"Execute process, given identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSClient — WPSClient","text":"","code":"WPSClient$execute( identifier, dataInputs = list(), responseForm = NULL, storeExecuteResponse = FALSE, lineage = NULL, status = NULL, update = FALSE, updateInterval = 1 )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSClient — WPSClient","text":"identifier process identifier dataInputs named list data inputs, objects class WPSLiteralData, WPSComplexData WPSBoundingBoxData responseForm response form, object class WPSResponseDocument storeExecuteResponse store execute response? object class logical. FALSE default lineage lineage, object class logical status status, object class logical update update, object class logical. asynchronous requests updateInterval update interval, object class integer. asynchronous requests","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSClient — WPSClient","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSClient — WPSClient","text":"","code":"WPSClient$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSClient — WPSClient","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"WPSClient — WPSClient","text":"","code":"# \\dontrun{ #example based on a WPS endpoint responding at http://localhost:8080/geoserver/wps wps <- WPSClient$new(\"http://localhost:8080/geoserver/wps\", serviceVersion = \"1.0.0\") #> Error in curl::curl_fetch_memory(url, handle = handle): Failed to connect to localhost port 8080 after 0 ms: Connection refused #get capabilities caps <- wps$getCapabilities() #> Error in eval(expr, envir, enclos): object 'wps' not found # }"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSComplexData — WPSComplexData","title":"WPSComplexData — WPSComplexData","text":"WPSComplexData WPSComplexData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSComplexData — WPSComplexData","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSComplexData — WPSComplexData","text":"Object R6Class modelling WPS Complex Data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSComplexData — WPSComplexData","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSComplexData — WPSComplexData","text":"ows4R::OGCAbstractObject -> WPSComplexData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSComplexData — WPSComplexData","text":"value value","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSComplexData — WPSComplexData","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSComplexData — WPSComplexData","text":"WPSComplexData$new() WPSComplexData$decode() WPSComplexData$checkValidity() WPSComplexData$getFeatures() WPSComplexData$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSComplexData — WPSComplexData","text":"Initializes object class WPSComplexData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexData — WPSComplexData","text":"","code":"WPSComplexData$new( xml = NULL, value = NULL, schema = NULL, mimeType = NULL, serviceVersion = \"1.0.0\", cdata = TRUE )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexData — WPSComplexData","text":"xml object class XMLInternalNode-class initialize XML value value schema schema mimeType mime type serviceVersion WPS service version cdata whether value wrapped XML CDATA. Default TRUE","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WPSComplexData — WPSComplexData","text":"Decodes object class WPSComplexData XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexData — WPSComplexData","text":"","code":"WPSComplexData$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexData — WPSComplexData","text":"xml object class XMLInternalNode-class initialize XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"method-checkvalidity-","dir":"Reference","previous_headings":"","what":"Method checkValidity()","title":"WPSComplexData — WPSComplexData","text":"Check object parameter description inherited WPS process description, object class WPSComplexInputDescription. valid, function raise error.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexData — WPSComplexData","text":"","code":"WPSComplexData$checkValidity(parameterDescription)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexData — WPSComplexData","text":"parameterDescription object class WPSComplexInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSComplexData — WPSComplexData","text":"error valid","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"method-getfeatures-","dir":"Reference","previous_headings":"","what":"Method getFeatures()","title":"WPSComplexData — WPSComplexData","text":"Get features","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexData — WPSComplexData","text":"","code":"WPSComplexData$getFeatures()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSComplexData — WPSComplexData","text":"object class sf","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSComplexData — WPSComplexData","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexData — WPSComplexData","text":"","code":"WPSComplexData$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexData — WPSComplexData","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSComplexInputDescription — WPSComplexInputDescription","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"WPSComplexInputDescription WPSComplexInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"Object R6Class modelling WPS process complex input description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"ows4R::OGCAbstractObject -> ows4R::WPSParameter -> ows4R::WPSDescriptionParameter -> ows4R::WPSInputDescription -> WPSComplexInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::WPSParameter$getAbstract() ows4R::WPSParameter$getIdentifier() ows4R::WPSParameter$getTitle() ows4R::WPSDescriptionParameter$getDataType() ows4R::WPSDescriptionParameter$getFormats() ows4R::WPSInputDescription$asDataFrame() ows4R::WPSInputDescription$getMaxOccurs() ows4R::WPSInputDescription$getMinOccurs()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"WPSComplexInputDescription$new() WPSComplexInputDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"Initializes WPSComplexInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"","code":"WPSComplexInputDescription$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"xml object class XMLInternalNode-class XML version WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"","code":"WPSComplexInputDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSComplexOutputDescription — WPSComplexOutputDescription","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"WPSComplexOutputDescription WPSComplexOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"Object R6Class modelling WPS process complex input description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"ows4R::OGCAbstractObject -> ows4R::WPSParameter -> ows4R::WPSDescriptionParameter -> ows4R::WPSOutputDescription -> WPSComplexOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::WPSParameter$getAbstract() ows4R::WPSParameter$getIdentifier() ows4R::WPSParameter$getTitle() ows4R::WPSDescriptionParameter$getDataType() ows4R::WPSDescriptionParameter$getFormats()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"WPSComplexOutputDescription$new() WPSComplexOutputDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"Initializes WPSComplexOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"","code":"WPSComplexOutputDescription$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"xml object class XMLInternalNode-class XML version WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"","code":"WPSComplexOutputDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSDescribeProcess — WPSDescribeProcess","title":"WPSDescribeProcess — WPSDescribeProcess","text":"WPSDescribeProcess WPSDescribeProcess","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSDescribeProcess — WPSDescribeProcess","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSDescribeProcess — WPSDescribeProcess","text":"Object R6Class modelling WPS DescribeProcess request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSDescribeProcess — WPSDescribeProcess","text":"Class used internally ows4R trigger WPS DescribeProcess request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSDescribeProcess — WPSDescribeProcess","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSDescribeProcess — WPSDescribeProcess","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> WPSDescribeProcess","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSDescribeProcess — WPSDescribeProcess","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSDescribeProcess — WPSDescribeProcess","text":"WPSDescribeProcess$new() WPSDescribeProcess$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSDescribeProcess — WPSDescribeProcess","text":"Initializes WPSDescribeProcess service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSDescribeProcess — WPSDescribeProcess","text":"","code":"WPSDescribeProcess$new( capabilities, op, url, serviceVersion, identifier, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSDescribeProcess — WPSDescribeProcess","text":"capabilities object class WPSCapabilities op object class OWSOperation url url serviceVersion WPS service version identifier process identifier user user pwd password token token headers headers config config logger logger ... parameter pass request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSDescribeProcess — WPSDescribeProcess","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSDescribeProcess — WPSDescribeProcess","text":"","code":"WPSDescribeProcess$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSDescribeProcess — WPSDescribeProcess","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSDescriptionParameter — WPSDescriptionParameter","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"WPSDescriptionParameter WPSDescriptionParameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"Object R6Class modelling WPS process input description parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"ows4R::OGCAbstractObject -> ows4R::WPSParameter -> WPSDescriptionParameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::WPSParameter$getAbstract() ows4R::WPSParameter$getIdentifier() ows4R::WPSParameter$getTitle()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"WPSDescriptionParameter$new() WPSDescriptionParameter$getDataType() WPSDescriptionParameter$getFormats() WPSDescriptionParameter$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"Initializes WPSDescriptionParameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"","code":"WPSDescriptionParameter$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"xml object class XMLInternalNode-class XML version WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"method-getdatatype-","dir":"Reference","previous_headings":"","what":"Method getDataType()","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"Get data type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"","code":"WPSDescriptionParameter$getDataType()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"method-getformats-","dir":"Reference","previous_headings":"","what":"Method getFormats()","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"get formats","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"","code":"WPSDescriptionParameter$getFormats()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"formats","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"","code":"WPSDescriptionParameter$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSException — WPSException","title":"WPSException — WPSException","text":"WPSException WPSException","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSException — WPSException","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSException — WPSException","text":"Object R6Class modelling WPS Exception","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSException — WPSException","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSException — WPSException","text":"ows4R::OGCAbstractObject -> WPSException","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSException — WPSException","text":"value value percentCompleted percent completion","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSException — WPSException","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSException — WPSException","text":"WPSException$new() WPSException$decode() WPSException$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSException — WPSException","text":"Initializes WPSException","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSException — WPSException","text":"","code":"WPSException$new(xml = NULL, serviceVersion = \"1.0.0\")"},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSException — WPSException","text":"xml object class XMLInternalNode-class XML serviceVersion service version. Default \"1.0.0\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WPSException — WPSException","text":"Decodes object class WPSException XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSException — WPSException","text":"","code":"WPSException$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSException — WPSException","text":"xml object class XMLInternalNode-class XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSException — WPSException","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSException — WPSException","text":"","code":"WPSException$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSException — WPSException","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSExecute — WPSExecute","title":"WPSExecute — WPSExecute","text":"WPSExecute WPSExecute","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSExecute — WPSExecute","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSExecute — WPSExecute","text":"Object R6Class modelling WPS Execute request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSExecute — WPSExecute","text":"Class used internally ows4R trigger WPS Execute request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSExecute — WPSExecute","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSExecute — WPSExecute","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> WPSExecute","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSExecute — WPSExecute","text":"Identifier process identifier DataInputs list WPSInput ResponseForm response form","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSExecute — WPSExecute","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSExecute — WPSExecute","text":"WPSExecute$new() WPSExecute$getProcessDescription() WPSExecute$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSExecute — WPSExecute","text":"Initializes WPSExecute service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecute — WPSExecute","text":"","code":"WPSExecute$new( capabilities, op, url, serviceVersion, identifier, dataInputs = list(), responseForm = NULL, storeExecuteResponse = FALSE, lineage = NULL, status = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSExecute — WPSExecute","text":"capabilities object class WPSCapabilities op object class OWSOperation url url serviceVersion WPS service version identifier process identifier dataInputs named list data inputs, objects class WPSLiteralData, WPSComplexData WPSBoundingBoxData responseForm response form, object class WPSResponseDocument storeExecuteResponse store execute response? object class logical. FALSE default lineage lineage, object class logical status status, object class logical user user pwd password token token headers headers config config logger logger ... parameter pass request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"method-getprocessdescription-","dir":"Reference","previous_headings":"","what":"Method getProcessDescription()","title":"WPSExecute — WPSExecute","text":"Get process description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecute — WPSExecute","text":"","code":"WPSExecute$getProcessDescription()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSExecute — WPSExecute","text":"object class WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSExecute — WPSExecute","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecute — WPSExecute","text":"","code":"WPSExecute$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSExecute — WPSExecute","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSExecuteResponse — WPSExecuteResponse","title":"WPSExecuteResponse — WPSExecuteResponse","text":"WPSExecuteResponse WPSExecuteResponse","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSExecuteResponse — WPSExecuteResponse","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Object R6Class modelling WPS Execute response","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSExecuteResponse — WPSExecuteResponse","text":"ows4R::OGCAbstractObject -> WPSExecuteResponse","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSExecuteResponse — WPSExecuteResponse","text":"process process status status statusLocation status location statusHistory status history processOutputs process outputs exception exception","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSExecuteResponse — WPSExecuteResponse","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSExecuteResponse — WPSExecuteResponse","text":"WPSExecuteResponse$new() WPSExecuteResponse$getProcess() WPSExecuteResponse$getStatus() WPSExecuteResponse$getStatusLocation() WPSExecuteResponse$getStatusHistory() WPSExecuteResponse$getProcessOutputs() WPSExecuteResponse$getException() WPSExecuteResponse$decode() WPSExecuteResponse$update() WPSExecuteResponse$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Initializes WPSExecuteResponse","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$new( xml, capabilities, processDescription = NULL, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSExecuteResponse — WPSExecuteResponse","text":"xml object class XMLInternalNode-class XML capabilities object class WPSCapabilities processDescription process description logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-getprocess-","dir":"Reference","previous_headings":"","what":"Method getProcess()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Get process","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$getProcess()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSExecuteResponse — WPSExecuteResponse","text":"object class WPSProcess","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-getstatus-","dir":"Reference","previous_headings":"","what":"Method getStatus()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Get status","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$getStatus()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSExecuteResponse — WPSExecuteResponse","text":"object class WPSStatus","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-getstatuslocation-","dir":"Reference","previous_headings":"","what":"Method getStatusLocation()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Get status location","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$getStatusLocation()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSExecuteResponse — WPSExecuteResponse","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-getstatushistory-","dir":"Reference","previous_headings":"","what":"Method getStatusHistory()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Get status history","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$getStatusHistory()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSExecuteResponse — WPSExecuteResponse","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-getprocessoutputs-","dir":"Reference","previous_headings":"","what":"Method getProcessOutputs()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Get list process outputs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$getProcessOutputs()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSExecuteResponse — WPSExecuteResponse","text":"list outputs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-getexception-","dir":"Reference","previous_headings":"","what":"Method getException()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Get exception","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$getException()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSExecuteResponse — WPSExecuteResponse","text":"object class WPSException","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Decodes object class WPSExecuteResponse XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$decode(xml, capabilities, processDescription, logger)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSExecuteResponse — WPSExecuteResponse","text":"xml object class XMLInternalNode-class XML capabilities object class WPSCapabilities processDescription process description logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-update-","dir":"Reference","previous_headings":"","what":"Method update()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Updates status history","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$update(verbose = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSExecuteResponse — WPSExecuteResponse","text":"verbose verbose. Default FALSE","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSExecuteResponse — WPSExecuteResponse","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSFormat — WPSFormat","title":"WPSFormat — WPSFormat","text":"WPSFormat WPSFormat","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSFormat — WPSFormat","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSFormat — WPSFormat","text":"Object R6Class modelling WPS process input description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSFormat — WPSFormat","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSFormat — WPSFormat","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSFormat — WPSFormat","text":"ows4R::OGCAbstractObject -> WPSFormat","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSFormat — WPSFormat","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSFormat — WPSFormat","text":"WPSFormat$new() WPSFormat$getMimeType() WPSFormat$getEncoding() WPSFormat$getSchema() WPSFormat$setIsDefault() WPSFormat$isDefault() WPSFormat$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSFormat — WPSFormat","text":"Initializes object class WPSFormat","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSFormat — WPSFormat","text":"","code":"WPSFormat$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSFormat — WPSFormat","text":"xml object class XMLInternalNode-class initialize XML version WPS service version logger logger ... additional parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"method-getmimetype-","dir":"Reference","previous_headings":"","what":"Method getMimeType()","title":"WPSFormat — WPSFormat","text":"Get mime type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSFormat — WPSFormat","text":"","code":"WPSFormat$getMimeType()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSFormat — WPSFormat","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"method-getencoding-","dir":"Reference","previous_headings":"","what":"Method getEncoding()","title":"WPSFormat — WPSFormat","text":"Get encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSFormat — WPSFormat","text":"","code":"WPSFormat$getEncoding()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSFormat — WPSFormat","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"method-getschema-","dir":"Reference","previous_headings":"","what":"Method getSchema()","title":"WPSFormat — WPSFormat","text":"Get schema","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSFormat — WPSFormat","text":"","code":"WPSFormat$getSchema()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSFormat — WPSFormat","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"method-setisdefault-","dir":"Reference","previous_headings":"","what":"Method setIsDefault()","title":"WPSFormat — WPSFormat","text":"set default","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSFormat — WPSFormat","text":"","code":"WPSFormat$setIsDefault(default)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSFormat — WPSFormat","text":"default object class logical","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"method-isdefault-","dir":"Reference","previous_headings":"","what":"Method isDefault()","title":"WPSFormat — WPSFormat","text":"default","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSFormat — WPSFormat","text":"","code":"WPSFormat$isDefault()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSFormat — WPSFormat","text":"TRUE default, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSFormat — WPSFormat","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSFormat — WPSFormat","text":"","code":"WPSFormat$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSFormat — WPSFormat","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSInput — WPSInput","title":"WPSInput — WPSInput","text":"WPSInput WPSInput","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSInput — WPSInput","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSInput — WPSInput","text":"Object R6Class modelling WPS Input","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSInput — WPSInput","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSInput — WPSInput","text":"ows4R::OGCAbstractObject -> WPSInput","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSInput — WPSInput","text":"Identifier identifier Data data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSInput — WPSInput","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSInput — WPSInput","text":"WPSInput$new() WPSInput$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSInput — WPSInput","text":"Initializes WPSInput","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSInput — WPSInput","text":"","code":"WPSInput$new(xml = NULL, identifier, data, serviceVersion = \"1.0.0\")"},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSInput — WPSInput","text":"xml object class XMLInternalNode-class XML identifier identifier data data serviceVersion service version. Default \"1.0.0\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSInput — WPSInput","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSInput — WPSInput","text":"","code":"WPSInput$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSInput — WPSInput","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSInputDescription — WPSInputDescription","title":"WPSInputDescription — WPSInputDescription","text":"WPSInputDescription WPSInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSInputDescription — WPSInputDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSInputDescription — WPSInputDescription","text":"Object R6Class modelling WPS process input description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSInputDescription — WPSInputDescription","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSInputDescription — WPSInputDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSInputDescription — WPSInputDescription","text":"ows4R::OGCAbstractObject -> ows4R::WPSParameter -> ows4R::WPSDescriptionParameter -> WPSInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSInputDescription — WPSInputDescription","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::WPSParameter$getAbstract() ows4R::WPSParameter$getIdentifier() ows4R::WPSParameter$getTitle() ows4R::WPSDescriptionParameter$getDataType() ows4R::WPSDescriptionParameter$getFormats()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSInputDescription — WPSInputDescription","text":"WPSInputDescription$new() WPSInputDescription$getMinOccurs() WPSInputDescription$getMaxOccurs() WPSInputDescription$asDataFrame() WPSInputDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSInputDescription — WPSInputDescription","text":"Initializes WPSInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSInputDescription — WPSInputDescription","text":"","code":"WPSInputDescription$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSInputDescription — WPSInputDescription","text":"xml object class XMLInternalNode-class XML version WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"method-getminoccurs-","dir":"Reference","previous_headings":"","what":"Method getMinOccurs()","title":"WPSInputDescription — WPSInputDescription","text":"Get min occurs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSInputDescription — WPSInputDescription","text":"","code":"WPSInputDescription$getMinOccurs()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSInputDescription — WPSInputDescription","text":"min occurs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"method-getmaxoccurs-","dir":"Reference","previous_headings":"","what":"Method getMaxOccurs()","title":"WPSInputDescription — WPSInputDescription","text":"Get max occurs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSInputDescription — WPSInputDescription","text":"","code":"WPSInputDescription$getMaxOccurs()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSInputDescription — WPSInputDescription","text":"max occurs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"method-asdataframe-","dir":"Reference","previous_headings":"","what":"Method asDataFrame()","title":"WPSInputDescription — WPSInputDescription","text":"Get intput description data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSInputDescription — WPSInputDescription","text":"","code":"WPSInputDescription$asDataFrame()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSInputDescription — WPSInputDescription","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSInputDescription — WPSInputDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSInputDescription — WPSInputDescription","text":"","code":"WPSInputDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSInputDescription — WPSInputDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSLiteralData — WPSLiteralData","title":"WPSLiteralData — WPSLiteralData","text":"WPSLiteralData WPSLiteralData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSLiteralData — WPSLiteralData","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSLiteralData — WPSLiteralData","text":"Object R6Class modelling WPS Literal Data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSLiteralData — WPSLiteralData","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSLiteralData — WPSLiteralData","text":"ows4R::OGCAbstractObject -> WPSLiteralData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSLiteralData — WPSLiteralData","text":"value value","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSLiteralData — WPSLiteralData","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSLiteralData — WPSLiteralData","text":"WPSLiteralData$new() WPSLiteralData$decode() WPSLiteralData$checkValidity() WPSLiteralData$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSLiteralData — WPSLiteralData","text":"Initializes object class WPSLiteralData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralData — WPSLiteralData","text":"","code":"WPSLiteralData$new(xml = NULL, value = NULL, serviceVersion = \"1.0.0\")"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralData — WPSLiteralData","text":"xml object class XMLInternalNode-class initialize XML value value serviceVersion WPS service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WPSLiteralData — WPSLiteralData","text":"Decodes object class WPSLiteralData XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralData — WPSLiteralData","text":"","code":"WPSLiteralData$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralData — WPSLiteralData","text":"xml object class XMLInternalNode-class initialize XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"method-checkvalidity-","dir":"Reference","previous_headings":"","what":"Method checkValidity()","title":"WPSLiteralData — WPSLiteralData","text":"Check object parameter description inherited WPS process description, object class WPSLiteralInputDescription. valid, function raise error.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralData — WPSLiteralData","text":"","code":"WPSLiteralData$checkValidity(parameterDescription)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralData — WPSLiteralData","text":"parameterDescription object class WPSLiteralInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSLiteralData — WPSLiteralData","text":"error valid","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSLiteralData — WPSLiteralData","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralData — WPSLiteralData","text":"","code":"WPSLiteralData$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralData — WPSLiteralData","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSLiteralInputDescription — WPSLiteralInputDescription","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"WPSLiteralInputDescription WPSLiteralInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"Object R6Class modelling WPS process input description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"ows4R::OGCAbstractObject -> ows4R::WPSParameter -> ows4R::WPSDescriptionParameter -> ows4R::WPSInputDescription -> WPSLiteralInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::WPSParameter$getAbstract() ows4R::WPSParameter$getIdentifier() ows4R::WPSParameter$getTitle() ows4R::WPSDescriptionParameter$getFormats() ows4R::WPSInputDescription$asDataFrame() ows4R::WPSInputDescription$getMaxOccurs() ows4R::WPSInputDescription$getMinOccurs()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"WPSLiteralInputDescription$new() WPSLiteralInputDescription$getDataType() WPSLiteralInputDescription$getDefaultValue() WPSLiteralInputDescription$getAllowedValues() WPSLiteralInputDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"Initializes WPSLiteralInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"","code":"WPSLiteralInputDescription$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"xml object class XMLInternalNode-class XML version WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"method-getdatatype-","dir":"Reference","previous_headings":"","what":"Method getDataType()","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"Get data type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"","code":"WPSLiteralInputDescription$getDataType()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"data type, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"method-getdefaultvalue-","dir":"Reference","previous_headings":"","what":"Method getDefaultValue()","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"Get default value","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"","code":"WPSLiteralInputDescription$getDefaultValue()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"default value, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"method-getallowedvalues-","dir":"Reference","previous_headings":"","what":"Method getAllowedValues()","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"Get allowed values","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"","code":"WPSLiteralInputDescription$getAllowedValues()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"allowed values","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"","code":"WPSLiteralInputDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"WPSLiteralOutputDescription WPSLiteralOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"Object R6Class modelling WPS process literal output description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"ows4R::OGCAbstractObject -> ows4R::WPSParameter -> ows4R::WPSDescriptionParameter -> ows4R::WPSOutputDescription -> WPSLiteralOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::WPSParameter$getAbstract() ows4R::WPSParameter$getIdentifier() ows4R::WPSParameter$getTitle() ows4R::WPSDescriptionParameter$getDataType() ows4R::WPSDescriptionParameter$getFormats()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"WPSLiteralOutputDescription$new() WPSLiteralOutputDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"Initializes WPSLiteralOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"","code":"WPSLiteralOutputDescription$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"xml object class XMLInternalNode-class XML version WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"","code":"WPSLiteralOutputDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSOutput — WPSOutput","title":"WPSOutput — WPSOutput","text":"WPSOutput WPSOutput","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSOutput — WPSOutput","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSOutput — WPSOutput","text":"Object R6Class modelling WPS Input","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSOutput — WPSOutput","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSOutput — WPSOutput","text":"ows4R::OGCAbstractObject -> WPSOutput","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSOutput — WPSOutput","text":"Identifier identifier Title tile Data data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSOutput — WPSOutput","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSOutput — WPSOutput","text":"WPSOutput$new() WPSOutput$decode() WPSOutput$getData() WPSOutput$getDataValue() WPSOutput$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSOutput — WPSOutput","text":"Initializes WPSOutput","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSOutput — WPSOutput","text":"","code":"WPSOutput$new( xml = NULL, identifier = NULL, title = NULL, data = NULL, dataType = NULL, serviceVersion = \"1.0.0\" )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSOutput — WPSOutput","text":"xml object class XMLInternalNode-class XML identifier identifier title title data data dataType data type serviceVersion WPS service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WPSOutput — WPSOutput","text":"Decodes object class WPSOutput XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSOutput — WPSOutput","text":"","code":"WPSOutput$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSOutput — WPSOutput","text":"xml object class XMLInternalNode-class XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"method-getdata-","dir":"Reference","previous_headings":"","what":"Method getData()","title":"WPSOutput — WPSOutput","text":"Get data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSOutput — WPSOutput","text":"","code":"WPSOutput$getData()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSOutput — WPSOutput","text":"data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"method-getdatavalue-","dir":"Reference","previous_headings":"","what":"Method getDataValue()","title":"WPSOutput — WPSOutput","text":"Get data value","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSOutput — WPSOutput","text":"","code":"WPSOutput$getDataValue()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSOutput — WPSOutput","text":"data value","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSOutput — WPSOutput","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSOutput — WPSOutput","text":"","code":"WPSOutput$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSOutput — WPSOutput","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSOutputDescription — WPSOutputDescription","title":"WPSOutputDescription — WPSOutputDescription","text":"WPSOutputDescription WPSOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSOutputDescription — WPSOutputDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSOutputDescription — WPSOutputDescription","text":"Object R6Class modelling WPS process input description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSOutputDescription — WPSOutputDescription","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSOutputDescription — WPSOutputDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSOutputDescription — WPSOutputDescription","text":"ows4R::OGCAbstractObject -> ows4R::WPSParameter -> ows4R::WPSDescriptionParameter -> WPSOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSOutputDescription — WPSOutputDescription","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::WPSParameter$getAbstract() ows4R::WPSParameter$getIdentifier() ows4R::WPSParameter$getTitle() ows4R::WPSDescriptionParameter$getDataType() ows4R::WPSDescriptionParameter$getFormats()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSOutputDescription — WPSOutputDescription","text":"WPSOutputDescription$new() WPSOutputDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSOutputDescription — WPSOutputDescription","text":"Initializes WPSOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSOutputDescription — WPSOutputDescription","text":"","code":"WPSOutputDescription$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSOutputDescription — WPSOutputDescription","text":"xml object class XMLInternalNode-class XML version WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSOutputDescription — WPSOutputDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSOutputDescription — WPSOutputDescription","text":"","code":"WPSOutputDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSOutputDescription — WPSOutputDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSParameter — WPSParameter","title":"WPSParameter — WPSParameter","text":"WPSParameter WPSParameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSParameter — WPSParameter","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSParameter — WPSParameter","text":"Object R6Class modelling WPS parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSParameter — WPSParameter","text":"Abstract class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSParameter — WPSParameter","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSParameter — WPSParameter","text":"ows4R::OGCAbstractObject -> WPSParameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSParameter — WPSParameter","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSParameter — WPSParameter","text":"WPSParameter$new() WPSParameter$getIdentifier() WPSParameter$getTitle() WPSParameter$getAbstract() WPSParameter$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSParameter — WPSParameter","text":"Initializes object class WPSParameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSParameter — WPSParameter","text":"","code":"WPSParameter$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSParameter — WPSParameter","text":"xml object class XMLInternalNode-class initialize XML version WPS service version logger logger ... additional parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"method-getidentifier-","dir":"Reference","previous_headings":"","what":"Method getIdentifier()","title":"WPSParameter — WPSParameter","text":"Get identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSParameter — WPSParameter","text":"","code":"WPSParameter$getIdentifier()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSParameter — WPSParameter","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"method-gettitle-","dir":"Reference","previous_headings":"","what":"Method getTitle()","title":"WPSParameter — WPSParameter","text":"Get title","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSParameter — WPSParameter","text":"","code":"WPSParameter$getTitle()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSParameter — WPSParameter","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"method-getabstract-","dir":"Reference","previous_headings":"","what":"Method getAbstract()","title":"WPSParameter — WPSParameter","text":"Get abstract","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSParameter — WPSParameter","text":"","code":"WPSParameter$getAbstract()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSParameter — WPSParameter","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSParameter — WPSParameter","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSParameter — WPSParameter","text":"","code":"WPSParameter$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSParameter — WPSParameter","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSProcess — WPSProcess","title":"WPSProcess — WPSProcess","text":"WPSProcess WPSProcess","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSProcess — WPSProcess","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSProcess — WPSProcess","text":"Object R6Class modelling WPS process","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSProcess — WPSProcess","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSProcess — WPSProcess","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSProcess — WPSProcess","text":"ows4R::OGCAbstractObject -> WPSProcess","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSProcess — WPSProcess","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSProcess — WPSProcess","text":"WPSProcess$new() WPSProcess$getIdentifier() WPSProcess$getTitle() WPSProcess$getVersion() WPSProcess$getDescription() WPSProcess$execute() WPSProcess$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSProcess — WPSProcess","text":"Initializes WPSProcess","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcess — WPSProcess","text":"","code":"WPSProcess$new(xml, capabilities = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSProcess — WPSProcess","text":"xml object class XMLInternalNode-class XML capabilities object class WPSCapabilities version service version logger logger ... additional parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"method-getidentifier-","dir":"Reference","previous_headings":"","what":"Method getIdentifier()","title":"WPSProcess — WPSProcess","text":"Get identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcess — WPSProcess","text":"","code":"WPSProcess$getIdentifier()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcess — WPSProcess","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"method-gettitle-","dir":"Reference","previous_headings":"","what":"Method getTitle()","title":"WPSProcess — WPSProcess","text":"Get title","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcess — WPSProcess","text":"","code":"WPSProcess$getTitle()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcess — WPSProcess","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"method-getversion-","dir":"Reference","previous_headings":"","what":"Method getVersion()","title":"WPSProcess — WPSProcess","text":"Get version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcess — WPSProcess","text":"","code":"WPSProcess$getVersion()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcess — WPSProcess","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"method-getdescription-","dir":"Reference","previous_headings":"","what":"Method getDescription()","title":"WPSProcess — WPSProcess","text":"Get description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcess — WPSProcess","text":"","code":"WPSProcess$getDescription()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcess — WPSProcess","text":"object class WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"method-execute-","dir":"Reference","previous_headings":"","what":"Method execute()","title":"WPSProcess — WPSProcess","text":"Execute process","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcess — WPSProcess","text":"","code":"WPSProcess$execute( dataInputs = list(), responseForm = NULL, storeExecuteResponse = FALSE, lineage = NULL, status = NULL, update = FALSE, updateInterval = 1 )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSProcess — WPSProcess","text":"dataInputs named list data inputs, objects class WPSLiteralData, WPSComplexData WPSBoundingBoxData responseForm response form, object class WPSResponseDocument storeExecuteResponse store execute response? object class logical. FALSE default lineage lineage, object class logical status status, object class logical update update, object class logical. asynchronous requests updateInterval update interval, object class integer. asynchronous requests","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSProcess — WPSProcess","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcess — WPSProcess","text":"","code":"WPSProcess$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSProcess — WPSProcess","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSProcessDescription — WPSProcessDescription","title":"WPSProcessDescription — WPSProcessDescription","text":"WPSProcessDescription WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSProcessDescription — WPSProcessDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSProcessDescription — WPSProcessDescription","text":"Object R6Class modelling WPS process description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSProcessDescription — WPSProcessDescription","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSProcessDescription — WPSProcessDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSProcessDescription — WPSProcessDescription","text":"ows4R::OGCAbstractObject -> WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSProcessDescription — WPSProcessDescription","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSProcessDescription — WPSProcessDescription","text":"WPSProcessDescription$new() WPSProcessDescription$getIdentifier() WPSProcessDescription$getTitle() WPSProcessDescription$getAbstract() WPSProcessDescription$getVersion() WPSProcessDescription$isStatusSupported() WPSProcessDescription$isStoreSupported() WPSProcessDescription$getDataInputs() WPSProcessDescription$getProcessOutputs() WPSProcessDescription$asDataFrame() WPSProcessDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSProcessDescription — WPSProcessDescription","text":"Initializes object class WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$new(xml, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSProcessDescription — WPSProcessDescription","text":"xml object class XMLInternalNode-class XML version version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-getidentifier-","dir":"Reference","previous_headings":"","what":"Method getIdentifier()","title":"WPSProcessDescription — WPSProcessDescription","text":"Get process identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$getIdentifier()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"identifier, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-gettitle-","dir":"Reference","previous_headings":"","what":"Method getTitle()","title":"WPSProcessDescription — WPSProcessDescription","text":"Get process title","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$getTitle()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"title, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-getabstract-","dir":"Reference","previous_headings":"","what":"Method getAbstract()","title":"WPSProcessDescription — WPSProcessDescription","text":"Get process abstract","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$getAbstract()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"abstract, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-getversion-","dir":"Reference","previous_headings":"","what":"Method getVersion()","title":"WPSProcessDescription — WPSProcessDescription","text":"Get process version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$getVersion()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSProcessDescription — WPSProcessDescription","text":"version, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-isstatussupported-","dir":"Reference","previous_headings":"","what":"Method isStatusSupported()","title":"WPSProcessDescription — WPSProcessDescription","text":"Indicates status supported","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$isStatusSupported()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"TRUE supported, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-isstoresupported-","dir":"Reference","previous_headings":"","what":"Method isStoreSupported()","title":"WPSProcessDescription — WPSProcessDescription","text":"Indicates store supported","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$isStoreSupported()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"TRUE supported, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-getdatainputs-","dir":"Reference","previous_headings":"","what":"Method getDataInputs()","title":"WPSProcessDescription — WPSProcessDescription","text":"Get data inputs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$getDataInputs()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"list objects extending WPSInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-getprocessoutputs-","dir":"Reference","previous_headings":"","what":"Method getProcessOutputs()","title":"WPSProcessDescription — WPSProcessDescription","text":"Get process outputs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$getProcessOutputs()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"list objects extending WPSOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-asdataframe-","dir":"Reference","previous_headings":"","what":"Method asDataFrame()","title":"WPSProcessDescription — WPSProcessDescription","text":"Convenience method export process description data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$asDataFrame()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"data.frame giving process description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSProcessDescription — WPSProcessDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSProcessDescription — WPSProcessDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSResponseDocument — WPSResponseDocument","title":"WPSResponseDocument — WPSResponseDocument","text":"WPSResponseDocument WPSResponseDocument","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSResponseDocument — WPSResponseDocument","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSResponseDocument — WPSResponseDocument","text":"Object R6Class modelling OGC WPS response document","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSResponseDocument — WPSResponseDocument","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSResponseDocument — WPSResponseDocument","text":"ows4R::OGCAbstractObject -> WPSResponseDocument","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSResponseDocument — WPSResponseDocument","text":"Output output property","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSResponseDocument — WPSResponseDocument","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSResponseDocument — WPSResponseDocument","text":"WPSResponseDocument$new() WPSResponseDocument$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSResponseDocument — WPSResponseDocument","text":"Initializes WPSResponseDocument","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSResponseDocument — WPSResponseDocument","text":"","code":"WPSResponseDocument$new( xml = NULL, storeExecuteResponse = FALSE, lineage = NULL, status = NULL, output = NULL, serviceVersion = \"1.0.0\" )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSResponseDocument — WPSResponseDocument","text":"xml object class XMLInternalNode-class XML storeExecuteResponse store execute response, object class logical lineage lineage, object class logical status status, object class logical output output serviceVersion WPS service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSResponseDocument — WPSResponseDocument","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSResponseDocument — WPSResponseDocument","text":"","code":"WPSResponseDocument$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSResponseDocument — WPSResponseDocument","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSStatus — WPSStatus","title":"WPSStatus — WPSStatus","text":"WPSStatus WPSStatus","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSStatus — WPSStatus","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSStatus — WPSStatus","text":"Object R6Class modelling WPS Status","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSStatus — WPSStatus","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSStatus — WPSStatus","text":"ows4R::OGCAbstractObject -> WPSStatus","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSStatus — WPSStatus","text":"value status value percentCompleted status percentage completion","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSStatus — WPSStatus","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSStatus — WPSStatus","text":"WPSStatus$new() WPSStatus$decode() WPSStatus$getValue() WPSStatus$getPercentCompleted() WPSStatus$getCreationTime() WPSStatus$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSStatus — WPSStatus","text":"Initalizes WPSStatus object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSStatus — WPSStatus","text":"","code":"WPSStatus$new(xml = NULL, serviceVersion = \"1.0.0\")"},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSStatus — WPSStatus","text":"xml object class XMLInternalNode-class XML serviceVersion WPS service version. Default \"1.0.0\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WPSStatus — WPSStatus","text":"Decodes WPS status XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSStatus — WPSStatus","text":"","code":"WPSStatus$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSStatus — WPSStatus","text":"xml object class XMLInternalNode-class XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"method-getvalue-","dir":"Reference","previous_headings":"","what":"Method getValue()","title":"WPSStatus — WPSStatus","text":"Get status value, among accepted WPS status values defined WPS standard: ProcessAccepted, ProcessStarted, ProcessPaused, ProcessSucceeded, ProcessFailed.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSStatus — WPSStatus","text":"","code":"WPSStatus$getValue()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSStatus — WPSStatus","text":"value, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"method-getpercentcompleted-","dir":"Reference","previous_headings":"","what":"Method getPercentCompleted()","title":"WPSStatus — WPSStatus","text":"Get percentage completion","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSStatus — WPSStatus","text":"","code":"WPSStatus$getPercentCompleted()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSStatus — WPSStatus","text":"percentage completion, object class integer","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"method-getcreationtime-","dir":"Reference","previous_headings":"","what":"Method getCreationTime()","title":"WPSStatus — WPSStatus","text":"Get creation time","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSStatus — WPSStatus","text":"","code":"WPSStatus$getCreationTime()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSStatus — WPSStatus","text":"creation time, object class POSIXct","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSStatus — WPSStatus","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSStatus — WPSStatus","text":"","code":"WPSStatus$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSStatus — WPSStatus","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespace.html","id":null,"dir":"Reference","previous_headings":"","what":"getOWSNamespace — getOWSNamespace","title":"getOWSNamespace — getOWSNamespace","text":"getOWSNamespace gets namespace given id","code":""},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespace.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"getOWSNamespace — getOWSNamespace","text":"","code":"getOWSNamespace(id)"},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespace.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"getOWSNamespace — getOWSNamespace","text":"id namespace prefix","code":""},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespace.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"getOWSNamespace — getOWSNamespace","text":"Emmanuel Blondel, emmanuel.blondel1@gmail.com","code":""},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespace.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"getOWSNamespace — getOWSNamespace","text":"","code":"getOWSNamespace(\"GMD\") #> NULL"},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespaces.html","id":null,"dir":"Reference","previous_headings":"","what":"getOWSNamespaces — getOWSNamespaces","title":"getOWSNamespaces — getOWSNamespaces","text":"getOWSNamespaces gets list namespaces registered","code":""},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespaces.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"getOWSNamespaces — getOWSNamespaces","text":"","code":"getOWSNamespaces()"},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespaces.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"getOWSNamespaces — getOWSNamespaces","text":"Emmanuel Blondel, emmanuel.blondel1@gmail.com","code":""},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespaces.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"getOWSNamespaces — getOWSNamespaces","text":"","code":"getOWSNamespaces() #> [[1]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: csw #> initialize: function (id, uri) #> uri: http://www.opengis.net/cat/csw/2.0.2 #> #> [[2]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: csw30 #> initialize: function (id, uri) #> uri: http://www.opengis.net/cat/csw/3.0 #> #> [[3]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: fes #> initialize: function (id, uri) #> uri: http://www.opengis.net/fes/2.0 #> #> [[4]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: ogc #> initialize: function (id, uri) #> uri: http://www.opengis.net/ogc #> #> [[5]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: ows #> initialize: function (id, uri) #> uri: http://www.opengis.net/ows #> #> [[6]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: ows #> initialize: function (id, uri) #> uri: http://www.opengis.net/ows/1.1 #> #> [[7]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: wcs #> initialize: function (id, uri) #> uri: http://www.opengis.net/wcs/2.0 #> #> [[8]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: wcs #> initialize: function (id, uri) #> uri: http://www.opengis.net/wcs/2.1 #> #> [[9]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: wms #> initialize: function (id, uri) #> uri: http://www.opengis.net/wms #> #> [[10]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: wms #> initialize: function (id, uri) #> uri: http://www.opengis.net/wms #> #> [[11]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: wms #> initialize: function (id, uri) #> uri: http://www.opengis.net/wms #> #> [[12]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: wms #> initialize: function (id, uri) #> uri: http://www.opengis.net/wms #> #> [[13]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: wps #> initialize: function (id, uri) #> uri: http://www.opengis.net/wps/1.0.0 #> #> [[14]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: xlink #> initialize: function (id, uri) #> uri: http://www.w3.org/1999/xlink #> #> [[15]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: xsi #> initialize: function (id, uri) #> uri: http://www.w3.org/2001/XMLSchema-instance #>"},{"path":"https://eblondel.github.io/ows4R/reference/ows4R.html","id":null,"dir":"Reference","previous_headings":"","what":"Interface to OGC Web-Services — ows4R","title":"Interface to OGC Web-Services — ows4R","text":"Provides Interface Web-Services defined standards Open Geospatial Consortium (OGC), including Web Feature Service (WFS) vector data, Web Coverage Service (WCS), Catalogue Service (CSW) ISO/OGC metadata, associated standards common web-service specification (OWS) OGC Filter Encoding. Partial support provided Web Map Service (WMS) Web Processing Service (WPS). purpose add support additional OGC service standards Web Coverage Processing Service (WCPS) OGC API.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/ows4R.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Interface to OGC Web-Services — ows4R","text":"Emmanuel Blondel emmanuel.blondel1@gmail.com","code":""},{"path":"https://eblondel.github.io/ows4R/reference/registerOWSNamespace.html","id":null,"dir":"Reference","previous_headings":"","what":"registerOWSNamespace — registerOWSNamespace","title":"registerOWSNamespace — registerOWSNamespace","text":"registerOWSNamespace allows register new namespace ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/registerOWSNamespace.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"registerOWSNamespace — registerOWSNamespace","text":"","code":"registerOWSNamespace(id, uri, force)"},{"path":"https://eblondel.github.io/ows4R/reference/registerOWSNamespace.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"registerOWSNamespace — registerOWSNamespace","text":"id prefix namespace uri URI namespace force logical parameter indicating registration forced case identified namespace already registered","code":""},{"path":"https://eblondel.github.io/ows4R/reference/registerOWSNamespace.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"registerOWSNamespace — registerOWSNamespace","text":"Emmanuel Blondel, emmanuel.blondel1@gmail.com","code":""},{"path":"https://eblondel.github.io/ows4R/reference/registerOWSNamespace.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"registerOWSNamespace — registerOWSNamespace","text":"","code":"registerOWSNamespace(id = \"myprefix\", uri = \"http://someuri\")"},{"path":"https://eblondel.github.io/ows4R/reference/setOWSNamespaces.html","id":null,"dir":"Reference","previous_headings":"","what":"setOWSNamespaces — setOWSNamespaces","title":"setOWSNamespaces — setOWSNamespaces","text":"setOWSNamespaces","code":""},{"path":"https://eblondel.github.io/ows4R/reference/setOWSNamespaces.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"setOWSNamespaces — setOWSNamespaces","text":"","code":"setOWSNamespaces()"},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-04--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.4 |","title":"ows4R 0.4 |","text":"Corrections #111 WCSCoverageSummary - Fix download failure due min/max handling #112 OWSHttpRequest GET doesn’t detect existing params make GetCapabilities fail #113 WCSGetCoverage- Fix vendor params handling #119 WCS Coverage descriptions - patch rewrite CRS online resources https #120 Service requests CAS work anymore New features #116 Support Service exceptions handling #117 Support pretty print R6 objects Enhancements #122 Service exceptions always handled status code 400 #123 Missing axis labels handling WCS coverage envelope #124 Optimize WFS getFeatures depending outputFormat","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-03-6--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.3-6 |","title":"ows4R 0.3-6 |","text":"CRAN release: 2023-09-01 Corrections #110 ‘hasGeometry’ based FeatureType description enough case propertyNames used geom Enhancements #109 Improve CSV support WFS","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-03-5--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.3-5 |","title":"ows4R 0.3-5 |","text":"CRAN release: 2023-04-13 Enhancements #106 ows4R switch s2 default (s2 ISO/OGC compliant)","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-03-4--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.3-4 |","title":"ows4R 0.3-4 |","text":"CRAN release: 2023-03-10 Corrections #102 OWSHttpRequest - issue json format handled text Enhancements #101 WFS - Ensure features CRS inherited","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-03-3--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.3-3 |","title":"ows4R 0.3-3 |","text":"CRAN release: 2023-01-12 Corrections #99 CRS inherited WFS/GetFeatures","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-03-2--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.3-2 |","title":"ows4R 0.3-2 |","text":"CRAN release: 2022-11-08 Corrections #89 Align WCS getCoverage arguments wrapper #91 getCoverage needs download tempdir instead current wd, filename provider #96 summary$getDimensions() returning coefficients anymore Enhancements #88 describeCoverage & getCoverage returning rangeType info multiband coverages (supported geometa#187 - OGC SWE support - geometa#197 enhancement) #89 Allow geometa classes inheritance using ows4R:: (supported geometa#201 enhancement)","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-03-1--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.3-1 |","title":"ows4R 0.3-1 |","text":"CRAN release: 2022-08-19 Corrections #87 Upgrade roxygen2 7.2.1 fix html issues","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-03--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.3 |","title":"ows4R 0.3 |","text":"CRAN release: 2022-07-05 New features #9 WCS client support #58 Implement ‘exact’ find method WMS layers #63 CAS authentication client support #64 Support httr config argument OGC service clients #73 Implement progress bar OWS GET data requests #74 Get styles WMS layer Enhancements #61 Generalize auth-related arguments OWS Http requests #78 Remove dependency rgdal Corrections #56 Duplicate feature findFeatureTypeByName #76 WFS getFeatures json csv work - bad writer","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-02--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.2 |","title":"ows4R 0.2 |","text":"CRAN release: 2021-11-30 Corrections #45 WFS featureType getDescription fails prettified missing properties #49 OWS Capabilities components correctly parsed ref namespace service (eg. wms) Enhancements #41 Add control hasGeometry case geom excluded propertyNames #42 Support WFS output formats GML #44 Warning raised reading WFS capabilities / proj4 +init New features #10 Support WPS client version 1.0.0 #15 Generalize auth clients/requests #43 Support WMS GetCapabilities, GetFeatureInfo requests","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-01-5--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.1-5 |","title":"ows4R 0.1-5 |","text":"CRAN release: 2020-05-27 Enhancements #34 WFS – Support coercing date/datetime fields #35 WFS – Improve support WFS 2.0 #36 WFS – findFeatureTypeByName fixes #37 WFS – Support xsd:float primitive type #38 WFS – add pretty option feature type description #39 CSW – fix getRecordById feature catalogue (ISO 19110) parsing","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-01-4--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.1-4 |","title":"ows4R 0.1-4 |","text":"CRAN release: 2019-11-12 Corrections *#32 Regression WFS getfeatures - issue setting CQL_filter","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-01-3--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.1-3 |","title":"ows4R 0.1-3 |","text":"CRAN release: 2019-11-05 Corrections #14 debug parameter shouldn’t passed OWS requests #30 WFS - Handle Resulttype Hits get features response Enhancements enhancements New Features #16 Add support Bearer (token) authentication #28 Support geometa record validate/inspire options CSW-T","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-01-2--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.1-2 |","title":"ows4R 0.1-2 |","text":"CRAN release: 2019-06-18 Corrections #12 Issue maxRecords parameter scope getRecords #13 Bad XML encoding OGC BBOX Expression #19 mapping FeatureType datatypes fails case sensitive datatypes Enhancements #18 Issue missing EPSG:404000 code found init file #20 WFS FeatureTypeElement support xs/xsd types & elements restrictions #24 improve getFeatureTypes #21 Test insertion / update multi-lingual metadata records New Features #16 add function reload client capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-01-1--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.1-1 |","title":"ows4R 0.1-1 |","text":"CRAN release: 2019-05-26 Corrections #12 Issue maxRecords parameter scope getRecords #13 Bad XML encoding OGC BBOX Expression #19 mapping FeatureType datatypes fails case sensitive datatypes (support #17) Enhancements #16 Add function reload client capabilities #18 Handle specific CRS wildcard EPSG:404000 #20 WFS FeatureTypeElement support xs/xsd types & elements restrictions (support #17) #21 Test insertion / update multi-lingual metadata records New Features new features now","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-01-0--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.1-0 |","title":"ows4R 0.1-0 |","text":"CRAN release: 2018-08-31 New features #8 Allow authentication OWS Requests #7 Prepare 1st release CRAN #6 Set travis-ci build integration tests / quality assurance #5 OGC Filter Encoding + XML representation #4 OWS (Common Web-Service) OGC - OWS #3 CSW Client, versions 2.0.2 (including Transaction Harvest), partial support 3.0 #2 WFS Client, versions 1.0.0, 1.1.0, 2.0.0 main operations (GetCapabilities, DescribeFeatureType, GetFeature #1 Set-package structure","code":""}] +[{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"create-csw-client","dir":"Articles","previous_headings":"","what":"Create CSW Client","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"order operate Catalogue Service, need create interface R CSW. done class CSWClient, follows: can define level logger: “INFO” get ows4R logs, “DEBUG” internal logs (Curl details). also possible define username credentials case operations require authentication use Catalogue Service. operations require authentication (e.g. CSW Transaction operations GeoNetwork), may need specify user pwd parameters.","code":"CSW <- CSWClient$new(\"http://localhost:8080/csw\", \"2.0.2\", logger = \"INFO\")"},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"get-capabilities-getcapabilities","dir":"Articles","previous_headings":"","what":"Get Capabilities (GetCapabilities)","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"create CSWClient, ows4R run GetCapabilities request. access CSW Capabilities sections, can use following code:","code":"caps <- CSW$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"describe-a-record-describerecord","dir":"Articles","previous_headings":"","what":"Describe a record (DescribeRecord)","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"YET SUPPORTED","code":""},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"get-a-record-getrecordbyid","dir":"Articles","previous_headings":"","what":"Get a record (GetRecordById)","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"example shows get metadata record ID, bind geometa ISO/OGC metadata classes.","code":"#supposing a metadata identified as \"my-metadata-identifier\" md <- CSW$getRecordById(\"my-metadata-identifier\", outputSchema = \"http://www.isotc211.org/2005/gmd\")"},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"get-records-getrecords","dir":"Articles","previous_headings":"","what":"Get records (GetRecords)","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"section gives several examples get records ows4R CSW client.","code":""},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"basic-query","dir":"Articles","previous_headings":"Get records (GetRecords)","what":"Basic query","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"basic GetRecords request can done following code: default, request return 5 first metadata records. records returned Dublin Core metadata format, handled list R.","code":"records <- CSW$getRecords()"},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"query-with-maxrecords-parameter","dir":"Articles","previous_headings":"Get records (GetRecords)","what":"Query with maxRecords parameter","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"change maximum number records returned, use maxRecords parameter","code":"records <- CSW$getRecords(maxRecords = 20L)"},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"query-with-cql-filters","dir":"Articles","previous_headings":"Get records (GetRecords)","what":"Query with CQL filters","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"query records based filter, introduce 2 notions inherited CSW specification: query handled ows4R accept parameter constraint (corresponding given filter). Query CQL Filter metadata title example shows : create CSWConstraint specifying CQL text filter metadata title. properties refer Dublin Core metadata format, hence notation dc:title. set CSWQuery based constraint/filter get get metadata records based query Query CQL Filter metadata title abstract Another example GetRecords query CQL filter based two properties (title, abstract): Query CQL Filter metadata identifier may also try perform ``GetRecords``` based metadata identifier. case existing metadata record identifier, expect get list length 1.","code":"cons <- CSWConstraint$new(cqlText = \"dc:title like '%ips%'\") query <- CSWQuery$new(constraint = cons) records <- CSW$getRecords(query = query) cons <- CSWConstraint$new(cqlText = \"dc:title like '%ips%' and dct:abstract like '%pharetra%'\") query <- CSWQuery$new(constraint = cons) records <- CSW$getRecords(query = query) cons <- CSWConstraint$new(cqlText = \"dc:identifier = 'my-metadata-identifier'\") query <- CSWQuery$new(constraint = cons) records <- CSW$getRecords(query = query)"},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"query-with-ogc-filters","dir":"Articles","previous_headings":"Get records (GetRecords)","what":"Query with OGC filters","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"Instead using CQL text filter, ows4R allows specify OGC Filter basis build CSWConstraint. OGC Filters can created class/function OGCFilter specifying expression, among following: PropertyIsEqualTo / PropertyIsNotEqualTo PropertyIsLessThan / PropertyIsGreaterThan PropertyIsLessThanOrEqualTo / PropertyIsGreaterThanOrEqualTo PropertyIsLike PropertyIsNull PropertyIsBetween BBOX Query OGC filter - PropertyIsLike example constructs constraint OGCFilter made PropertyIsLike predicate CSW AnyText. result list records _any text like ‘%Physio%’ (records string ‘Physio’ included): Query OGC filter - PropertyIsEqualTo","code":"filter <- OGCFilter$new( PropertyIsLike$new(\"csw:AnyText\", \"%Physio%\")) cons <- CSWConstraint$new(filter = filter) query <- CSWQuery$new(constraint = cons) records <- csw2$getRecords(query = query) filter <- OGCFilter$new( PropertyIsEqualTo$new(\"csw:AnyText\", \"species\")) cons <- CSWConstraint$new(filter = filter) query <- CSWQuery$new(constraint = cons) records <- CSW$getRecords(query = query)"},{"path":"https://eblondel.github.io/ows4R/articles/csw.html","id":"transaction---insertupdatedelete-transaction","dir":"Articles","previous_headings":"","what":"Transaction - Insert,Update,Delete (Transaction)","title":"Use ows4R with OGC CSW (Catalogue Service for the Web)","text":"CSW server used supports Transaction operations (Insert, Update, Delete), ows4R allows perform operations. following examples highlight different operations available: Insert Update (Full) Update (Partial) Delete methods insertRecord updateRecord also support options deal geometa ISOMetadata objects. option geometa_validate set default TRUE operates validation vs. ISO/TC 19139 schemas. option geometa_inspire can enabled test metadata INSPIRE. Records inserted/updated CSW-T include footer XML comments containing validation details. See geometa documentation","code":"mdfile <- system.file(\"extdata/data\", \"metadata.xml\", package = \"ows4R\") md <- geometa::ISOMetadata$new(xml = XML::xmlParse(mdfile)) insert <- CSW$insertRecord(record = md) insert$getResult() #TRUE if inserted, FALSE otherwise md$identificationInfo[[1]]$citation$setTitle(\"a new title\") update <- CSW$updateRecord(record = md) update$getResult() #TRUE if updated, FALSE otherwise recordProperty <- CSWRecordProperty$new(\"apiso:Title\", \"NEW_TITLE\") filter = OGCFilter$new(PropertyIsEqualTo$new(\"apiso:Identifier\", md$fileIdentifier)) constraint <- CSWConstraint$new(filter = filter) update <- CSW$updateRecord(recordProperty = recordProperty, constraint = constraint) update$getResult() #TRUE if updated, FALSE otherwise delete <- CSW$deleteRecordById(md$fileIdentifier) delete$getResult() #TRUE if deleted, FALSE otherwise"},{"path":"https://eblondel.github.io/ows4R/articles/wcs.html","id":"create-wcs-client","dir":"Articles","previous_headings":"","what":"Create WCS Client","title":"Use ows4R with OGC WCS (Web Coverage Service)","text":"order operate Web Coverage Service, need create interface R WCS. done class WCSClient, follows: can define level logger: “INFO” get ows4R logs, “DEBUG” internal logs (Curl details). also possible define username password (user pwd parameters) case operations require authentication use Web Coverage Service. Note: also possible connect ot WCS means Central Authentication System (CAS) ows4R CASClient. , can pass CAS URL means cas_url argument.","code":"WCS <- WCSClient$new(\"https://ows.rasdaman.org/rasdaman/ows\", \"2.1.0\", logger = \"INFO\")"},{"path":"https://eblondel.github.io/ows4R/articles/wcs.html","id":"get-capabilities-getcapabilities","dir":"Articles","previous_headings":"","what":"Get Capabilities (GetCapabilities)","title":"Use ows4R with OGC WCS (Web Coverage Service)","text":"create WCSClient, ows4R run GetCapabilities request. access WCS Capabilities sections, can use following code:","code":"caps <- WCS$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/articles/wcs.html","id":"get-coverage-summaries","dir":"Articles","previous_headings":"","what":"Get coverage summaries","title":"Use ows4R with OGC WCS (Web Coverage Service)","text":"capabilities, possible get coverage summaries caps$getCoverageSummaries(). method return list objects class WCSCoverageSummary. get/find specific coverage summary name, can run following method:","code":"chla <- caps$findCoverageSummaryById(\"AverageChloroColorScaled\", exact = T)"},{"path":"https://eblondel.github.io/ows4R/articles/wcs.html","id":"describe-a-coverage-describecoverage","dir":"Articles","previous_headings":"","what":"Describe a coverage (DescribeCoverage)","title":"Use ows4R with OGC WCS (Web Coverage Service)","text":"description coverage can fetched either coverage summary directly WCS client. invoked first time, OGC WCS DescribeCoverage request done. Get description coverage summary Get description WCS client coverage description corresponds exhaustive metadata set describing coverage characteristics coverage limits space time. represented object class WCSCoverageDescription including core GML metadata properties usable R thanks geometa. Get list coverage dimensions Associated coverage description, ows4R defined convenient method list dimensions coverage: method particularly useful spatio-temporal coverage, allowing retrieve temporal extent (time instants available given coverage). present example, coverage available download certain number time instants:","code":"chla_des <- chla$getDescription() chla_des <- WCS$describeCoverage(\"AverageChloroColorScaled\") chla_dims <- chla$getDimensions() chla_time_instants <- chla_dims[[1]]$coefficients"},{"path":"https://eblondel.github.io/ows4R/articles/wcs.html","id":"get-coverage-data-getcoverage","dir":"Articles","previous_headings":"","what":"Get coverage data (GetCoverage)","title":"Use ows4R with OGC WCS (Web Coverage Service)","text":"Get single coverage coverage well-described dimensions well-known, ’s possible get coverage data. Similarly coverage description, coverage data can get either coverage summary, directly WCS Client (specifying coverage name first argument). Note however getting data WCS, data DIRECTLY accessed R web-service, data downloaded temporary file within R session temp directory. done transparently ows4R, without action required user. examples show get coverage coverage summary object. possible limit spatial (spatial-temporal) extent : slicing: specify single value specific dimension, eg. elevation, time trimming: specify min-max values range specific dimension, eg. lon/lat result getCoverage method object class SpatRaster terra package. Get stack coverages ows4R extends WCS standard allows users download coverage stack means extra getCoverageStack method (available coverage summary object). code shows download timeseries coverages latest five time instants available:","code":"cov_data <- chla$getCoverage( bbox = OWSUtils$toBBOX(-10, -9, 40, 42), time = chla_dims[[1]]$coefficients[[1]] ) cov_stack <- chla$getCoverageStack( bbox = OWSUtils$toBBOX(-10, -9, 40, 42), time = tail(chla_dims[[1]]$coefficients, 5) )"},{"path":"https://eblondel.github.io/ows4R/articles/wcs.html","id":"download-coverage-data-files","dir":"Articles","previous_headings":"","what":"Download coverage data files","title":"Use ows4R with OGC WCS (Web Coverage Service)","text":"methods described allow read coverage data within R terra package without persisting data specific files named user, temporary file within R session temp directory. However sometimes required wished download coverage data files file system. ows4R allows download coverage data files getCoverage getCoverageStack. single coverage getCoverage method provides filename argument can used download data files: coverage stack download data files coverage stack, required provide function, handled argument filename_handler set coverage target file name. function set mandatory arguments, namely: identifier (coverage identifier), time (time filter), elevation (elevation filter), bbox (bbox filter), format (target format); output function filename used given coverage. simplify download ows4R puts disposal ready--use filename handler named WCSCoverageFilenameHandler enough add trigger data files download.","code":"cov_data <- chla$getCoverage( bbox = OWSUtils$toBBOX(-10, -9, 40, 42), time = chla_dims[[1]]$coefficients[[1]], filename = \"myfile.tif\" ) cov_stack <- chla$getCoverageStack( bbox = OWSUtils$toBBOX(-10, -9, 40, 42), time = tail(chla_dims[[1]]$coefficients, 5), filename_handler = WCSCoverageFilenameHandler )"},{"path":"https://eblondel.github.io/ows4R/articles/wcs.html","id":"comparing-data-get-from-wcs-getcoverage-vs--wms-getfeatureinfo","dir":"Articles","previous_headings":"","what":"Comparing data get from WCS (GetCoverage) vs. WMS (GetFeatureInfo)","title":"Use ows4R with OGC WCS (Web Coverage Service)","text":"matter quality assurance, possible compare raster data values get using WCS/Getcoverage data values get WMS/GetFeatureInfo operation (emulating map click). example illustrates check:","code":"require(terra) require(testthat) #Get data using WCS vliz <- WCSClient$new(url = \"https://geo.vliz.be/geoserver/wcs\", serviceVersion = \"2.0.1\", logger = \"DEBUG\") cov <- vliz$getCapabilities()$findCoverageSummaryById(\"Emodnetbio__aca_spp_19582016_L1\", exact = TRUE) cov_des <- cov$getDescription() cov_data <- cov$getCoverage( bbox = OWSUtils$toBBOX(8.37,8.41,58.18,58.24), time = cov$getDimensions()[[3]]$coefficients[1] ) cov_data_stack <- cov$getCoverageStack( bbox = OWSUtils$toBBOX(8.37,8.41,58.18,58.24), time = cov$getDimensions()[[3]]$coefficients[1] ) expect_true(terra::compareGeom(cov_data,cov_data_stack)) #compare with data returned by WMS GetFeatureInfo vliz_wms <- WMSClient$new(url = \"https://geo.vliz.be/geoserver/wms\", service = \"1.1.1\", logger = \"DEBUG\") gfi <- vliz_wms$getFeatureInfo( layer = \"Emodnetbio:aca_spp_19582016_L1\", feature_count = 1, x = 50, y = 50, srs = \"EPSG:4326\", width = 101, height = 101, bbox = OWSUtils$toBBOX(8.12713623046875,8.68194580078125,57.92266845703125,58.47747802734375) ) #final check expect_equal(terra::values(cov_data)[[1]], gfi$relative_abundance)"},{"path":"https://eblondel.github.io/ows4R/authors.html","id":null,"dir":"","previous_headings":"","what":"Authors","title":"Authors and Citation","text":"Emmanuel Blondel. Author, maintainer. Alexandre Bennici. Contributor. Norbert Billet. Contributor.","code":""},{"path":"https://eblondel.github.io/ows4R/authors.html","id":"citation","dir":"","previous_headings":"","what":"Citation","title":"Authors and Citation","text":"Blondel E (2024). ows4R: Interface OGC Web-Services (OWS). R package version 0.4, https://eblondel.github.io/ows4R/, https://www.ogc.org/standards/, https://github.com/eblondel/ows4R.","code":"@Manual{, title = {ows4R: Interface to OGC Web-Services (OWS)}, author = {Emmanuel Blondel}, year = {2024}, note = {R package version 0.4, https://eblondel.github.io/ows4R/, https://www.ogc.org/standards/}, url = {https://github.com/eblondel/ows4R}, }"},{"path":"https://eblondel.github.io/ows4R/index.html","id":"sponsors","dir":"","previous_headings":"","what":"Sponsors","title":"Interface to OGC Web-Services (OWS)","text":"following projects contributed strenghten ows4R: core, WFS CSW support WMS WPS support Blue-Cloud received funding European Union’s Horizon programme call BG-07-2019-2020, topic: [] 2019 - Blue Cloud services, Grant Agreement .862409. WCS support","code":""},{"path":"https://eblondel.github.io/ows4R/index.html","id":"citation","dir":"","previous_headings":"Sponsors","what":"Citation","title":"Interface to OGC Web-Services (OWS)","text":"thank advance people use ows4R citing work / publication(s). , please use citation provided link","code":""},{"path":"https://eblondel.github.io/ows4R/index.html","id":"ogc-standards-coverage-status","dir":"","previous_headings":"","what":"OGC standards coverage status","title":"Interface to OGC Web-Services (OWS)","text":"case missing feature, create ticket.","code":""},{"path":"https://eblondel.github.io/ows4R/index.html","id":"development-perspectives","dir":"","previous_headings":"","what":"Development perspectives","title":"Interface to OGC Web-Services (OWS)","text":"Support additional OGC web-service standard specifications including: Web Coverage Processing Service (WCPS) Filter Encoding (FES) version 2.0 Web Feature Service (WFS) Transaction operations Catalogue Service (CSW) version 3.0 (including Transaction Harvest operations) OGC API … information, interested funding R project contribute , hesitate contact e-mail","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"And — And","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"And — And","text":"Object R6Class modelling operator","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"And — And","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"And — And","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryLogicOpType -> ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"And — And","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::BinaryLogicOpType$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"And — And","text":"$new() $clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"And — And","text":"Initializes expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"And — And","text":"","code":"And$new(...)"},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"And — And","text":"... list objects class OGCExpression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"And — And","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"And — And","text":"","code":"And$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"And — And","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/And.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"And — And","text":"","code":"expr1 <- PropertyIsEqualTo$new(PropertyName = \"property1\", Literal = \"value1\") expr2 <- PropertyIsEqualTo$new(PropertyName = \"property2\", Literal = \"value2\") and <- And$new(expr1,expr2) and_xml <- and$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":null,"dir":"Reference","previous_headings":"","what":"BBOX — BBOX","title":"BBOX — BBOX","text":"BBOX BBOX","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"BBOX — BBOX","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"BBOX — BBOX","text":"Object R6Class modelling BBOX","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"BBOX — BBOX","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"BBOX — BBOX","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> BBOX","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"BBOX — BBOX","text":"PropertyName property name field XML encoding Envelope envelope object class GMLEnvelope geometa","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"BBOX — BBOX","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"BBOX — BBOX","text":"BBOX$new() BBOX$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"BBOX — BBOX","text":"Initializes BBOX expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"BBOX — BBOX","text":"","code":"BBOX$new(bbox, srsName = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"BBOX — BBOX","text":"bbox object class matrix srsName srs name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"BBOX — BBOX","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"BBOX — BBOX","text":"","code":"BBOX$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"BBOX — BBOX","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BBOX.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"BBOX — BBOX","text":"","code":"bbox <- OWSUtils$toBBOX(-180,-90,180,90) expr <- BBOX$new(bbox) expr_xml <- expr$encode() #see how it looks like in XML #> [geometa][WARN] Element '{http://www.opengis.net/gml}Envelope': No matching global declaration available for the validation root at line 1. #> [geometa][WARN] Object 'GMLEnvelope' is INVALID according to ISO 19139 XML schemas!"},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":null,"dir":"Reference","previous_headings":"","what":"BinaryComparisonOpType — BinaryComparisonOpType","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"BinaryComparisonOpType BinaryComparisonOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"Object R6Class modelling BinaryComparisonOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"abstract super class property operation classes","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> BinaryComparisonOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"PropertyName property name field XML encoding Literal literal field XML encoding attrs attributes XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"BinaryComparisonOpType$new() BinaryComparisonOpType$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"Initializes object extending BinaryComparisonOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"","code":"BinaryComparisonOpType$new( element, namespacePrefix, PropertyName, Literal, matchCase = NA )"},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"element element name namespacePrefix XML namespace prefix PropertyName property name Literal literal matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"","code":"BinaryComparisonOpType$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/BinaryComparisonOpType.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"BinaryComparisonOpType — BinaryComparisonOpType","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":null,"dir":"Reference","previous_headings":"","what":"BinaryLogicOpType — BinaryLogicOpType","title":"BinaryLogicOpType — BinaryLogicOpType","text":"BinaryLogicOpType BinaryLogicOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"BinaryLogicOpType — BinaryLogicOpType","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"BinaryLogicOpType — BinaryLogicOpType","text":"Object R6Class modelling BinaryLogicOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"BinaryLogicOpType — BinaryLogicOpType","text":"abstract super class binary logical operation classes","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"BinaryLogicOpType — BinaryLogicOpType","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> BinaryLogicOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"BinaryLogicOpType — BinaryLogicOpType","text":"operations list OGC expressions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"BinaryLogicOpType — BinaryLogicOpType","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"BinaryLogicOpType — BinaryLogicOpType","text":"BinaryLogicOpType$new() BinaryLogicOpType$setExprVersion() BinaryLogicOpType$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"BinaryLogicOpType — BinaryLogicOpType","text":"Initializes BinaryLogicOpType expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"BinaryLogicOpType — BinaryLogicOpType","text":"","code":"BinaryLogicOpType$new(..., element, namespacePrefix, exprVersion = \"1.1.0\")"},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"BinaryLogicOpType — BinaryLogicOpType","text":"... list objects class OGCExpression element element namespacePrefix namespacePrefix exprVersion OGC expression version. Default \"1.1.0\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"method-setexprversion-","dir":"Reference","previous_headings":"","what":"Method setExprVersion()","title":"BinaryLogicOpType — BinaryLogicOpType","text":"Sets expression version. methods control expression versions set operations specified expression.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"BinaryLogicOpType — BinaryLogicOpType","text":"","code":"BinaryLogicOpType$setExprVersion(exprVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"BinaryLogicOpType — BinaryLogicOpType","text":"exprVersion OGC expression version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"BinaryLogicOpType — BinaryLogicOpType","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"BinaryLogicOpType — BinaryLogicOpType","text":"","code":"BinaryLogicOpType$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/BinaryLogicOpType.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"BinaryLogicOpType — BinaryLogicOpType","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":null,"dir":"Reference","previous_headings":"","what":"CASClient — CASClient","title":"CASClient — CASClient","text":"CASClient CASClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CASClient — CASClient","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CASClient — CASClient","text":"Object R6Class methods interfacing Central Authentication Service (CAS).","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"CASClient — CASClient","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CASClient — CASClient","text":"Emmanuel Blondel ","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CASClient — CASClient","text":"CASClient$new() CASClient$getUrl() CASClient$login() CASClient$logout() CASClient$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CASClient — CASClient","text":"Initializes object class CASClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CASClient — CASClient","text":"","code":"CASClient$new(url)"},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CASClient — CASClient","text":"url base URL Central Authentication Service (CAS)","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"method-geturl-","dir":"Reference","previous_headings":"","what":"Method getUrl()","title":"CASClient — CASClient","text":"Get CAS base URL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CASClient — CASClient","text":"","code":"CASClient$getUrl()"},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"CASClient — CASClient","text":"base URL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"method-login-","dir":"Reference","previous_headings":"","what":"Method login()","title":"CASClient — CASClient","text":"Logs CAS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"CASClient — CASClient","text":"","code":"CASClient$login(user, pwd)"},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CASClient — CASClient","text":"user user pwd password","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"CASClient — CASClient","text":"TRUE logged , FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"method-logout-","dir":"Reference","previous_headings":"","what":"Method logout()","title":"CASClient — CASClient","text":"Logs CAS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"CASClient — CASClient","text":"","code":"CASClient$logout()"},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"CASClient — CASClient","text":"TRUE logged , FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CASClient — CASClient","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"CASClient — CASClient","text":"","code":"CASClient$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CASClient.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"CASClient — CASClient","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWCapabilities — CSWCapabilities","title":"CSWCapabilities — CSWCapabilities","text":"CSWCapabilities CSWCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWCapabilities — CSWCapabilities","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWCapabilities — CSWCapabilities","text":"Object R6Class methods interfacing OGC Catalogue Service Web (CSW) Get Capabilities document.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"CSWCapabilities — CSWCapabilities","text":"Class used read CSWCapabilities document. use CSWClient recommended instead benefit full set capabilities associated CSW server.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWCapabilities — CSWCapabilities","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"CSWCapabilities — CSWCapabilities","text":"ows4R::OGCAbstractObject -> ows4R::OWSCapabilities -> CSWCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWCapabilities — CSWCapabilities","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSCapabilities$getClient() ows4R::OWSCapabilities$getOWSVersion() ows4R::OWSCapabilities$getOperationsMetadata() ows4R::OWSCapabilities$getRequest() ows4R::OWSCapabilities$getService() ows4R::OWSCapabilities$getServiceIdentification() ows4R::OWSCapabilities$getServiceProvider() ows4R::OWSCapabilities$getServiceVersion() ows4R::OWSCapabilities$getUrl() ows4R::OWSCapabilities$setClient()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWCapabilities — CSWCapabilities","text":"CSWCapabilities$new() CSWCapabilities$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWCapabilities — CSWCapabilities","text":"Initializes CSWCapabilities object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWCapabilities — CSWCapabilities","text":"","code":"CSWCapabilities$new(url, version, client = NULL, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWCapabilities — CSWCapabilities","text":"url url version version client object class CSWClient logger logger type NULL, \"INFO\" \"DEBUG\" ... parameter pass OWSGetCapabilities service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWCapabilities — CSWCapabilities","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWCapabilities — CSWCapabilities","text":"","code":"CSWCapabilities$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWCapabilities.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWCapabilities — CSWCapabilities","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWClient — CSWClient","title":"CSWClient — CSWClient","text":"CSWClient CSWClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWClient — CSWClient","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWClient — CSWClient","text":"Object R6Class methods interfacing OGC Catalogue Service Web.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWClient — CSWClient","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"CSWClient — CSWClient","text":"ows4R::OGCAbstractObject -> ows4R::OWSClient -> CSWClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWClient — CSWClient","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSClient$getCASUrl() ows4R::OWSClient$getConfig() ows4R::OWSClient$getHeaders() ows4R::OWSClient$getPwd() ows4R::OWSClient$getToken() ows4R::OWSClient$getUrl() ows4R::OWSClient$getUser() ows4R::OWSClient$getVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWClient — CSWClient","text":"CSWClient$new() CSWClient$getCapabilities() CSWClient$reloadCapabilities() CSWClient$describeRecord() CSWClient$getRecordById() CSWClient$getRecords() CSWClient$transaction() CSWClient$insertRecord() CSWClient$updateRecord() CSWClient$deleteRecord() CSWClient$deleteRecordById() CSWClient$harvestRecord() CSWClient$harvestNode() CSWClient$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWClient — CSWClient","text":"method used instantiate CSWClient url OGC service. Authentication supported using basic auth (using user/pwd arguments), bearer token (using token argument), custom (using headers argument). default, logger argument set NULL (logger). argument accepts two possible values: INFO: print ows4R logs, DEBUG: print verbose logs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$new( url, serviceVersion = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), cas_url = NULL, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"url url serviceVersion CSW service version user user pwd password token token headers headers config config cas_url Central Authentication Service (CAS) URL logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-getcapabilities-","dir":"Reference","previous_headings":"","what":"Method getCapabilities()","title":"CSWClient — CSWClient","text":"Get CSW capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"object class CSWCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-reloadcapabilities-","dir":"Reference","previous_headings":"","what":"Method reloadCapabilities()","title":"CSWClient — CSWClient","text":"Reloads CSW capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$reloadCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-describerecord-","dir":"Reference","previous_headings":"","what":"Method describeRecord()","title":"CSWClient — CSWClient","text":"Describe records. Retrieves XML schema CSW records. default, returns XML schema CSW records (http://www.opengis.net/cat/csw/2.0.2). schemas, specify outputSchema required, e.g. http://www.isotc211.org/2005/gmd ISO 19115/19139 schema","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$describeRecord(namespace, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"namespace namespace ... parameter pass CSWDescribeRecord service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"service record description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-getrecordbyid-","dir":"Reference","previous_headings":"","what":"Method getRecordById()","title":"CSWClient — CSWClient","text":"Get record Id. default, record returned following CSW schema (http://www.opengis.net/cat/csw/2.0.2). schemas, specify outputSchema required, e.g. http://www.isotc211.org/2005/gmd ISO 19115/19139 records. parameter elementSetName among values \"full\", \"brief\", \"summary\". default \"full\" corresponds full metadata sheet returned. \"brief\" \"summary\" contain subset metadata content.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$getRecordById(id, elementSetName = \"full\", ...)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"id record id elementSetName element set name. Default \"full\" ... parameter pass CSWGetRecordById service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"fetched record, NULL otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-getrecords-","dir":"Reference","previous_headings":"","what":"Method getRecords()","title":"CSWClient — CSWClient","text":"Get records based query, object class CSWQuery. maximum number records can set either full query (maxRecords) per request (maxRecordsPerRequest, default set 10 records) considering operation paginated. default, record returned following CSW schema (http://www.opengis.net/cat/csw/2.0.2). schemas, specify outputSchema required, e.g. http://www.isotc211.org/2005/gmd ISO 19115/19139 records.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$getRecords( query = CSWQuery$new(), maxRecords = NULL, maxRecordsPerRequest = 10L, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"query object class CSWQuery. default, empty query set. maxRecords max number total records. Default NULL meaning records returned. maxRecordsPerRequest max number records return per request. Default set 10. ... parameter passed CSWGetRecords service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"list records. default record returned Dublin Core list object. case ISO 19115/19139 set outputSchema, record object class ISOMetadata geometa.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-transaction-","dir":"Reference","previous_headings":"","what":"Method transaction()","title":"CSWClient — CSWClient","text":"Generic transaction method. Used inserting, updating deleting metadata using transactional CSW service. type gives type transaction (Insert, Update, Delete). record","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$transaction( type, record = NULL, recordProperty = NULL, constraint = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"type transaction either \"Insert\", \"Update\" \"Delete\" record record subject transaction recordProperty record property, object class CSWRecordProperty constraint constraint, object class CSWConstraint ... parameter pass CSWTransaction service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"TRUE transaction succeeded, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-insertrecord-","dir":"Reference","previous_headings":"","what":"Method insertRecord()","title":"CSWClient — CSWClient","text":"Inserts new record","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$insertRecord(record, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-5","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"record record subject Insertion ... parameter pass transaction","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"TRUE insertion succeeded, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-updaterecord-","dir":"Reference","previous_headings":"","what":"Method updateRecord()","title":"CSWClient — CSWClient","text":"Updates existing record","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$updateRecord( record = NULL, recordProperty = NULL, constraint = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-6","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"record record subject Insertion recordProperty record property, object class CSWRecordProperty constraint constraint, object class CSWConstraint ... parameter pass transaction","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"TRUE update succeeded, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-deleterecord-","dir":"Reference","previous_headings":"","what":"Method deleteRecord()","title":"CSWClient — CSWClient","text":"Deletes existing (set ) record(s). constraint (object class CSWConstraint) can specified limit deletion records.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$deleteRecord(record = NULL, constraint = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-7","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"record record subject Insertion constraint constraint, object class CSWConstraint ... parameter pass transaction","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"TRUE deletion succeeded, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-deleterecordbyid-","dir":"Reference","previous_headings":"","what":"Method deleteRecordById()","title":"CSWClient — CSWClient","text":"Deletes existing record identifier (constraint used identify record based identifier).","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$deleteRecordById(id)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-8","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"id record id","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-8","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"TRUE deletion succeeded, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-harvestrecord-","dir":"Reference","previous_headings":"","what":"Method harvestRecord()","title":"CSWClient — CSWClient","text":"Harvests single record sourceUrl, given resourceType (default \"http://www.isotc211.org/2005/gmd\").","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-11","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$harvestRecord( sourceUrl, resourceType = \"http://www.isotc211.org/2005/gmd\" )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-9","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"sourceUrl source URL resourceType resource type. Default \"http://www.isotc211.org/2005/gmd\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-9","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"TRUE harvesting succeeded, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-harvestnode-","dir":"Reference","previous_headings":"","what":"Method harvestNode()","title":"CSWClient — CSWClient","text":"Harvests CSW node (endpoint defined url). query (object class CSWQuery) can specificed needed restrain harvesting subset. resourceType defines type resources harvested (default \"http://www.isotc211.org/2005/gmd\")","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-12","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$harvestNode( url, query = CSWQuery$new(), resourceType = \"http://www.isotc211.org/2005/gmd\", sourceBaseUrl )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-10","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"url CSW node URL query CSW query, object class CSWQuery resourceType resource type. Default \"http://www.isotc211.org/2005/gmd\" sourceBaseUrl source base URL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"returns-10","dir":"Reference","previous_headings":"","what":"Returns","title":"CSWClient — CSWClient","text":"object class list giving number records found actually harvested","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWClient — CSWClient","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"usage-13","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWClient — CSWClient","text":"","code":"CSWClient$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"arguments-11","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWClient — CSWClient","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWClient.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"CSWClient — CSWClient","text":"","code":"# \\dontrun{ #example based on CSW endpoint responding at http://localhost:8000/csw csw <- CSWClient$new(\"http://localhost:8000/csw\", serviceVersion = \"2.0.2\") #> Error in curl::curl_fetch_memory(url, handle = handle): Failed to connect to localhost port 8000 after 0 ms: Connection refused #get capabilities caps <- csw$getCapabilities() #> Error in eval(expr, envir, enclos): object 'csw' not found #get records records <- csw$getRecords() #> Error in eval(expr, envir, enclos): object 'csw' not found #get record by id record <- csw$getRecordById(\"my-metadata-id\") #> Error in eval(expr, envir, enclos): object 'csw' not found #Advanced examples at https://github.com/eblondel/ows4R/wiki#csw # }"},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWConstraint — CSWConstraint","title":"CSWConstraint — CSWConstraint","text":"CSWConstraint CSWConstraint","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWConstraint — CSWConstraint","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWConstraint — CSWConstraint","text":"Object R6Class modelling CSW Constraint","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWConstraint — CSWConstraint","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"CSWConstraint — CSWConstraint","text":"ows4R::OGCAbstractObject -> CSWConstraint","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"CSWConstraint — CSWConstraint","text":"wrap internal property object XML encoding CqlText text use CQL filter filter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWConstraint — CSWConstraint","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWConstraint — CSWConstraint","text":"CSWConstraint$new() CSWConstraint$setServiceVersion() CSWConstraint$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWConstraint — CSWConstraint","text":"Initializes CSWConstraint object used constrain CSW operations.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWConstraint — CSWConstraint","text":"","code":"CSWConstraint$new(cqlText = NULL, filter = NULL, serviceVersion = \"2.0.2\")"},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWConstraint — CSWConstraint","text":"cqlText cqlText, object class character filter filter, object extending OGCFilter serviceVersion CSW service version. Default \"2.0.2\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"method-setserviceversion-","dir":"Reference","previous_headings":"","what":"Method setServiceVersion()","title":"CSWConstraint — CSWConstraint","text":"Set service version. methods ensures underlying filter property properly set right OGC filter version.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWConstraint — CSWConstraint","text":"","code":"CSWConstraint$setServiceVersion(serviceVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWConstraint — CSWConstraint","text":"serviceVersion service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWConstraint — CSWConstraint","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWConstraint — CSWConstraint","text":"","code":"CSWConstraint$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWConstraint — CSWConstraint","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWConstraint.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"CSWConstraint — CSWConstraint","text":"","code":"filter <- OGCFilter$new( PropertyIsEqualTo$new(\"apiso:Identifier\", \"12345\") ) cons <- CSWConstraint$new(filter = filter) cons_xml <- cons$encode() #how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWDescribeRecord — CSWDescribeRecord","title":"CSWDescribeRecord — CSWDescribeRecord","text":"CSWDescribeRecord CSWDescribeRecord","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWDescribeRecord — CSWDescribeRecord","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWDescribeRecord — CSWDescribeRecord","text":"Object R6Class modelling CSW DescribeRecord request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"CSWDescribeRecord — CSWDescribeRecord","text":"Class used internally ows4R trigger CSW DescribeRecord request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWDescribeRecord — CSWDescribeRecord","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"CSWDescribeRecord — CSWDescribeRecord","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> CSWDescribeRecord","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWDescribeRecord — CSWDescribeRecord","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWDescribeRecord — CSWDescribeRecord","text":"CSWDescribeRecord$new() CSWDescribeRecord$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWDescribeRecord — CSWDescribeRecord","text":"Initializes CSWDescribeRecord service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWDescribeRecord — CSWDescribeRecord","text":"","code":"CSWDescribeRecord$new( capabilities, op, url, version, namespace = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWDescribeRecord — CSWDescribeRecord","text":"capabilities object class CSWCapabilities op object class OWSOperation retrieved capabilities url url version version namespace namespace user user pwd password token token headers headers config config logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWDescribeRecord — CSWDescribeRecord","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWDescribeRecord — CSWDescribeRecord","text":"","code":"CSWDescribeRecord$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWDescribeRecord.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWDescribeRecord — CSWDescribeRecord","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWGetRecordById — CSWGetRecordById","title":"CSWGetRecordById — CSWGetRecordById","text":"CSWGetRecordById CSWGetRecordById","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWGetRecordById — CSWGetRecordById","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWGetRecordById — CSWGetRecordById","text":"Object R6Class modelling CSW GetRecordById request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"CSWGetRecordById — CSWGetRecordById","text":"Class used internally ows4R trigger CSW GetRecordById request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWGetRecordById — CSWGetRecordById","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"CSWGetRecordById — CSWGetRecordById","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> CSWGetRecordById","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"CSWGetRecordById — CSWGetRecordById","text":"Id record Id property request XML encoding ElementSetName element set name property XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWGetRecordById — CSWGetRecordById","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWGetRecordById — CSWGetRecordById","text":"CSWGetRecordById$new() CSWGetRecordById$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWGetRecordById — CSWGetRecordById","text":"Initializes CSWGetRecordById service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWGetRecordById — CSWGetRecordById","text":"","code":"CSWGetRecordById$new( capabilities, op, url, serviceVersion = \"2.0.2\", user = NULL, pwd = NULL, token = NULL, headers = headers, config = httr::config(), id, elementSetName = \"full\", logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWGetRecordById — CSWGetRecordById","text":"capabilities object class CSWCapabilities op object class OWSOperation retrieved capabilities url url serviceVersion serviceVersion. Default \"2.0.2 user user pwd password token token headers headers config config id record id elementSetName element set name. Default \"full\" logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWGetRecordById — CSWGetRecordById","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWGetRecordById — CSWGetRecordById","text":"","code":"CSWGetRecordById$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecordById.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWGetRecordById — CSWGetRecordById","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWGetRecords — CSWGetRecords","title":"CSWGetRecords — CSWGetRecords","text":"CSWGetRecords CSWGetRecords","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWGetRecords — CSWGetRecords","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWGetRecords — CSWGetRecords","text":"Object R6Class modelling CSW GetRecords request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"CSWGetRecords — CSWGetRecords","text":"Class used internally ows4R trigger CSW GetRecords request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWGetRecords — CSWGetRecords","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"CSWGetRecords — CSWGetRecords","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> CSWGetRecords","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"CSWGetRecords — CSWGetRecords","text":"Query query property request XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWGetRecords — CSWGetRecords","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWGetRecords — CSWGetRecords","text":"CSWGetRecords$new() CSWGetRecords$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWGetRecords — CSWGetRecords","text":"Initializes CSWGetRecordById service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWGetRecords — CSWGetRecords","text":"","code":"CSWGetRecords$new( capabilities, op, url, serviceVersion = \"2.0.2\", user = NULL, pwd = NULL, token = NULL, headers = list(), config = httr::config(), query = NULL, logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWGetRecords — CSWGetRecords","text":"capabilities object class CSWCapabilities op object class OWSOperation retrieved capabilities url url serviceVersion serviceVersion. Default \"2.0.2 user user pwd password token token headers headers config config query object class CSWQuery logger logger ... parameter pass service request, resultType, startPosition, maxRecords, outputFormat, outputSchema","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWGetRecords — CSWGetRecords","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWGetRecords — CSWGetRecords","text":"","code":"CSWGetRecords$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWGetRecords.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWGetRecords — CSWGetRecords","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWHarvest — CSWHarvest","title":"CSWHarvest — CSWHarvest","text":"CSWHarvest CSWHarvest","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWHarvest — CSWHarvest","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWHarvest — CSWHarvest","text":"Object R6Class modelling CSW Harvest request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"CSWHarvest — CSWHarvest","text":"Class used internally ows4R trigger CSW Harvest request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWHarvest — CSWHarvest","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"CSWHarvest — CSWHarvest","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> CSWHarvest","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"CSWHarvest — CSWHarvest","text":"Source source property request XML encoding ResourceType resource type property request XML encoding ResourceFormat resource format property request XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWHarvest — CSWHarvest","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWHarvest — CSWHarvest","text":"CSWHarvest$new() CSWHarvest$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWHarvest — CSWHarvest","text":"Initializes CSWHarvest service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWHarvest — CSWHarvest","text":"","code":"CSWHarvest$new( capabilities, op, url, serviceVersion = \"2.0.2\", user = NULL, pwd = NULL, token = NULL, headers = list(), config = httr::config(), source = NULL, resourceType = \"http://www.isotc211.org/schemas/2005/gmd/\", resourceFormat = \"application/xml\", logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWHarvest — CSWHarvest","text":"capabilities object class CSWCapabilities op object class OWSOperation retrieved capabilities url url serviceVersion serviceVersion. Default \"2.0.2 user user pwd password token token headers headers config config source source resourceType resource type. Default \"http://www.isotc211.org/schemas/2005/gmd/\" resourceFormat resource format. Default \"application/xml\" logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWHarvest — CSWHarvest","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWHarvest — CSWHarvest","text":"","code":"CSWHarvest$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWHarvest.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWHarvest — CSWHarvest","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWQuery — CSWQuery","title":"CSWQuery — CSWQuery","text":"CSWQuery CSWQuery","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWQuery — CSWQuery","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWQuery — CSWQuery","text":"Object R6Class modelling CSW Query","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWQuery — CSWQuery","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"CSWQuery — CSWQuery","text":"ows4R::OGCAbstractObject -> CSWQuery","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"CSWQuery — CSWQuery","text":"ElementSetName element set name property request XML encoding constraint property request XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWQuery — CSWQuery","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWQuery — CSWQuery","text":"CSWQuery$new() CSWQuery$setServiceVersion() CSWQuery$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWQuery — CSWQuery","text":"method used instantiate CSWQUery object. elementSetName can either \"full\" (default), \"brief\" \"summary\". constraint CSWConstraint can defined query. typeNames indicates query (default \"csw:Record\"). serviceVersion gives CSW service version (default \"2.0.2\")","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWQuery — CSWQuery","text":"","code":"CSWQuery$new( elementSetName = \"full\", constraint = NULL, typeNames = \"csw:Record\", serviceVersion = \"2.0.2\" )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWQuery — CSWQuery","text":"elementSetName element set name. Default \"full\" constraint object class CSWConstraint typeNames type names serviceVersion CSW service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"method-setserviceversion-","dir":"Reference","previous_headings":"","what":"Method setServiceVersion()","title":"CSWQuery — CSWQuery","text":"Set service version. methods ensures propery naming typeNames depending service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWQuery — CSWQuery","text":"","code":"CSWQuery$setServiceVersion(serviceVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWQuery — CSWQuery","text":"serviceVersion service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWQuery — CSWQuery","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWQuery — CSWQuery","text":"","code":"CSWQuery$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWQuery — CSWQuery","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWQuery.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"CSWQuery — CSWQuery","text":"","code":"#CSWQuery - elementSetName query_full <- CSWQuery$new() query_brief <- CSWQuery$new(elementSetName = \"brief\") query_summary <- CSWQuery$new(elementSetName = \"summary\") #CSWQuery - cqlText with title cons <- CSWConstraint$new(cqlText = \"dc:title like '%ips%'\") query <- CSWQuery$new(constraint = cons) #CSW 2.0.2 - Query - Filter / AnyText filter <- OGCFilter$new( PropertyIsLike$new(\"csw:AnyText\", \"%Physio%\")) cons <- CSWConstraint$new(filter = filter) query <- CSWQuery$new(constraint = cons) #CSW 2.0.2 - Query - Filter / AnyText Equal filter <- OGCFilter$new( PropertyIsEqualTo$new(\"csw:AnyText\", \"species\")) cons <- CSWConstraint$new(filter = filter) query <- CSWQuery$new(constraint = cons) #CSW 2.0.2 - Query - Filter / AnyText And Not filter <- OGCFilter$new(And$new( PropertyIsLike$new(\"csw:AnyText\", \"%lorem%\"), PropertyIsLike$new(\"csw:AnyText\", \"%ipsum%\"), Not$new( PropertyIsLike$new(\"csw:AnyText\", \"%dolor%\") ) )) cons <- CSWConstraint$new(filter = filter) query <- CSWQuery$new(constraint = cons) #CSW 2.0.2 - Query - Filter / AnyText And nested Or filter <- OGCFilter$new(And$new( PropertyIsEqualTo$new(\"dc:title\", \"Aliquam fermentum purus quis arcu\"), PropertyIsEqualTo$new(\"dc:format\", \"application/pdf\"), Or$new( PropertyIsEqualTo$new(\"dc:type\", \"http://purl.org/dc/dcmitype/Dataset\"), PropertyIsEqualTo$new(\"dc:type\", \"http://purl.org/dc/dcmitype/Service\"), PropertyIsEqualTo$new(\"dc:type\", \"http://purl.org/dc/dcmitype/Image\"), PropertyIsEqualTo$new(\"dc:type\", \"http://purl.org/dc/dcmitype/Text\") ) )) cons <- CSWConstraint$new(filter = filter) query <- CSWQuery$new(elementSetName = \"brief\", constraint = cons) #CSW 2.0.2 - Query - Filter / BBOX bbox <- matrix(c(-180,180,-90,90), nrow = 2, ncol = 2, byrow = TRUE, dimnames = list(c(\"x\", \"y\"), c(\"min\",\"max\"))) filter <- OGCFilter$new( BBOX$new(bbox = bbox) ) cons <- CSWConstraint$new(filter = filter) query <- CSWQuery$new(elementSetName = \"brief\", constraint = cons)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWRecordProperty — CSWRecordProperty","title":"CSWRecordProperty — CSWRecordProperty","text":"CSWRecordProperty CSWRecordProperty","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWRecordProperty — CSWRecordProperty","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWRecordProperty — CSWRecordProperty","text":"Object R6Class modelling CSW RecordProperty","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWRecordProperty — CSWRecordProperty","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"CSWRecordProperty — CSWRecordProperty","text":"ows4R::OGCAbstractObject -> CSWRecordProperty","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"CSWRecordProperty — CSWRecordProperty","text":"wrap internal property XML encoding Name name property request XML encoding Value property request XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWRecordProperty — CSWRecordProperty","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWRecordProperty — CSWRecordProperty","text":"CSWRecordProperty$new() CSWRecordProperty$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWRecordProperty — CSWRecordProperty","text":"Initializes object class CSWRecordProperty","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWRecordProperty — CSWRecordProperty","text":"","code":"CSWRecordProperty$new(name, value, cswVersion = \"2.0.2\")"},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWRecordProperty — CSWRecordProperty","text":"name name value value cswVersion CSW service version. Default \"2.0.2\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWRecordProperty — CSWRecordProperty","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWRecordProperty — CSWRecordProperty","text":"","code":"CSWRecordProperty$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWRecordProperty — CSWRecordProperty","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWRecordProperty.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"CSWRecordProperty — CSWRecordProperty","text":"","code":"rp <- CSWRecordProperty$new(name = \"NAME\", value = \"VALUE\") rp_xml <- rp$encode() #see how it looks in XML"},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":null,"dir":"Reference","previous_headings":"","what":"CSWTransaction — CSWTransaction","title":"CSWTransaction — CSWTransaction","text":"CSWTransaction CSWTransaction","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"CSWTransaction — CSWTransaction","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"CSWTransaction — CSWTransaction","text":"Object R6Class modelling CSW Transaction request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"CSWTransaction — CSWTransaction","text":"Class used internally ows4R trigger CSW Transaction request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"CSWTransaction — CSWTransaction","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"CSWTransaction — CSWTransaction","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> CSWTransaction","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"CSWTransaction — CSWTransaction","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"CSWTransaction — CSWTransaction","text":"CSWTransaction$new() CSWTransaction$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"CSWTransaction — CSWTransaction","text":"Initializes CSWTransaction service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWTransaction — CSWTransaction","text":"","code":"CSWTransaction$new( capabilities, op, url, serviceVersion, type, user = NULL, pwd = NULL, token = NULL, headers = list(), record = NULL, recordProperty = NULL, constraint = NULL, logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWTransaction — CSWTransaction","text":"capabilities object class CSWCapabilities op object class OWSOperation retrieved capabilities url url serviceVersion serviceVersion. Default \"2.0.2 type type transaction, either \"Insert\", \"Update\", \"Delete\" user user pwd password token token headers headers record record recordProperty record property constraint constraint logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"CSWTransaction — CSWTransaction","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"CSWTransaction — CSWTransaction","text":"","code":"CSWTransaction$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/CSWTransaction.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"CSWTransaction — CSWTransaction","text":"deep Whether make deep clone.","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"Not — Not","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Not — Not","text":"Object R6Class modelling ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Not — Not","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"Not — Not","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::UnaryLogicOpType -> ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"Not — Not","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::UnaryLogicOpType$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"Not — Not","text":"$new() $clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"Not — Not","text":"Initializes expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Not — Not","text":"","code":"Not$new(...)"},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Not — Not","text":"... list objects class OGCExpression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"Not — Not","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"Not — Not","text":"","code":"Not$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"Not — Not","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Not.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Not — Not","text":"","code":"expr <- PropertyIsEqualTo$new(PropertyName = \"property\", Literal = \"value\") not <- Not$new(expr) not_xml <- not$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":null,"dir":"Reference","previous_headings":"","what":"OGCAbstractObject — OGCAbstractObject","title":"OGCAbstractObject — OGCAbstractObject","text":"OGCAbstractObject OGCAbstractObject","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OGCAbstractObject — OGCAbstractObject","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OGCAbstractObject — OGCAbstractObject","text":"Object R6Class modelling OGCAbstractObject","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OGCAbstractObject — OGCAbstractObject","text":"abstract class used ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OGCAbstractObject — OGCAbstractObject","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"OGCAbstractObject — OGCAbstractObject","text":"verbose.info logical property indicate whether INFO logs displayed verbose.debug logical property indicate whether DEBUG logs displayed loggerType logger type, either NULL, \"INFO\", \"DEBUG\" wrap internal property XML encoding element element used XML encoding namespace namespace used XML encoding defaults default values used XML encoding attrs attributes used XML encoding","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OGCAbstractObject — OGCAbstractObject","text":"OGCAbstractObject$logger() OGCAbstractObject$INFO() OGCAbstractObject$WARN() OGCAbstractObject$ERROR() OGCAbstractObject$new() OGCAbstractObject$getClassName() OGCAbstractObject$getClass() OGCAbstractObject$isFieldInheritedFrom() OGCAbstractObject$getNamespaceDefinition() OGCAbstractObject$encode() OGCAbstractObject$print() OGCAbstractObject$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-logger-","dir":"Reference","previous_headings":"","what":"Method logger()","title":"OGCAbstractObject — OGCAbstractObject","text":"basic logger function","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$logger(type, text)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"type type logs message. text log message text displayed","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-info-","dir":"Reference","previous_headings":"","what":"Method INFO()","title":"OGCAbstractObject — OGCAbstractObject","text":"basic INFO logger function","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$INFO(text)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"text log message text displayed","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-warn-","dir":"Reference","previous_headings":"","what":"Method WARN()","title":"OGCAbstractObject — OGCAbstractObject","text":"basic WARN logger function","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$WARN(text)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"text log message text displayed","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-error-","dir":"Reference","previous_headings":"","what":"Method ERROR()","title":"OGCAbstractObject — OGCAbstractObject","text":"basic ERROR logger function","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$ERROR(text)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"text log message text displayed","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OGCAbstractObject — OGCAbstractObject","text":"Initializes object extending OGCAbstractObject","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$new( xml = NULL, element = NULL, namespacePrefix = NULL, attrs = list(), defaults = list(), wrap = FALSE, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"xml object class XMLInternalNode-class XML element element name namespacePrefix namespace prefix XML encoding attrs list attributes defaults list default values wrap whether XML element wrapped XML encoding logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-getclassname-","dir":"Reference","previous_headings":"","what":"Method getClassName()","title":"OGCAbstractObject — OGCAbstractObject","text":"Get class name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$getClassName()"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OGCAbstractObject — OGCAbstractObject","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-getclass-","dir":"Reference","previous_headings":"","what":"Method getClass()","title":"OGCAbstractObject — OGCAbstractObject","text":"Get class","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$getClass()"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OGCAbstractObject — OGCAbstractObject","text":"object class R6Class","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-isfieldinheritedfrom-","dir":"Reference","previous_headings":"","what":"Method isFieldInheritedFrom()","title":"OGCAbstractObject — OGCAbstractObject","text":"Utility return parent class field defined","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$isFieldInheritedFrom(field)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-5","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"field field name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"OGCAbstractObject — OGCAbstractObject","text":"object class R6Class","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-getnamespacedefinition-","dir":"Reference","previous_headings":"","what":"Method getNamespaceDefinition()","title":"OGCAbstractObject — OGCAbstractObject","text":"Gets namespace definition","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$getNamespaceDefinition(recursive = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-6","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"recursive Get namespace recursively","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"OGCAbstractObject — OGCAbstractObject","text":"namespace definitions named list","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-encode-","dir":"Reference","previous_headings":"","what":"Method encode()","title":"OGCAbstractObject — OGCAbstractObject","text":"Encodes XML. addNS . Extra parameters related geometa objects: geometa_validate (TRUE default) geometa_inspire (FALSE default) can used perform ISO INSPIRE validation respectively. case object class geometa::INSPIREMetadataValidator, proper user API key, specified geometa_inspireValidator argument.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$encode( addNS = TRUE, geometa_validate = TRUE, geometa_inspire = FALSE, geometa_inspireValidator = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-7","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"addNS addNS controls addition XML namespaces geometa_validate Relates geometa object ISO validation. Default TRUE geometa_inspire Relates geometa object INSPIRE validation. Default FALSE geometa_inspireValidator Relates geometa object INSPIRE validation. Default NULL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"OGCAbstractObject — OGCAbstractObject","text":"object class XMLInternalNode-class XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-print-","dir":"Reference","previous_headings":"","what":"Method print()","title":"OGCAbstractObject — OGCAbstractObject","text":"Provides custom print output (tree) current class","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$print(..., depth = 1)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-8","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"... args depth class nesting depth","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OGCAbstractObject — OGCAbstractObject","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"usage-11","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCAbstractObject — OGCAbstractObject","text":"","code":"OGCAbstractObject$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCAbstractObject.html","id":"arguments-9","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCAbstractObject — OGCAbstractObject","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":null,"dir":"Reference","previous_headings":"","what":"OGCExpression — OGCExpression","title":"OGCExpression — OGCExpression","text":"OGCExpression OGCExpression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OGCExpression — OGCExpression","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OGCExpression — OGCExpression","text":"Object R6Class modelling OGC Expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OGCExpression — OGCExpression","text":"abstract class","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OGCExpression — OGCExpression","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OGCExpression — OGCExpression","text":"ows4R::OGCAbstractObject -> OGCExpression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OGCExpression — OGCExpression","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OGCExpression — OGCExpression","text":"OGCExpression$new() OGCExpression$setExprVersion() OGCExpression$getExprVersion() OGCExpression$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OGCExpression — OGCExpression","text":"Initializes object class OGCExpression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCExpression — OGCExpression","text":"","code":"OGCExpression$new( element, namespacePrefix, attrs = NULL, defaults = NULL, exprVersion = \"1.1.0\" )"},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCExpression — OGCExpression","text":"element element name namespacePrefix XML namespace prefix attrs attributes defaults default values exprVersion OGC version expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"method-setexprversion-","dir":"Reference","previous_headings":"","what":"Method setExprVersion()","title":"OGCExpression — OGCExpression","text":"Sets expression version. methods control proper XML namespace prefix setting","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCExpression — OGCExpression","text":"","code":"OGCExpression$setExprVersion(exprVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCExpression — OGCExpression","text":"exprVersion OGC expression version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"method-getexprversion-","dir":"Reference","previous_headings":"","what":"Method getExprVersion()","title":"OGCExpression — OGCExpression","text":"Gets expression version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCExpression — OGCExpression","text":"","code":"OGCExpression$getExprVersion()"},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OGCExpression — OGCExpression","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OGCExpression — OGCExpression","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCExpression — OGCExpression","text":"","code":"OGCExpression$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCExpression.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCExpression — OGCExpression","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":null,"dir":"Reference","previous_headings":"","what":"OGCFilter — OGCFilter","title":"OGCFilter — OGCFilter","text":"OGCFilter OGCFilter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OGCFilter — OGCFilter","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OGCFilter — OGCFilter","text":"Object R6Class modelling OGC Filter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OGCFilter — OGCFilter","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OGCFilter — OGCFilter","text":"ows4R::OGCAbstractObject -> OGCFilter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"OGCFilter — OGCFilter","text":"expr OGC expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OGCFilter — OGCFilter","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OGCFilter — OGCFilter","text":"OGCFilter$new() OGCFilter$setFilterVersion() OGCFilter$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OGCFilter — OGCFilter","text":"Initializes object class OGCFilter.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCFilter — OGCFilter","text":"","code":"OGCFilter$new(expr, filterVersion = \"1.1.0\")"},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCFilter — OGCFilter","text":"expr object class OGCExpression filterVersion OGC filter version. Default \"1.1.0\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"method-setfilterversion-","dir":"Reference","previous_headings":"","what":"Method setFilterVersion()","title":"OGCFilter — OGCFilter","text":"Sets OGC filter version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCFilter — OGCFilter","text":"","code":"OGCFilter$setFilterVersion(filterVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCFilter — OGCFilter","text":"filterVersion OGC filter version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OGCFilter — OGCFilter","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OGCFilter — OGCFilter","text":"","code":"OGCFilter$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OGCFilter — OGCFilter","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OGCFilter.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"OGCFilter — OGCFilter","text":"","code":"expr <- PropertyIsEqualTo$new(PropertyName = \"property\", Literal = \"value\") not <- Not$new(expr) not_xml <- not$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSBoundingBox — OWSBoundingBox","title":"OWSBoundingBox — OWSBoundingBox","text":"OWSBoundingBox OWSBoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSBoundingBox — OWSBoundingBox","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSBoundingBox — OWSBoundingBox","text":"Object R6Class modelling OGC Bounding Box","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSBoundingBox — OWSBoundingBox","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OWSBoundingBox — OWSBoundingBox","text":"ows4R::OGCAbstractObject -> OWSBoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"OWSBoundingBox — OWSBoundingBox","text":"attrs attributes associated XML LowerCorner lower corner coordinates UpperCorner upper corner coordinates","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSBoundingBox — OWSBoundingBox","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSBoundingBox — OWSBoundingBox","text":"OWSBoundingBox$new() OWSBoundingBox$decode() OWSBoundingBox$getBBOX() OWSBoundingBox$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSBoundingBox — OWSBoundingBox","text":"Initializes object class OWSBoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSBoundingBox — OWSBoundingBox","text":"","code":"OWSBoundingBox$new( xml = NULL, element = NULL, namespacePrefix = NULL, owsVersion, serviceVersion, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSBoundingBox — OWSBoundingBox","text":"xml object class XMLInternalNode-class initialize XML element element name namespacePrefix namespace prefix owsVersion OWS version serviceVersion service version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"OWSBoundingBox — OWSBoundingBox","text":"Decodes object class OWSBoundingBox XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSBoundingBox — OWSBoundingBox","text":"","code":"OWSBoundingBox$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSBoundingBox — OWSBoundingBox","text":"xml object class XMLInternalNode-class XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"method-getbbox-","dir":"Reference","previous_headings":"","what":"Method getBBOX()","title":"OWSBoundingBox — OWSBoundingBox","text":"Get BBOX object class bbox sf package","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSBoundingBox — OWSBoundingBox","text":"","code":"OWSBoundingBox$getBBOX()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSBoundingBox — OWSBoundingBox","text":"numeric vector length four, xmin, ymin, xmax ymax values","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSBoundingBox — OWSBoundingBox","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSBoundingBox — OWSBoundingBox","text":"","code":"OWSBoundingBox$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSBoundingBox.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSBoundingBox — OWSBoundingBox","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSGetCapabilities — OWSCapabilities","title":"OWSGetCapabilities — OWSCapabilities","text":"OWSGetCapabilities OWSGetCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSGetCapabilities — OWSCapabilities","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSGetCapabilities — OWSCapabilities","text":"Object R6Class methods interfacing abstract OWS Get Capabilities document.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSGetCapabilities — OWSCapabilities","text":"abstract class used ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSGetCapabilities — OWSCapabilities","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OWSGetCapabilities — OWSCapabilities","text":"ows4R::OGCAbstractObject -> OWSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSGetCapabilities — OWSCapabilities","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSGetCapabilities — OWSCapabilities","text":"OWSCapabilities$new() OWSCapabilities$setClient() OWSCapabilities$getClient() OWSCapabilities$getUrl() OWSCapabilities$getService() OWSCapabilities$getServiceVersion() OWSCapabilities$getOWSVersion() OWSCapabilities$getRequest() OWSCapabilities$getServiceIdentification() OWSCapabilities$getServiceProvider() OWSCapabilities$getOperationsMetadata() OWSCapabilities$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSGetCapabilities — OWSCapabilities","text":"Initializes OWSCapabilities object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$new( element = NULL, namespacePrefix = NULL, url, service, owsVersion, serviceVersion, logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSGetCapabilities — OWSCapabilities","text":"element element namespacePrefix namespace prefix url url service service owsVersion OWS version serviceVersion service version logger logger type NULL, \"INFO\" \"DEBUG\" ... parameter pass OWSGetCapabilities service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-setclient-","dir":"Reference","previous_headings":"","what":"Method setClient()","title":"OWSGetCapabilities — OWSCapabilities","text":"Sets OGC client","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$setClient(client)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSGetCapabilities — OWSCapabilities","text":"client object extending OWSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getclient-","dir":"Reference","previous_headings":"","what":"Method getClient()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get client","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getClient()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSGetCapabilities — OWSCapabilities","text":"object extending OWSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-geturl-","dir":"Reference","previous_headings":"","what":"Method getUrl()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get URL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getUrl()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getservice-","dir":"Reference","previous_headings":"","what":"Method getService()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get service","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getService()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getserviceversion-","dir":"Reference","previous_headings":"","what":"Method getServiceVersion()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getServiceVersion()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getowsversion-","dir":"Reference","previous_headings":"","what":"Method getOWSVersion()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get OWS version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getOWSVersion()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getrequest-","dir":"Reference","previous_headings":"","what":"Method getRequest()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getRequest()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class OWSGetCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getserviceidentification-","dir":"Reference","previous_headings":"","what":"Method getServiceIdentification()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get service identification","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getServiceIdentification()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class OWSServiceIdentification","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getserviceprovider-","dir":"Reference","previous_headings":"","what":"Method getServiceProvider()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get service provider","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getServiceProvider()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class OWSServiceProvider","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-getoperationsmetadata-","dir":"Reference","previous_headings":"","what":"Method getOperationsMetadata()","title":"OWSGetCapabilities — OWSCapabilities","text":"Get service operations metadata","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$getOperationsMetadata()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSGetCapabilities — OWSCapabilities","text":"object class OWSOperationsMetadata","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSGetCapabilities — OWSCapabilities","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"usage-11","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSCapabilities","text":"","code":"OWSCapabilities$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCapabilities.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSGetCapabilities — OWSCapabilities","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSClient — OWSClient","title":"OWSClient — OWSClient","text":"OWSClient OWSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSClient — OWSClient","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSClient — OWSClient","text":"Object R6Class methods interfacing Common OGC web-service.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSClient — OWSClient","text":"Abstract class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSClient — OWSClient","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OWSClient — OWSClient","text":"ows4R::OGCAbstractObject -> OWSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"OWSClient — OWSClient","text":"url Base url OWS service version version OWS service capabilities object giving OWS service capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSClient — OWSClient","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSClient — OWSClient","text":"OWSClient$new() OWSClient$getUrl() OWSClient$getVersion() OWSClient$getCapabilities() OWSClient$getUser() OWSClient$getPwd() OWSClient$getToken() OWSClient$getHeaders() OWSClient$getConfig() OWSClient$getCASUrl() OWSClient$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSClient — OWSClient","text":"method used instantiate OWSClient url OGC service. Authentication supported using basic auth (using user/pwd arguments), bearer token (using token argument), custom (using headers argument). default, logger argument set NULL (logger). argument accepts two possible values: INFO: print ows4R logs, DEBUG: print verbose logs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$new( url, service, serviceVersion, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), cas_url = NULL, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSClient — OWSClient","text":"url url service service name serviceVersion CSW service version user user pwd password token token headers headers config config cas_url Central Authentication Service (CAS) URL logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-geturl-","dir":"Reference","previous_headings":"","what":"Method getUrl()","title":"OWSClient — OWSClient","text":"Get URL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getUrl()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"url service, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-getversion-","dir":"Reference","previous_headings":"","what":"Method getVersion()","title":"OWSClient — OWSClient","text":"Get version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getVersion()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"version service, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-getcapabilities-","dir":"Reference","previous_headings":"","what":"Method getCapabilities()","title":"OWSClient — OWSClient","text":"Get capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"capabilities, object class OWSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-getuser-","dir":"Reference","previous_headings":"","what":"Method getUser()","title":"OWSClient — OWSClient","text":"Get user","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getUser()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"user, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-getpwd-","dir":"Reference","previous_headings":"","what":"Method getPwd()","title":"OWSClient — OWSClient","text":"Get password","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getPwd()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"password, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-gettoken-","dir":"Reference","previous_headings":"","what":"Method getToken()","title":"OWSClient — OWSClient","text":"Get token","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getToken()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"token, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-getheaders-","dir":"Reference","previous_headings":"","what":"Method getHeaders()","title":"OWSClient — OWSClient","text":"Get headers","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getHeaders()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"headers, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-getconfig-","dir":"Reference","previous_headings":"","what":"Method getConfig()","title":"OWSClient — OWSClient","text":"Get httr config","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getConfig()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"httr config, ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-getcasurl-","dir":"Reference","previous_headings":"","what":"Method getCASUrl()","title":"OWSClient — OWSClient","text":"Get CAS URL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$getCASUrl()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"returns-8","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSClient — OWSClient","text":"CAS URL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSClient — OWSClient","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSClient — OWSClient","text":"","code":"OWSClient$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSClient.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSClient — OWSClient","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSCodeType — OWSCodeType","title":"OWSCodeType — OWSCodeType","text":"OWSCodeType OWSCodeType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSCodeType — OWSCodeType","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSCodeType — OWSCodeType","text":"Object R6Class modelling OWS CodeType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSCodeType — OWSCodeType","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OWSCodeType — OWSCodeType","text":"ows4R::OGCAbstractObject -> OWSCodeType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"OWSCodeType — OWSCodeType","text":"value code type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSCodeType — OWSCodeType","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSCodeType — OWSCodeType","text":"OWSCodeType$new() OWSCodeType$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSCodeType — OWSCodeType","text":"Initializes object class OWSCodeType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSCodeType — OWSCodeType","text":"","code":"OWSCodeType$new(xml = NULL, owsVersion = \"1.1\", value)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSCodeType — OWSCodeType","text":"xml object class XMLInternalNode-class XML owsVersion OWS version. Default \"1.1\" value code type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSCodeType — OWSCodeType","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSCodeType — OWSCodeType","text":"","code":"OWSCodeType$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSCodeType.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSCodeType — OWSCodeType","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSException — OWSException","title":"OWSException — OWSException","text":"OWSException OWSException","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSException — OWSException","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSException — OWSException","text":"Object R6Class modelling OWS Service exception","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSException — OWSException","text":"Abstract class used ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSException — OWSException","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OWSException — OWSException","text":"ows4R::OGCAbstractObject -> OWSException","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"OWSException — OWSException","text":"ExceptionText exception text","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSException — OWSException","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSException — OWSException","text":"OWSException$new() OWSException$getLocator() OWSException$getCode() OWSException$getText() OWSException$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSException — OWSException","text":"Initializes object class OWSException","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSException — OWSException","text":"","code":"OWSException$new(xmlObj, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSException — OWSException","text":"xmlObj object class XMLInternalNode-class XML logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"method-getlocator-","dir":"Reference","previous_headings":"","what":"Method getLocator()","title":"OWSException — OWSException","text":"Get exception locator","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSException — OWSException","text":"","code":"OWSException$getLocator()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSException — OWSException","text":"exception locator, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"method-getcode-","dir":"Reference","previous_headings":"","what":"Method getCode()","title":"OWSException — OWSException","text":"Get exception code","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSException — OWSException","text":"","code":"OWSException$getCode()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSException — OWSException","text":"exception code, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"method-gettext-","dir":"Reference","previous_headings":"","what":"Method getText()","title":"OWSException — OWSException","text":"Get exception text explanation","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSException — OWSException","text":"","code":"OWSException$getText()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSException — OWSException","text":"exception text, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSException — OWSException","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSException — OWSException","text":"","code":"OWSException$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSException.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSException — OWSException","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSGetCapabilities — OWSGetCapabilities","title":"OWSGetCapabilities — OWSGetCapabilities","text":"OWSGetCapabilities OWSGetCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSGetCapabilities — OWSGetCapabilities","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSGetCapabilities — OWSGetCapabilities","text":"Object R6Class modelling GetCapabilities request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSGetCapabilities — OWSGetCapabilities","text":"Class used internally ows4R trigger OWS GetCapabilities request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSGetCapabilities — OWSGetCapabilities","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"OWSGetCapabilities — OWSGetCapabilities","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> OWSGetCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSGetCapabilities — OWSGetCapabilities","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSGetCapabilities — OWSGetCapabilities","text":"OWSGetCapabilities$new() OWSGetCapabilities$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSGetCapabilities — OWSGetCapabilities","text":"Initializes OWSGetCapabilities service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSGetCapabilities","text":"","code":"OWSGetCapabilities$new( element = NULL, namespacePrefix = NULL, url, service, version, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), ... )"},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSGetCapabilities — OWSGetCapabilities","text":"element element namespacePrefix namespace prefix url url service service name version service version user user pwd password token token headers headers config config ... parameter pass request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSGetCapabilities — OWSGetCapabilities","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSGetCapabilities — OWSGetCapabilities","text":"","code":"OWSGetCapabilities$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSGetCapabilities.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSGetCapabilities — OWSGetCapabilities","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSHttpRequest — OWSHttpRequest","title":"OWSHttpRequest — OWSHttpRequest","text":"OWSHttpRequest OWSHttpRequest","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSHttpRequest — OWSHttpRequest","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSHttpRequest — OWSHttpRequest","text":"Object R6Class modelling generic OWS http request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSHttpRequest — OWSHttpRequest","text":"Abstract class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSHttpRequest — OWSHttpRequest","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OWSHttpRequest — OWSHttpRequest","text":"ows4R::OGCAbstractObject -> OWSHttpRequest","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSHttpRequest — OWSHttpRequest","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSHttpRequest — OWSHttpRequest","text":"OWSHttpRequest$new() OWSHttpRequest$execute() OWSHttpRequest$getCapabilities() OWSHttpRequest$getRequest() OWSHttpRequest$getRequestHeaders() OWSHttpRequest$getStatus() OWSHttpRequest$getResponse() OWSHttpRequest$getException() OWSHttpRequest$hasException() OWSHttpRequest$getResult() OWSHttpRequest$setResult() OWSHttpRequest$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSHttpRequest — OWSHttpRequest","text":"Initializes OWS HTTP request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$new( element, namespacePrefix, capabilities, op, type, url, request, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), namedParams = NULL, attrs = NULL, contentType = \"text/xml\", mimeType = \"text/xml\", skipXmlComments = TRUE, logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSHttpRequest — OWSHttpRequest","text":"element element namespacePrefix namespace prefix capabilities object class extending OWSCapabilities op object class OWSOperation type type request, eg. GET, POST url url request request name user user pwd password token token headers headers config config namedParams named list attrs attributes contentType content type. Default value \"text/xml\" mimeType mime type. Default value \"text/xml\" skipXmlComments Skip XML comments response logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-execute-","dir":"Reference","previous_headings":"","what":"Method execute()","title":"OWSHttpRequest — OWSHttpRequest","text":"Executes request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$execute()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-getcapabilities-","dir":"Reference","previous_headings":"","what":"Method getCapabilities()","title":"OWSHttpRequest — OWSHttpRequest","text":"Get capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"object class extending OWSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-getrequest-","dir":"Reference","previous_headings":"","what":"Method getRequest()","title":"OWSHttpRequest — OWSHttpRequest","text":"Get request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$getRequest()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-getrequestheaders-","dir":"Reference","previous_headings":"","what":"Method getRequestHeaders()","title":"OWSHttpRequest — OWSHttpRequest","text":"Get request headers","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$getRequestHeaders()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"request headers","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-getstatus-","dir":"Reference","previous_headings":"","what":"Method getStatus()","title":"OWSHttpRequest — OWSHttpRequest","text":"get status code","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$getStatus()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"request status code","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-getresponse-","dir":"Reference","previous_headings":"","what":"Method getResponse()","title":"OWSHttpRequest — OWSHttpRequest","text":"get request response","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$getResponse()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"request response","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-getexception-","dir":"Reference","previous_headings":"","what":"Method getException()","title":"OWSHttpRequest — OWSHttpRequest","text":"get request exception","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$getException()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"request exception","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-hasexception-","dir":"Reference","previous_headings":"","what":"Method hasException()","title":"OWSHttpRequest — OWSHttpRequest","text":"Indicates exception","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$hasException()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"TRUE exception, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-getresult-","dir":"Reference","previous_headings":"","what":"Method getResult()","title":"OWSHttpRequest — OWSHttpRequest","text":"Get result TRUE request successful, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$getResult()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSHttpRequest — OWSHttpRequest","text":"result, object class logical","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-setresult-","dir":"Reference","previous_headings":"","what":"Method setResult()","title":"OWSHttpRequest — OWSHttpRequest","text":"Set result","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$setResult(result)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSHttpRequest — OWSHttpRequest","text":"result object class logical","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSHttpRequest — OWSHttpRequest","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"usage-11","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSHttpRequest — OWSHttpRequest","text":"","code":"OWSHttpRequest$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSHttpRequest.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSHttpRequest — OWSHttpRequest","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSNamespace — OWSNamespace","title":"OWSNamespace — OWSNamespace","text":"OWSNamespace OWSNamespace","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSNamespace — OWSNamespace","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSNamespace — OWSNamespace","text":"Object R6Class modelling OWS Namespace","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSNamespace — OWSNamespace","text":"class used internally ows4R specifying XML namespaces","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSNamespace — OWSNamespace","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"OWSNamespace — OWSNamespace","text":"id namespace id uri namespace uri","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSNamespace — OWSNamespace","text":"OWSNamespace$new() OWSNamespace$getDefinition() OWSNamespace$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSNamespace — OWSNamespace","text":"Initializes OWSNamespace","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSNamespace — OWSNamespace","text":"","code":"OWSNamespace$new(id, uri)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSNamespace — OWSNamespace","text":"id id uri uri","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"method-getdefinition-","dir":"Reference","previous_headings":"","what":"Method getDefinition()","title":"OWSNamespace — OWSNamespace","text":"Get namespace definition","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSNamespace — OWSNamespace","text":"","code":"OWSNamespace$getDefinition()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSNamespace — OWSNamespace","text":"named list id uri","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSNamespace — OWSNamespace","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSNamespace — OWSNamespace","text":"","code":"OWSNamespace$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSNamespace.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSNamespace — OWSNamespace","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSOperation — OWSOperation","title":"OWSOperation — OWSOperation","text":"OWSOperation OWSOperation","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSOperation — OWSOperation","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSOperation — OWSOperation","text":"Object R6Class modelling OGC Operation","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSOperation — OWSOperation","text":"Internal class used internally ows4R reading capabilities documents","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSOperation — OWSOperation","text":"Emmanuel Blondel ","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSOperation — OWSOperation","text":"OWSOperation$new() OWSOperation$getName() OWSOperation$getParameters() OWSOperation$getParameter() OWSOperation$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSOperation — OWSOperation","text":"Initializes object class OWSOperation.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperation — OWSOperation","text":"","code":"OWSOperation$new(xmlObj, owsVersion, serviceVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSOperation — OWSOperation","text":"xmlObj object class XMLInternalNode-class XML owsVersion OWS version serviceVersion service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"method-getname-","dir":"Reference","previous_headings":"","what":"Method getName()","title":"OWSOperation — OWSOperation","text":"Get operation name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperation — OWSOperation","text":"","code":"OWSOperation$getName()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSOperation — OWSOperation","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"method-getparameters-","dir":"Reference","previous_headings":"","what":"Method getParameters()","title":"OWSOperation — OWSOperation","text":"Get parameters","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperation — OWSOperation","text":"","code":"OWSOperation$getParameters()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSOperation — OWSOperation","text":"parameters","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"method-getparameter-","dir":"Reference","previous_headings":"","what":"Method getParameter()","title":"OWSOperation — OWSOperation","text":"Get parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperation — OWSOperation","text":"","code":"OWSOperation$getParameter(name)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSOperation — OWSOperation","text":"name name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSOperation — OWSOperation","text":"parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSOperation — OWSOperation","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperation — OWSOperation","text":"","code":"OWSOperation$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperation.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSOperation — OWSOperation","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSOperationsMetadata — OWSOperationsMetadata","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"OWSOperationsMetadata OWSOperationsMetadata","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"Object R6Class modelling OGC Operations Metadata","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"Abstract class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"Emmanuel Blondel ","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"OWSOperationsMetadata$new() OWSOperationsMetadata$getOperations() OWSOperationsMetadata$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"Initializes OWSOperationsMetadata object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"","code":"OWSOperationsMetadata$new(xmlObj, owsVersion, serviceVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"xmlObj object class XMLInternalNode-class XML owsVersion OWS version serviceVersion service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"method-getoperations-","dir":"Reference","previous_headings":"","what":"Method getOperations()","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"Get operations","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"","code":"OWSOperationsMetadata$getOperations()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"list OWSOperation","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"","code":"OWSOperationsMetadata$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSOperationsMetadata.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSOperationsMetadata — OWSOperationsMetadata","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSRequest — OWSRequest","title":"OWSRequest — OWSRequest","text":"OWSRequest OWSRequest","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSRequest — OWSRequest","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSRequest — OWSRequest","text":"Object R6Class modelling OWS Service Capability Request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSRequest — OWSRequest","text":"Abstract class used ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSRequest — OWSRequest","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"OWSRequest — OWSRequest","text":"ows4R::OGCAbstractObject -> OWSRequest","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSRequest — OWSRequest","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSRequest — OWSRequest","text":"OWSRequest$new() OWSRequest$getName() OWSRequest$getFormats() OWSRequest$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSRequest — OWSRequest","text":"Initializes object class OWSRequest","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSRequest — OWSRequest","text":"","code":"OWSRequest$new(xmlObj, capabilities, version, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSRequest — OWSRequest","text":"xmlObj object class XMLInternalNode-class XML capabilities object class extending OWSCapabilities version version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"method-getname-","dir":"Reference","previous_headings":"","what":"Method getName()","title":"OWSRequest — OWSRequest","text":"Get request name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSRequest — OWSRequest","text":"","code":"OWSRequest$getName()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSRequest — OWSRequest","text":"name, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"method-getformats-","dir":"Reference","previous_headings":"","what":"Method getFormats()","title":"OWSRequest — OWSRequest","text":"Get request formats","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSRequest — OWSRequest","text":"","code":"OWSRequest$getFormats()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSRequest — OWSRequest","text":"formats, object (vector) class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSRequest — OWSRequest","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSRequest — OWSRequest","text":"","code":"OWSRequest$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSRequest.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSRequest — OWSRequest","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSServiceIdentification — OWSServiceIdentification","title":"OWSServiceIdentification — OWSServiceIdentification","text":"OWSServiceIdentification OWSServiceIdentification","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSServiceIdentification — OWSServiceIdentification","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Object R6Class modelling OGC Service Identification","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Abstract class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Emmanuel Blondel ","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSServiceIdentification — OWSServiceIdentification","text":"OWSServiceIdentification$new() OWSServiceIdentification$getName() OWSServiceIdentification$getTitle() OWSServiceIdentification$getAbstract() OWSServiceIdentification$getKeywords() OWSServiceIdentification$getOnlineResource() OWSServiceIdentification$getServiceType() OWSServiceIdentification$getServiceTypeVersion() OWSServiceIdentification$getFees() OWSServiceIdentification$getAccessConstraints() OWSServiceIdentification$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Initializes object class OWSServiceIdentification","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$new(xmlObj, owsVersion, serviceVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSServiceIdentification — OWSServiceIdentification","text":"xmlObj object class XMLInternalNode-class XML owsVersion OWS version serviceVersion service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getname-","dir":"Reference","previous_headings":"","what":"Method getName()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getName()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"name, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-gettitle-","dir":"Reference","previous_headings":"","what":"Method getTitle()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - title","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getTitle()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"title, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getabstract-","dir":"Reference","previous_headings":"","what":"Method getAbstract()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - abstract","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getAbstract()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"abstract, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getkeywords-","dir":"Reference","previous_headings":"","what":"Method getKeywords()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - keywords","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getKeywords()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"keywords, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getonlineresource-","dir":"Reference","previous_headings":"","what":"Method getOnlineResource()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - online resource","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getOnlineResource()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"online resource, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getservicetype-","dir":"Reference","previous_headings":"","what":"Method getServiceType()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - service type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getServiceType()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"service type, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getservicetypeversion-","dir":"Reference","previous_headings":"","what":"Method getServiceTypeVersion()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - service type version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getServiceTypeVersion()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"service type version, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getfees-","dir":"Reference","previous_headings":"","what":"Method getFees()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - fees","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getFees()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"fees, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-getaccessconstraints-","dir":"Reference","previous_headings":"","what":"Method getAccessConstraints()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"Get service identification - access constraints","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$getAccessConstraints()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"returns-8","dir":"Reference","previous_headings":"","what":"Returns","title":"OWSServiceIdentification — OWSServiceIdentification","text":"access constraints, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSServiceIdentification — OWSServiceIdentification","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceIdentification — OWSServiceIdentification","text":"","code":"OWSServiceIdentification$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceIdentification.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSServiceIdentification — OWSServiceIdentification","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSServiceProvider — OWSServiceProvider","title":"OWSServiceProvider — OWSServiceProvider","text":"OWSServiceProvider OWSServiceProvider","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSServiceProvider — OWSServiceProvider","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSServiceProvider — OWSServiceProvider","text":"Object R6Class modelling OGC Service Provider","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSServiceProvider — OWSServiceProvider","text":"Abstract class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSServiceProvider — OWSServiceProvider","text":"Emmanuel Blondel ","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSServiceProvider — OWSServiceProvider","text":"OWSServiceProvider$new() OWSServiceProvider$getProviderName() OWSServiceProvider$getProviderSite() OWSServiceProvider$getServiceContact() OWSServiceProvider$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSServiceProvider — OWSServiceProvider","text":"Initializes object class OWSServiceProvider","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceProvider — OWSServiceProvider","text":"","code":"OWSServiceProvider$new(xmlObj, owsVersion, serviceVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSServiceProvider — OWSServiceProvider","text":"xmlObj object class XMLInternalNode-class XML owsVersion OWS version serviceVersion service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"method-getprovidername-","dir":"Reference","previous_headings":"","what":"Method getProviderName()","title":"OWSServiceProvider — OWSServiceProvider","text":"Get provider name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceProvider — OWSServiceProvider","text":"","code":"OWSServiceProvider$getProviderName()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSServiceProvider — OWSServiceProvider","text":"provider name, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"method-getprovidersite-","dir":"Reference","previous_headings":"","what":"Method getProviderSite()","title":"OWSServiceProvider — OWSServiceProvider","text":"Get provider site","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceProvider — OWSServiceProvider","text":"","code":"OWSServiceProvider$getProviderSite()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSServiceProvider — OWSServiceProvider","text":"provider site, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"method-getservicecontact-","dir":"Reference","previous_headings":"","what":"Method getServiceContact()","title":"OWSServiceProvider — OWSServiceProvider","text":"Get provider contact","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceProvider — OWSServiceProvider","text":"","code":"OWSServiceProvider$getServiceContact()"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSServiceProvider — OWSServiceProvider","text":"provider contact, object class ISOResponsibleParty geometa","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSServiceProvider — OWSServiceProvider","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSServiceProvider — OWSServiceProvider","text":"","code":"OWSServiceProvider$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSServiceProvider.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSServiceProvider — OWSServiceProvider","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSUtils.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSUtils — OWSUtils","title":"OWSUtils — OWSUtils","text":"OWSUtils","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSUtils.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSUtils — OWSUtils","text":"","code":"OWSUtils"},{"path":"https://eblondel.github.io/ows4R/reference/OWSUtils.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSUtils — OWSUtils","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSUtils.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSUtils — OWSUtils","text":"set OWS Utilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSUtils.html","id":"static-methods","dir":"Reference","previous_headings":"","what":"Static methods","title":"OWSUtils — OWSUtils","text":"getNamespaces() Get namespaces associated given XML object findNamespace(namespaces, id, uri) Finds namespace id URI toBBOX(xmin, xmax, ymin, ymax) Creates bbox matrix min/max x/y coordinates findP4s(srsName, morphToESRI) Finds PROJ4 string definition given srsName toCRS(srsName) Converts srsName CRS object toEPSG(crs) Get EPSG code CRS object getAspectRatio(bbox) Get aspect ratio given bbox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSUtils.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSUtils — OWSUtils","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSUtils.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"OWSUtils — OWSUtils","text":"","code":"#toBBOX bbox <- OWSUtils$toBBOX(-180,-90,180,90) #toCRS crs <- OWSUtils$toCRS(\"EPSG:4326\")"},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":null,"dir":"Reference","previous_headings":"","what":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"OWSWGS84BoundingBox OWSWGS84BoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"Object R6Class modelling OGC WS84 BoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"Class used internally geometa","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"ows4R::OGCAbstractObject -> ows4R::OWSBoundingBox -> OWSWGS84BoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSBoundingBox$decode() ows4R::OWSBoundingBox$getBBOX()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"OWSWGS84BoundingBox$new() OWSWGS84BoundingBox$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"Initializes object class OWSBoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"","code":"OWSWGS84BoundingBox$new(xml = NULL, owsVersion, serviceVersion, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"xml object class XMLInternalNode-class initialize XML owsVersion OWS version serviceVersion service version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"","code":"OWSWGS84BoundingBox$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/OWSWGS84BoundingBox.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"OWSWGS84BoundingBox — OWSWGS84BoundingBox","text":"deep Whether make deep clone.","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"Or — Or","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"Or — Or","text":"Object R6Class modelling operator","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Or — Or","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"Or — Or","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryLogicOpType -> ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"Or — Or","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::BinaryLogicOpType$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"Or — Or","text":"$new() $clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"Or — Or","text":"Initializes expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"Or — Or","text":"","code":"Or$new(...)"},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"Or — Or","text":"... list objects class OGCExpression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"Or — Or","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"Or — Or","text":"","code":"Or$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"Or — Or","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/Or.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"Or — Or","text":"","code":"expr1 <- PropertyIsEqualTo$new(PropertyName = \"property1\", Literal = \"value1\") expr2 <- PropertyIsEqualTo$new(PropertyName = \"property2\", Literal = \"value2\") or <- Or$new(expr1,expr2) or_xml <- or$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsBetween — PropertyIsBetween","title":"PropertyIsBetween — PropertyIsBetween","text":"PropertyIsBetween PropertyIsBetween","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsBetween — PropertyIsBetween","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsBetween — PropertyIsBetween","text":"Object R6Class modelling PropertyIsBetween","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsBetween — PropertyIsBetween","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsBetween — PropertyIsBetween","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> PropertyIsBetween","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"PropertyIsBetween — PropertyIsBetween","text":"PropertyName property name field XML encoding lower lower value upper upper value","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsBetween — PropertyIsBetween","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsBetween — PropertyIsBetween","text":"PropertyIsBetween$new() PropertyIsBetween$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsBetween — PropertyIsBetween","text":"Initializes object extending PropertyIsLike","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsBetween — PropertyIsBetween","text":"","code":"PropertyIsBetween$new(PropertyName, lower, upper)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsBetween — PropertyIsBetween","text":"PropertyName property name lower lower value upper upper value","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsBetween — PropertyIsBetween","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsBetween — PropertyIsBetween","text":"","code":"PropertyIsBetween$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsBetween — PropertyIsBetween","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsBetween.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsBetween — PropertyIsBetween","text":"","code":"expr <- PropertyIsBetween$new(PropertyName = \"property\", lower = 1, upper = 10) expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsEqualTo — PropertyIsEqualTo","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"PropertyIsEqualTo PropertyIsEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"Object R6Class modelling PropertyIsEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryComparisonOpType -> PropertyIsEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"PropertyIsEqualTo$new() PropertyIsEqualTo$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"Initializes object extending PropertyIsEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"","code":"PropertyIsEqualTo$new(PropertyName, Literal, matchCase = NA)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"PropertyName property name Literal literal matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"","code":"PropertyIsEqualTo$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsEqualTo.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsEqualTo — PropertyIsEqualTo","text":"","code":"expr <- PropertyIsEqualTo$new(PropertyName = \"property\", Literal = \"value\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsGreaterThan — PropertyIsGreaterThan","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"PropertyIsGreaterThan PropertyIsGreaterThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"Object R6Class modelling PropertyIsGreaterThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryComparisonOpType -> PropertyIsGreaterThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"PropertyIsGreaterThan$new() PropertyIsGreaterThan$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"Initializes object extending PropertyIsGreaterThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"","code":"PropertyIsGreaterThan$new(PropertyName, Literal, matchCase = NA)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"PropertyName property name Literal literal matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"","code":"PropertyIsGreaterThan$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThan.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsGreaterThan — PropertyIsGreaterThan","text":"","code":"expr <- PropertyIsGreaterThan$new(PropertyName = \"property\", Literal = \"value\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"PropertyIsGreaterThanOrEqualTo PropertyIsGreaterThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"Object R6Class modelling PropertyIsGreaterThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryComparisonOpType -> PropertyIsGreaterThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"PropertyIsGreaterThanOrEqualTo$new() PropertyIsGreaterThanOrEqualTo$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"Initializes object extending PropertyIsGreaterThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"","code":"PropertyIsGreaterThanOrEqualTo$new(PropertyName, Literal, matchCase = NA)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"PropertyName property name Literal literal matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"","code":"PropertyIsGreaterThanOrEqualTo$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsGreaterThanOrEqualTo.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsGreaterThanOrEqualTo — PropertyIsGreaterThanOrEqualTo","text":"","code":"expr <- PropertyIsGreaterThanOrEqualTo$new(PropertyName = \"property\", Literal = \"value\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsLessThan — PropertyIsLessThan","title":"PropertyIsLessThan — PropertyIsLessThan","text":"PropertyIsLessThan PropertyIsLessThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsLessThan — PropertyIsLessThan","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsLessThan — PropertyIsLessThan","text":"Object R6Class modelling PropertyIsLessThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsLessThan — PropertyIsLessThan","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsLessThan — PropertyIsLessThan","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryComparisonOpType -> PropertyIsLessThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsLessThan — PropertyIsLessThan","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsLessThan — PropertyIsLessThan","text":"PropertyIsLessThan$new() PropertyIsLessThan$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsLessThan — PropertyIsLessThan","text":"Initializes object extending PropertyIsLessThan","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsLessThan — PropertyIsLessThan","text":"","code":"PropertyIsLessThan$new(PropertyName, Literal, matchCase = NA)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsLessThan — PropertyIsLessThan","text":"PropertyName property name Literal literal matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsLessThan — PropertyIsLessThan","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsLessThan — PropertyIsLessThan","text":"","code":"PropertyIsLessThan$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsLessThan — PropertyIsLessThan","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThan.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsLessThan — PropertyIsLessThan","text":"","code":"expr <- PropertyIsLessThan$new(PropertyName = \"property\", Literal = \"value\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"PropertyIsLesserThanOrEqualTo PropertyIsLesserThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"Object R6Class modelling PropertyIsLesserThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryComparisonOpType -> PropertyIsLessThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"PropertyIsLessThanOrEqualTo$new() PropertyIsLessThanOrEqualTo$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"Initializes object extending PropertyIsLessThanOrEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"","code":"PropertyIsLessThanOrEqualTo$new(PropertyName, Literal, matchCase = NA)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"PropertyName property name Literal literal matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"","code":"PropertyIsLessThanOrEqualTo$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLessThanOrEqualTo.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsLesserThanOrEqualTo — PropertyIsLessThanOrEqualTo","text":"","code":"expr <- PropertyIsLessThanOrEqualTo$new(PropertyName = \"property\", Literal = \"value\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsLike — PropertyIsLike","title":"PropertyIsLike — PropertyIsLike","text":"PropertyIsLike PropertyIsLike","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsLike — PropertyIsLike","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsLike — PropertyIsLike","text":"Object R6Class modelling PropertyIsLike","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsLike — PropertyIsLike","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsLike — PropertyIsLike","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> PropertyIsLike","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"PropertyIsLike — PropertyIsLike","text":"PropertyName property name field XML encoding Literal literal field XML encoding attrs attributes XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsLike — PropertyIsLike","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsLike — PropertyIsLike","text":"PropertyIsLike$new() PropertyIsLike$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsLike — PropertyIsLike","text":"Initializes object extending PropertyIsLike","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsLike — PropertyIsLike","text":"","code":"PropertyIsLike$new( PropertyName, Literal, escapeChar = \"\\\\\", singleChar = \"_\", wildCard = \"%\", matchCase = NA )"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsLike — PropertyIsLike","text":"PropertyName property name Literal literal escapeChar escape character. Default \"\\\" singleChar single character. Default \"_\" wildCard wildcard matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsLike — PropertyIsLike","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsLike — PropertyIsLike","text":"","code":"PropertyIsLike$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsLike — PropertyIsLike","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsLike.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsLike — PropertyIsLike","text":"","code":"expr <- PropertyIsLike$new(PropertyName = \"property\", Literal = \"value\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"PropertyIsNotEqualTo PropertyIsNotEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"Object R6Class modelling PropertyIsNotEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> ows4R::BinaryComparisonOpType -> PropertyIsNotEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"PropertyIsNotEqualTo$new() PropertyIsNotEqualTo$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"Initializes object extending PropertyIsNotEqualTo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"","code":"PropertyIsNotEqualTo$new(PropertyName, Literal, matchCase = NA)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"PropertyName property name Literal literal matchCase match case","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"","code":"PropertyIsNotEqualTo$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNotEqualTo.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsNotEqualTo — PropertyIsNotEqualTo","text":"","code":"expr <- PropertyIsNotEqualTo$new(PropertyName = \"property\", Literal = \"value\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":null,"dir":"Reference","previous_headings":"","what":"PropertyIsNull — PropertyIsNull","title":"PropertyIsNull — PropertyIsNull","text":"PropertyIsNull PropertyIsNull","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"PropertyIsNull — PropertyIsNull","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"PropertyIsNull — PropertyIsNull","text":"Object R6Class modelling PropertyIsNull","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"PropertyIsNull — PropertyIsNull","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"PropertyIsNull — PropertyIsNull","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> PropertyIsNull","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"PropertyIsNull — PropertyIsNull","text":"PropertyName property name field XML encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"PropertyIsNull — PropertyIsNull","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion() ows4R::OGCExpression$setExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"PropertyIsNull — PropertyIsNull","text":"PropertyIsNull$new() PropertyIsNull$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"PropertyIsNull — PropertyIsNull","text":"Initializes object extending PropertyIsLike","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsNull — PropertyIsNull","text":"","code":"PropertyIsNull$new(PropertyName)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsNull — PropertyIsNull","text":"PropertyName property name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"PropertyIsNull — PropertyIsNull","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"PropertyIsNull — PropertyIsNull","text":"","code":"PropertyIsNull$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"PropertyIsNull — PropertyIsNull","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/PropertyIsNull.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"PropertyIsNull — PropertyIsNull","text":"","code":"expr <- PropertyIsNull$new(PropertyName = \"property\") expr_xml <- expr$encode() #see how it looks like in XML"},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":null,"dir":"Reference","previous_headings":"","what":"UnaryLogicOpType — UnaryLogicOpType","title":"UnaryLogicOpType — UnaryLogicOpType","text":"UnaryLogicOpType UnaryLogicOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"UnaryLogicOpType — UnaryLogicOpType","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"UnaryLogicOpType — UnaryLogicOpType","text":"Object R6Class modelling UnaryLogicOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"UnaryLogicOpType — UnaryLogicOpType","text":"abstract super class unary logical operation classes","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"UnaryLogicOpType — UnaryLogicOpType","text":"ows4R::OGCAbstractObject -> ows4R::OGCExpression -> UnaryLogicOpType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"UnaryLogicOpType — UnaryLogicOpType","text":"operations list OGC expressions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"UnaryLogicOpType — UnaryLogicOpType","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OGCExpression$getExprVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"UnaryLogicOpType — UnaryLogicOpType","text":"UnaryLogicOpType$new() UnaryLogicOpType$setExprVersion() UnaryLogicOpType$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"UnaryLogicOpType — UnaryLogicOpType","text":"Initializes UnaryLogicOpType expression","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"UnaryLogicOpType — UnaryLogicOpType","text":"","code":"UnaryLogicOpType$new(..., element, namespacePrefix, exprVersion = \"1.1.0\")"},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"UnaryLogicOpType — UnaryLogicOpType","text":"... list objects class OGCExpression element element namespacePrefix namespacePrefix exprVersion OGC expression version. Default \"1.1.0\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"method-setexprversion-","dir":"Reference","previous_headings":"","what":"Method setExprVersion()","title":"UnaryLogicOpType — UnaryLogicOpType","text":"Sets expression version. methods control expression versions set operations specified expression.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"UnaryLogicOpType — UnaryLogicOpType","text":"","code":"UnaryLogicOpType$setExprVersion(exprVersion)"},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"UnaryLogicOpType — UnaryLogicOpType","text":"exprVersion OGC expression version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"UnaryLogicOpType — UnaryLogicOpType","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"UnaryLogicOpType — UnaryLogicOpType","text":"","code":"UnaryLogicOpType$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/UnaryLogicOpType.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"UnaryLogicOpType — UnaryLogicOpType","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCapabilities — WCSCapabilities","title":"WCSCapabilities — WCSCapabilities","text":"WCSCapabilities WCSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSCapabilities — WCSCapabilities","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCapabilities — WCSCapabilities","text":"Object R6Class methods interfacing OGC Web Coverage Service Get Capabilities document.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCapabilities — WCSCapabilities","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WCSCapabilities — WCSCapabilities","text":"ows4R::OGCAbstractObject -> ows4R::OWSCapabilities -> WCSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSCapabilities — WCSCapabilities","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSCapabilities$getClient() ows4R::OWSCapabilities$getOWSVersion() ows4R::OWSCapabilities$getOperationsMetadata() ows4R::OWSCapabilities$getRequest() ows4R::OWSCapabilities$getService() ows4R::OWSCapabilities$getServiceIdentification() ows4R::OWSCapabilities$getServiceProvider() ows4R::OWSCapabilities$getServiceVersion() ows4R::OWSCapabilities$getUrl() ows4R::OWSCapabilities$setClient()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSCapabilities — WCSCapabilities","text":"WCSCapabilities$new() WCSCapabilities$getCoverageSummaries() WCSCapabilities$findCoverageSummaryById() WCSCapabilities$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSCapabilities — WCSCapabilities","text":"Initializes WCSCapabilities object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCapabilities — WCSCapabilities","text":"","code":"WCSCapabilities$new(url, version, client = NULL, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCapabilities — WCSCapabilities","text":"url url version version client object class WCSClient logger logger type NULL, \"INFO\" \"DEBUG\" ... parameter pass OWSGetCapabilities service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"method-getcoveragesummaries-","dir":"Reference","previous_headings":"","what":"Method getCoverageSummaries()","title":"WCSCapabilities — WCSCapabilities","text":"Get coverage summaries","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCapabilities — WCSCapabilities","text":"","code":"WCSCapabilities$getCoverageSummaries()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCapabilities — WCSCapabilities","text":"list WCSCoverageSummary objects","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"method-findcoveragesummarybyid-","dir":"Reference","previous_headings":"","what":"Method findCoverageSummaryById()","title":"WCSCapabilities — WCSCapabilities","text":"Finds coverage name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCapabilities — WCSCapabilities","text":"","code":"WCSCapabilities$findCoverageSummaryById(expr, exact = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCapabilities — WCSCapabilities","text":"expr expr exact exact matching? Default TRUE","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSCapabilities — WCSCapabilities","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCapabilities — WCSCapabilities","text":"","code":"WCSCapabilities$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCapabilities — WCSCapabilities","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCapabilities.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"WCSCapabilities — WCSCapabilities","text":"","code":"# \\dontrun{ WCSCapabilities$new(\"http://localhost:8080/geoserver/wcs\", serviceVersion = \"2.0.1\") #> Error in initialize(...): argument \"version\" is missing, with no default # }"},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSClient — WCSClient","title":"WCSClient — WCSClient","text":"WCSClient WCSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSClient — WCSClient","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSClient — WCSClient","text":"Object R6Class methods interfacing OGC Web Coverage Service.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSClient — WCSClient","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WCSClient — WCSClient","text":"ows4R::OGCAbstractObject -> ows4R::OWSClient -> WCSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSClient — WCSClient","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSClient$getCASUrl() ows4R::OWSClient$getConfig() ows4R::OWSClient$getHeaders() ows4R::OWSClient$getPwd() ows4R::OWSClient$getToken() ows4R::OWSClient$getUrl() ows4R::OWSClient$getUser() ows4R::OWSClient$getVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSClient — WCSClient","text":"WCSClient$new() WCSClient$getCapabilities() WCSClient$reloadCapabilities() WCSClient$describeCoverage() WCSClient$getCoverage() WCSClient$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSClient — WCSClient","text":"method used instantiate WCSClient url OGC service. Authentication supported using basic auth (using user/pwd arguments), bearer token (using token argument), custom (using headers argument). default, logger argument set NULL (logger). argument accepts two possible values: INFO: print ows4R logs, DEBUG: print verbose logs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSClient — WCSClient","text":"","code":"WCSClient$new( url, serviceVersion = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), cas_url = NULL, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSClient — WCSClient","text":"url url serviceVersion WFS service version user user pwd password token token headers headers config config cas_url Central Authentication Service (CAS) URL logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"method-getcapabilities-","dir":"Reference","previous_headings":"","what":"Method getCapabilities()","title":"WCSClient — WCSClient","text":"Get WCS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSClient — WCSClient","text":"","code":"WCSClient$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSClient — WCSClient","text":"object class WCSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"method-reloadcapabilities-","dir":"Reference","previous_headings":"","what":"Method reloadCapabilities()","title":"WCSClient — WCSClient","text":"Reloads WCS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSClient — WCSClient","text":"","code":"WCSClient$reloadCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"method-describecoverage-","dir":"Reference","previous_headings":"","what":"Method describeCoverage()","title":"WCSClient — WCSClient","text":"Describes coverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSClient — WCSClient","text":"","code":"WCSClient$describeCoverage(identifier)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSClient — WCSClient","text":"identifier identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSClient — WCSClient","text":"object class WCSCoverageDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"method-getcoverage-","dir":"Reference","previous_headings":"","what":"Method getCoverage()","title":"WCSClient — WCSClient","text":"Get coverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSClient — WCSClient","text":"","code":"WCSClient$getCoverage( identifier, bbox = NULL, crs = NULL, time = NULL, format = NULL, rangesubset = NULL, gridbaseCRS = NULL, gridtype = NULL, gridCS = NULL, gridorigin = NULL, gridoffsets = NULL, method = \"GET\", filename = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSClient — WCSClient","text":"identifier Coverage identifier. Object class character bbox bbox. Object class matrix. Default NULL. eg. OWSUtils$toBBOX(-180,180,-90,90) crs crs. Object class character giving CRS identifier (EPSG prefixed code, URI/URN). Default NULL. time time. Object class character representing time instant/period. Default NULL format format. Object class character Default GeoTIFF, coded differently depending WCS version. rangesubset rangesubset. Default NULL gridbaseCRS grid base CRS. Default NULL gridtype grid type. Default NULL gridCS grid CS. Default NULL gridorigin grid origin. Default NULL gridoffsets grid offsets. Default NULL method method get coverage, either 'GET' 'POST' (experimental - development). Object class character. filename filename. Object class character. Optional filename download coverage ... argument WCSGetCoverage elevation elevation. Object class character numeric. Default NULL","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSClient — WCSClient","text":"object class SpatRaster terra","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSClient — WCSClient","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSClient — WCSClient","text":"","code":"WCSClient$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSClient — WCSClient","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSClient.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"WCSClient — WCSClient","text":"","code":"# \\dontrun{ wcs <- WCSClient$new(\"http://localhost:8080/geoserver/wcs\", serviceVersion = \"2.0.1\") #> Error in curl::curl_fetch_memory(url, handle = handle): Failed to connect to localhost port 8080 after 0 ms: Connection refused # }"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCoverage — WCSCoverage","title":"WCSCoverage — WCSCoverage","text":"WCSCoverage WCSCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSCoverage — WCSCoverage","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCoverage — WCSCoverage","text":"Object R6Class modelling WCS coverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSCoverage — WCSCoverage","text":"Class used internally ows4R.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCoverage — WCSCoverage","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WCSCoverage — WCSCoverage","text":"ows4R::OGCAbstractObject -> WCSCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSCoverage — WCSCoverage","text":"description description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSCoverage — WCSCoverage","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSCoverage — WCSCoverage","text":"WCSCoverage$new() WCSCoverage$getIdentifier() WCSCoverage$getTitle() WCSCoverage$getAbstract() WCSCoverage$getReference() WCSCoverage$getData() WCSCoverage$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSCoverage — WCSCoverage","text":"Initializes object class WCSCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverage — WCSCoverage","text":"","code":"WCSCoverage$new(xmlObj, serviceVersion, owsVersion, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverage — WCSCoverage","text":"xmlObj object class XMLInternalNode-class serviceVersion WCS service version owsVersion OWS version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"method-getidentifier-","dir":"Reference","previous_headings":"","what":"Method getIdentifier()","title":"WCSCoverage — WCSCoverage","text":"Get identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverage — WCSCoverage","text":"","code":"WCSCoverage$getIdentifier()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverage — WCSCoverage","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"method-gettitle-","dir":"Reference","previous_headings":"","what":"Method getTitle()","title":"WCSCoverage — WCSCoverage","text":"Get title","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverage — WCSCoverage","text":"","code":"WCSCoverage$getTitle()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverage — WCSCoverage","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"method-getabstract-","dir":"Reference","previous_headings":"","what":"Method getAbstract()","title":"WCSCoverage — WCSCoverage","text":"Get abstract","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverage — WCSCoverage","text":"","code":"WCSCoverage$getAbstract()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverage — WCSCoverage","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"method-getreference-","dir":"Reference","previous_headings":"","what":"Method getReference()","title":"WCSCoverage — WCSCoverage","text":"Get reference","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverage — WCSCoverage","text":"","code":"WCSCoverage$getReference()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverage — WCSCoverage","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"method-getdata-","dir":"Reference","previous_headings":"","what":"Method getData()","title":"WCSCoverage — WCSCoverage","text":"Get data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverage — WCSCoverage","text":"","code":"WCSCoverage$getData(filename = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverage — WCSCoverage","text":"filename filename. Optional file name download coverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverage — WCSCoverage","text":"object class SpatRaster terra","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSCoverage — WCSCoverage","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverage — WCSCoverage","text":"","code":"WCSCoverage$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverage.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverage — WCSCoverage","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCoverageDescription — WCSCoverageDescription","title":"WCSCoverageDescription — WCSCoverageDescription","text":"WCSCoverageDescription WCSCoverageDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSCoverageDescription — WCSCoverageDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCoverageDescription — WCSCoverageDescription","text":"Object R6Class modelling WCS coverage summary","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSCoverageDescription — WCSCoverageDescription","text":"Class used internally ows4R.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCoverageDescription — WCSCoverageDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WCSCoverageDescription — WCSCoverageDescription","text":"geometa::geometaLogger -> geometa::ISOAbstractObject -> geometa::GMLAbstractObject -> geometa::GMLAbstractFeature -> geometa::GMLAbstractCoverage -> geometa::GMLCOVAbstractCoverage -> WCSCoverageDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSCoverageDescription — WCSCoverageDescription","text":"CoverageId coverage ID SupportedCRS supported CRS SupportedFormat supported Format Domain domain Range range ServiceParameters service parmaeters","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSCoverageDescription — WCSCoverageDescription","text":"geometa::geometaLogger$ERROR() geometa::geometaLogger$INFO() geometa::geometaLogger$WARN() geometa::ISOAbstractObject$addFieldAttrs() geometa::ISOAbstractObject$addListElement() geometa::ISOAbstractObject$contains() geometa::ISOAbstractObject$createLocalisedProperty() geometa::ISOAbstractObject$decode() geometa::ISOAbstractObject$delListElement() geometa::ISOAbstractObject$encode() geometa::ISOAbstractObject$getClass() geometa::ISOAbstractObject$getClassName() geometa::ISOAbstractObject$getNamespaceDefinition() geometa::ISOAbstractObject$isDocument() geometa::ISOAbstractObject$isFieldInheritedFrom() geometa::ISOAbstractObject$print() geometa::ISOAbstractObject$save() geometa::ISOAbstractObject$setAttr() geometa::ISOAbstractObject$setCodeList() geometa::ISOAbstractObject$setCodeListValue() geometa::ISOAbstractObject$setCodeSpace() geometa::ISOAbstractObject$setHref() geometa::ISOAbstractObject$setId() geometa::ISOAbstractObject$setIsNull() geometa::ISOAbstractObject$setValue() geometa::ISOAbstractObject$validate() geometa::ISOAbstractObject$wrapBaseElement() geometa::GMLAbstractFeature$setBoundedBy() geometa::GMLAbstractCoverage$setDomainSet() geometa::GMLAbstractCoverage$setRangeSet()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSCoverageDescription — WCSCoverageDescription","text":"WCSCoverageDescription$new() WCSCoverageDescription$getId() WCSCoverageDescription$getSupportedCRS() WCSCoverageDescription$getSupportedFormats() WCSCoverageDescription$getDomain() WCSCoverageDescription$getRange() WCSCoverageDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSCoverageDescription — WCSCoverageDescription","text":"Initializes object class WCSCoverageDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDescription — WCSCoverageDescription","text":"","code":"WCSCoverageDescription$new(xmlObj, serviceVersion, owsVersion, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageDescription — WCSCoverageDescription","text":"xmlObj object class XMLInternalNode-class initialize XML serviceVersion service version owsVersion OWS version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"method-getid-","dir":"Reference","previous_headings":"","what":"Method getId()","title":"WCSCoverageDescription — WCSCoverageDescription","text":"getId","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDescription — WCSCoverageDescription","text":"","code":"WCSCoverageDescription$getId()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageDescription — WCSCoverageDescription","text":"coverage id, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"method-getsupportedcrs-","dir":"Reference","previous_headings":"","what":"Method getSupportedCRS()","title":"WCSCoverageDescription — WCSCoverageDescription","text":"getSupported CRS. Applies WCS 1 coverage descriptions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDescription — WCSCoverageDescription","text":"","code":"WCSCoverageDescription$getSupportedCRS()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"method-getsupportedformats-","dir":"Reference","previous_headings":"","what":"Method getSupportedFormats()","title":"WCSCoverageDescription — WCSCoverageDescription","text":"get supported formats. Applies WCS 1 coverage descriptions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDescription — WCSCoverageDescription","text":"","code":"WCSCoverageDescription$getSupportedFormats()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"method-getdomain-","dir":"Reference","previous_headings":"","what":"Method getDomain()","title":"WCSCoverageDescription — WCSCoverageDescription","text":"get domain. Applies WCS 1 coverage descriptions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDescription — WCSCoverageDescription","text":"","code":"WCSCoverageDescription$getDomain()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"method-getrange-","dir":"Reference","previous_headings":"","what":"Method getRange()","title":"WCSCoverageDescription — WCSCoverageDescription","text":"get range. Applies WCS 1.0 coverage descriptions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDescription — WCSCoverageDescription","text":"","code":"WCSCoverageDescription$getRange()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSCoverageDescription — WCSCoverageDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDescription — WCSCoverageDescription","text":"","code":"WCSCoverageDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageDescription — WCSCoverageDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCoverageDomain — WCSCoverageDomain","title":"WCSCoverageDomain — WCSCoverageDomain","text":"WCSCoverageDomain WCSCoverageDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSCoverageDomain — WCSCoverageDomain","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCoverageDomain — WCSCoverageDomain","text":"Object R6Class modelling WCS coverage domain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSCoverageDomain — WCSCoverageDomain","text":"Class used internally ows4R.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCoverageDomain — WCSCoverageDomain","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WCSCoverageDomain — WCSCoverageDomain","text":"ows4R::OGCAbstractObject -> WCSCoverageDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSCoverageDomain — WCSCoverageDomain","text":"spatialDomain spatial domain temporalDomain temporal domain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSCoverageDomain — WCSCoverageDomain","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSCoverageDomain — WCSCoverageDomain","text":"WCSCoverageDomain$new() WCSCoverageDomain$getSpatialDomain() WCSCoverageDomain$getTemporalDomain() WCSCoverageDomain$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSCoverageDomain — WCSCoverageDomain","text":"Initializes object class WCSCoverageDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDomain — WCSCoverageDomain","text":"","code":"WCSCoverageDomain$new(xmlObj, serviceVersion, owsVersion, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageDomain — WCSCoverageDomain","text":"xmlObj object class XMLInternalNode-class initialize XML serviceVersion service version owsVersion OWS version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"method-getspatialdomain-","dir":"Reference","previous_headings":"","what":"Method getSpatialDomain()","title":"WCSCoverageDomain — WCSCoverageDomain","text":"Get spatial domain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDomain — WCSCoverageDomain","text":"","code":"WCSCoverageDomain$getSpatialDomain()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageDomain — WCSCoverageDomain","text":"object class WCSCoverageSpatialDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"method-gettemporaldomain-","dir":"Reference","previous_headings":"","what":"Method getTemporalDomain()","title":"WCSCoverageDomain — WCSCoverageDomain","text":"Get spatial domain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDomain — WCSCoverageDomain","text":"","code":"WCSCoverageDomain$getTemporalDomain()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageDomain — WCSCoverageDomain","text":"object class WCSCoverageTemporalDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSCoverageDomain — WCSCoverageDomain","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageDomain — WCSCoverageDomain","text":"","code":"WCSCoverageDomain$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageDomain.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageDomain — WCSCoverageDomain","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageFilenameHandler.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCoverageFilenameHandler — WCSCoverageFilenameHandler","title":"WCSCoverageFilenameHandler — WCSCoverageFilenameHandler","text":"WCSCoverageFilenameHandler provides coverage filename handler coverage download","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageFilenameHandler.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageFilenameHandler — WCSCoverageFilenameHandler","text":"","code":"WCSCoverageFilenameHandler(identifier, time, elevation, bbox, format)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageFilenameHandler.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageFilenameHandler — WCSCoverageFilenameHandler","text":"identifier coverage identifier time time elevation elevation bbox bbox format format","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageFilenameHandler.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCoverageFilenameHandler — WCSCoverageFilenameHandler","text":"filename use coverage download","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageFilenameHandler.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCoverageFilenameHandler — WCSCoverageFilenameHandler","text":"Emmanuel Blondel, emmanuel.blondel1@gmail.com","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"WCSCoverageSpatialDomain WCSCoverageSpatialDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Object R6Class modelling WCS coverage spatial domain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Class used internally ows4R.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"ows4R::OGCAbstractObject -> WCSCoverageSpatialDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"envelopes envelopes. WCS 1.0 BoundingBox bounding box. WCS 1.1 grids WCS 1.0 GridCRS grid CRS. WCS 1.1","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"WCSCoverageSpatialDomain$new() WCSCoverageSpatialDomain$getEnvelopes() WCSCoverageSpatialDomain$getBoundingBox() WCSCoverageSpatialDomain$getGrids() WCSCoverageSpatialDomain$getGridCRS() WCSCoverageSpatialDomain$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Initializes object class WCSCoverageDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"","code":"WCSCoverageSpatialDomain$new(xmlObj, serviceVersion, owsVersion, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"xmlObj object class XMLInternalNode-class initialize XML serviceVersion service version owsVersion OWS version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"method-getenvelopes-","dir":"Reference","previous_headings":"","what":"Method getEnvelopes()","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Get envelopes. Method applies WCS 1.0 ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"","code":"WCSCoverageSpatialDomain$getEnvelopes()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"list objects class GMLEnvelope GMLEnvelopeWithTimePeriod","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"method-getboundingbox-","dir":"Reference","previous_headings":"","what":"Method getBoundingBox()","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Get bounding boxes. Method applies WCS 1.1 ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"","code":"WCSCoverageSpatialDomain$getBoundingBox()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"list objects class OWSBoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"method-getgrids-","dir":"Reference","previous_headings":"","what":"Method getGrids()","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Get grids. Method applies WCS 1.0 ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"","code":"WCSCoverageSpatialDomain$getGrids()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"list objects class GMLGrid GMLRectifiedGrid","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"method-getgridcrs-","dir":"Reference","previous_headings":"","what":"Method getGridCRS()","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"Get Grid CRS. Method applies WCS 1.1 ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"","code":"WCSCoverageSpatialDomain$getGridCRS()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"list objects class WCSGridCRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"","code":"WCSCoverageSpatialDomain$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSpatialDomain.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageSpatialDomain — WCSCoverageSpatialDomain","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCoverageSummary — WCSCoverageSummary","title":"WCSCoverageSummary — WCSCoverageSummary","text":"WCSCoverageSummary WCSCoverageSummary","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSCoverageSummary — WCSCoverageSummary","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Object R6Class modelling WCS coverage summary","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Class used internally ows4R.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WCSCoverageSummary — WCSCoverageSummary","text":"ows4R::OGCAbstractObject -> WCSCoverageSummary","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSCoverageSummary — WCSCoverageSummary","text":"CoverageId coverage id CoverageSubtype coverage subtype CoverageSubtypeParent coverage subtype parent WGS84BoundingBox WGS84 bounding box BoundingBox bounding box","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSCoverageSummary — WCSCoverageSummary","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSCoverageSummary — WCSCoverageSummary","text":"WCSCoverageSummary$new() WCSCoverageSummary$getId() WCSCoverageSummary$getSubtype() WCSCoverageSummary$getSubtypeParent() WCSCoverageSummary$getWGS84BoundingBox() WCSCoverageSummary$getBoundingBox() WCSCoverageSummary$getDescription() WCSCoverageSummary$getDimensions() WCSCoverageSummary$getCoverage() WCSCoverageSummary$getCoverageStack() WCSCoverageSummary$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Initializes WCSCoverageSummary object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$new( xmlObj, capabilities, serviceVersion, owsVersion, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageSummary — WCSCoverageSummary","text":"xmlObj object class XMLInternalNode-class XML capabilities object class WCSCapabilities serviceVersion WCS service version owsVersion version logger logger type NULL, \"INFO\" \"DEBUG\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getid-","dir":"Reference","previous_headings":"","what":"Method getId()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get coverage ID","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getId()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getsubtype-","dir":"Reference","previous_headings":"","what":"Method getSubtype()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get sub type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getSubtype()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getsubtypeparent-","dir":"Reference","previous_headings":"","what":"Method getSubtypeParent()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get sub type parent","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getSubtypeParent()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getwgs-boundingbox-","dir":"Reference","previous_headings":"","what":"Method getWGS84BoundingBox()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get bounding box","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getWGS84BoundingBox()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class OWSWGS84BoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getboundingbox-","dir":"Reference","previous_headings":"","what":"Method getBoundingBox()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get WGS84 bounding box","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getBoundingBox()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class OWSBoundingBox","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getdescription-","dir":"Reference","previous_headings":"","what":"Method getDescription()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getDescription()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class WCSCoverageDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getdimensions-","dir":"Reference","previous_headings":"","what":"Method getDimensions()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get dimensions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getDimensions()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"list dimensions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getcoverage-","dir":"Reference","previous_headings":"","what":"Method getCoverage()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get coverage data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getCoverage( bbox = NULL, crs = NULL, time = NULL, elevation = NULL, format = NULL, rangesubset = NULL, gridbaseCRS = NULL, gridtype = NULL, gridCS = NULL, gridorigin = NULL, gridoffsets = NULL, method = \"GET\", filename = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageSummary — WCSCoverageSummary","text":"bbox bbox. Object class matrix. Default NULL. eg. OWSUtils$toBBOX(-180,180,-90,90) crs crs. Object class character giving CRS identifier (EPSG prefixed code, URI/URN). Default NULL. time time. Object class character representing time instant/period. Default NULL elevation elevation. Object class character numeric. Default NULL format format. Object class character Default GeoTIFF, coded differently depending WCS version. rangesubset rangesubset. Default NULL gridbaseCRS grid base CRS. Default NULL gridtype grid type. Default NULL gridCS grid CS. Default NULL gridorigin grid origin. Default NULL gridoffsets grid offsets. Default NULL method method get coverage, either 'GET' 'POST' (experimental - development). Object class character. filename filename. Object class character. Optional filename download coverage ... argument WCSGetCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class SpatRaster terra","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-getcoveragestack-","dir":"Reference","previous_headings":"","what":"Method getCoverageStack()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"Get spatio-temporal coverage data cubes coverage stack","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$getCoverageStack( time = NULL, elevation = NULL, bbox = NULL, filename_handler = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageSummary — WCSCoverageSummary","text":"time time elevation elevation bbox bbox filename_handler Optional filename handling function arguments 'identifier', 'time', 'elevation', 'bbox', 'format' See WCSCoverageFilenameHandler genric filename handler can used. ... parameter pass getCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"returns-8","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageSummary — WCSCoverageSummary","text":"object class stack raster","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSCoverageSummary — WCSCoverageSummary","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageSummary — WCSCoverageSummary","text":"","code":"WCSCoverageSummary$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageSummary.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageSummary — WCSCoverageSummary","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"WCSCoverageTemporalDomain WCSCoverageTemporalDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"Object R6Class modelling WCS coverage temporal domain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"Class used internally ows4R.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"ows4R::OGCAbstractObject -> WCSCoverageTemporalDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"instants instants periods periods","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"WCSCoverageTemporalDomain$new() WCSCoverageTemporalDomain$getInstants() WCSCoverageTemporalDomain$getPeriods() WCSCoverageTemporalDomain$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"Initializes object class WCSCoverageTemporalDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"","code":"WCSCoverageTemporalDomain$new( xmlObj, serviceVersion, owsVersion, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"xmlObj object class XMLInternalNode-class initialize XML serviceVersion service version owsVersion OWS version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"method-getinstants-","dir":"Reference","previous_headings":"","what":"Method getInstants()","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"Get time instants","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"","code":"WCSCoverageTemporalDomain$getInstants()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"list objects class POSIXct","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"method-getperiods-","dir":"Reference","previous_headings":"","what":"Method getPeriods()","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"Get time periods","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"","code":"WCSCoverageTemporalDomain$getPeriods()"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"list objects class GMLTimePeriod","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"","code":"WCSCoverageTemporalDomain$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSCoverageTemporalDomain.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSCoverageTemporalDomain — WCSCoverageTemporalDomain","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSDescribeCoverage — WCSDescribeCoverage","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"WCSDescribeCoverage WCSDescribeCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"Object R6Class modelling WCS DescribeCoverage request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"Class used internally ows4R trigger WCS DescribeCoverage request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> WCSDescribeCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"WCSDescribeCoverage$new() WCSDescribeCoverage$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"Initializes WCSDescribeCoverage service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"","code":"WCSDescribeCoverage$new( capabilities, op, url, serviceVersion, coverageId, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"capabilities object class WCSCapabilities op object class OWSOperation retrieved capabilities url url serviceVersion serviceVersion coverageId coverage ID user user pwd password token token headers headers config config logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"","code":"WCSDescribeCoverage$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSDescribeCoverage.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSDescribeCoverage — WCSDescribeCoverage","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSGSElevationDomain — WCSGSElevationDomain","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"WCSGSElevationDomain WCSGSElevationDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"Object R6Class modelling WCS geoserver elevation domain object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"Experimental","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"geometa::geometaLogger -> geometa::ISOAbstractObject -> WCSGSElevationDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"SingleValue single values","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"geometa::geometaLogger$ERROR() geometa::geometaLogger$INFO() geometa::geometaLogger$WARN() geometa::ISOAbstractObject$addFieldAttrs() geometa::ISOAbstractObject$addListElement() geometa::ISOAbstractObject$contains() geometa::ISOAbstractObject$createLocalisedProperty() geometa::ISOAbstractObject$delListElement() geometa::ISOAbstractObject$encode() geometa::ISOAbstractObject$getClass() geometa::ISOAbstractObject$getClassName() geometa::ISOAbstractObject$getNamespaceDefinition() geometa::ISOAbstractObject$initialize() geometa::ISOAbstractObject$isDocument() geometa::ISOAbstractObject$isFieldInheritedFrom() geometa::ISOAbstractObject$print() geometa::ISOAbstractObject$save() geometa::ISOAbstractObject$setAttr() geometa::ISOAbstractObject$setCodeList() geometa::ISOAbstractObject$setCodeListValue() geometa::ISOAbstractObject$setCodeSpace() geometa::ISOAbstractObject$setHref() geometa::ISOAbstractObject$setId() geometa::ISOAbstractObject$setIsNull() geometa::ISOAbstractObject$setValue() geometa::ISOAbstractObject$validate() geometa::ISOAbstractObject$wrapBaseElement()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"WCSGSElevationDomain$decode() WCSGSElevationDomain$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"Decodes XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"","code":"WCSGSElevationDomain$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"xml object class XMLInternalNode-class XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"","code":"WCSGSElevationDomain$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSElevationDomain.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGSElevationDomain — WCSGSElevationDomain","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSGSTimeDomain — WCSGSTimeDomain","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"WCSGSTimeDomain WCSGSTimeDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"Object R6Class modelling WCS geoserver time domain object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"Experimental","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"geometa::geometaLogger -> geometa::ISOAbstractObject -> WCSGSTimeDomain","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"TimeInstant time instants","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"geometa::geometaLogger$ERROR() geometa::geometaLogger$INFO() geometa::geometaLogger$WARN() geometa::ISOAbstractObject$addFieldAttrs() geometa::ISOAbstractObject$addListElement() geometa::ISOAbstractObject$contains() geometa::ISOAbstractObject$createLocalisedProperty() geometa::ISOAbstractObject$delListElement() geometa::ISOAbstractObject$encode() geometa::ISOAbstractObject$getClass() geometa::ISOAbstractObject$getClassName() geometa::ISOAbstractObject$getNamespaceDefinition() geometa::ISOAbstractObject$initialize() geometa::ISOAbstractObject$isDocument() geometa::ISOAbstractObject$isFieldInheritedFrom() geometa::ISOAbstractObject$print() geometa::ISOAbstractObject$save() geometa::ISOAbstractObject$setAttr() geometa::ISOAbstractObject$setCodeList() geometa::ISOAbstractObject$setCodeListValue() geometa::ISOAbstractObject$setCodeSpace() geometa::ISOAbstractObject$setHref() geometa::ISOAbstractObject$setId() geometa::ISOAbstractObject$setIsNull() geometa::ISOAbstractObject$setValue() geometa::ISOAbstractObject$validate() geometa::ISOAbstractObject$wrapBaseElement()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"WCSGSTimeDomain$decode() WCSGSTimeDomain$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"Decodes XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"","code":"WCSGSTimeDomain$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"xml object class XMLInternalNode-class XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"","code":"WCSGSTimeDomain$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGSTimeDomain.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGSTimeDomain — WCSGSTimeDomain","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSGetCoverage — WCSGetCoverage","title":"WCSGetCoverage — WCSGetCoverage","text":"WCSGetCoverage WCSGetCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSGetCoverage — WCSGetCoverage","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSGetCoverage — WCSGetCoverage","text":"Object R6Class modelling WCS GetCoverage request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSGetCoverage — WCSGetCoverage","text":"Class used internally ows4R trigger WCS GetCoverage request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSGetCoverage — WCSGetCoverage","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WCSGetCoverage — WCSGetCoverage","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> WCSGetCoverage","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSGetCoverage — WCSGetCoverage","text":"CoverageId coverage identifier format coverage format","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSGetCoverage — WCSGetCoverage","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSGetCoverage — WCSGetCoverage","text":"WCSGetCoverage$new() WCSGetCoverage$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSGetCoverage — WCSGetCoverage","text":"Initializes WCSGetCoverage service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGetCoverage — WCSGetCoverage","text":"","code":"WCSGetCoverage$new( capabilities, op, url, serviceVersion, coverage, envelope = NULL, crs = NULL, time = NULL, elevation = NULL, format = NULL, rangesubset = NULL, gridbaseCRS = NULL, gridtype = NULL, gridCS = NULL, gridorigin = NULL, gridoffsets = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), method = \"GET\", logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGetCoverage — WCSGetCoverage","text":"capabilities object class WCSCapabilities op object class OWSOperation retrieved capabilities url url serviceVersion serviceVersion coverage coverage, object class WCSCoverageSummary envelope envelope crs crs time time elevation elevation format format rangesubset range subset gridbaseCRS grid base CRS gridtype grid type gridCS grid CS gridorigin grid origin gridoffsets grid offsets user user pwd password token token headers headers config config method method logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSGetCoverage — WCSGetCoverage","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGetCoverage — WCSGetCoverage","text":"","code":"WCSGetCoverage$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGetCoverage.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGetCoverage — WCSGetCoverage","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":null,"dir":"Reference","previous_headings":"","what":"WCSGridCRS — WCSGridCRS","title":"WCSGridCRS — WCSGridCRS","text":"WCSGridCRS WCSGridCRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WCSGridCRS — WCSGridCRS","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WCSGridCRS — WCSGridCRS","text":"Object R6Class modelling WCS grid CRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WCSGridCRS — WCSGridCRS","text":"Class used internally ows4R.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WCSGridCRS — WCSGridCRS","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WCSGridCRS — WCSGridCRS","text":"ows4R::OGCAbstractObject -> WCSGridCRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WCSGridCRS — WCSGridCRS","text":"GridBaseCRS grid base CRS GridType grid type GridOrigin grid origin GridOffsets grid offsets GridCS grid CS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WCSGridCRS — WCSGridCRS","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WCSGridCRS — WCSGridCRS","text":"WCSGridCRS$new() WCSGridCRS$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WCSGridCRS — WCSGridCRS","text":"Initializes object class WCSGridCRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGridCRS — WCSGridCRS","text":"","code":"WCSGridCRS$new(xmlObj, serviceVersion, owsVersion, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGridCRS — WCSGridCRS","text":"xmlObj object class XMLInternalNode-class initialize XML serviceVersion service version owsVersion OWS version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WCSGridCRS — WCSGridCRS","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WCSGridCRS — WCSGridCRS","text":"","code":"WCSGridCRS$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WCSGridCRS.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WCSGridCRS — WCSGridCRS","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":null,"dir":"Reference","previous_headings":"","what":"WFSCapabilities — WFSCapabilities","title":"WFSCapabilities — WFSCapabilities","text":"WFSCapabilities WFSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WFSCapabilities — WFSCapabilities","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WFSCapabilities — WFSCapabilities","text":"Object R6Class methods interfacing OGC Web Feature Service Get Capabilities document.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WFSCapabilities — WFSCapabilities","text":"Class used read WFSCapabilities document. use WFSClient recommended instead benefit full set capabilities associated WFS server.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WFSCapabilities — WFSCapabilities","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WFSCapabilities — WFSCapabilities","text":"ows4R::OGCAbstractObject -> ows4R::OWSCapabilities -> WFSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WFSCapabilities — WFSCapabilities","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSCapabilities$getClient() ows4R::OWSCapabilities$getOWSVersion() ows4R::OWSCapabilities$getOperationsMetadata() ows4R::OWSCapabilities$getRequest() ows4R::OWSCapabilities$getService() ows4R::OWSCapabilities$getServiceIdentification() ows4R::OWSCapabilities$getServiceProvider() ows4R::OWSCapabilities$getServiceVersion() ows4R::OWSCapabilities$getUrl() ows4R::OWSCapabilities$setClient()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WFSCapabilities — WFSCapabilities","text":"WFSCapabilities$new() WFSCapabilities$getFeatureTypes() WFSCapabilities$findFeatureTypeByName() WFSCapabilities$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WFSCapabilities — WFSCapabilities","text":"Initializes WFSCapabilities object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSCapabilities — WFSCapabilities","text":"","code":"WFSCapabilities$new(url, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSCapabilities — WFSCapabilities","text":"url url version version logger logger type NULL, \"INFO\" \"DEBUG\" ... parameter pass OWSGetCapabilities service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"method-getfeaturetypes-","dir":"Reference","previous_headings":"","what":"Method getFeatureTypes()","title":"WFSCapabilities — WFSCapabilities","text":"List feature types available. pretty TRUE, output object class data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSCapabilities — WFSCapabilities","text":"","code":"WFSCapabilities$getFeatureTypes(pretty = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSCapabilities — WFSCapabilities","text":"pretty whether output summarized data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSCapabilities — WFSCapabilities","text":"list WFSFeatureType data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"method-findfeaturetypebyname-","dir":"Reference","previous_headings":"","what":"Method findFeatureTypeByName()","title":"WFSCapabilities — WFSCapabilities","text":"Finds feature type name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSCapabilities — WFSCapabilities","text":"","code":"WFSCapabilities$findFeatureTypeByName(expr, exact = TRUE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSCapabilities — WFSCapabilities","text":"expr expr exact exact matching? Default TRUE","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WFSCapabilities — WFSCapabilities","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSCapabilities — WFSCapabilities","text":"","code":"WFSCapabilities$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSCapabilities.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSCapabilities — WFSCapabilities","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":null,"dir":"Reference","previous_headings":"","what":"WFSClient — WFSClient","title":"WFSClient — WFSClient","text":"WFSClient WFSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WFSClient — WFSClient","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WFSClient — WFSClient","text":"Object R6Class methods interfacing OGC Web Feature Service.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WFSClient — WFSClient","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WFSClient — WFSClient","text":"ows4R::OGCAbstractObject -> ows4R::OWSClient -> WFSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WFSClient — WFSClient","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSClient$getCASUrl() ows4R::OWSClient$getConfig() ows4R::OWSClient$getHeaders() ows4R::OWSClient$getPwd() ows4R::OWSClient$getToken() ows4R::OWSClient$getUrl() ows4R::OWSClient$getUser() ows4R::OWSClient$getVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WFSClient — WFSClient","text":"WFSClient$new() WFSClient$getCapabilities() WFSClient$reloadCapabilities() WFSClient$describeFeatureType() WFSClient$getFeatures() WFSClient$getFeatureTypes() WFSClient$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WFSClient — WFSClient","text":"method used instantiate WFSClient url OGC service. Authentication supported using basic auth (using user/pwd arguments), bearer token (using token argument), custom (using headers argument). default, logger argument set NULL (logger). argument accepts two possible values: INFO: print ows4R logs, DEBUG: print verbose logs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSClient — WFSClient","text":"","code":"WFSClient$new( url, serviceVersion = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), cas_url = NULL, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSClient — WFSClient","text":"url url serviceVersion WFS service version user user pwd password token token headers headers config config cas_url Central Authentication Service (CAS) URL logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"method-getcapabilities-","dir":"Reference","previous_headings":"","what":"Method getCapabilities()","title":"WFSClient — WFSClient","text":"Get WFS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSClient — WFSClient","text":"","code":"WFSClient$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSClient — WFSClient","text":"object class WFSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"method-reloadcapabilities-","dir":"Reference","previous_headings":"","what":"Method reloadCapabilities()","title":"WFSClient — WFSClient","text":"Reloads WFS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSClient — WFSClient","text":"","code":"WFSClient$reloadCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"method-describefeaturetype-","dir":"Reference","previous_headings":"","what":"Method describeFeatureType()","title":"WFSClient — WFSClient","text":"Describes feature type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSClient — WFSClient","text":"","code":"WFSClient$describeFeatureType(typeName)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSClient — WFSClient","text":"typeName name feature type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSClient — WFSClient","text":"list WFSFeatureTypeElement","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"method-getfeatures-","dir":"Reference","previous_headings":"","what":"Method getFeatures()","title":"WFSClient — WFSClient","text":"Get features","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSClient — WFSClient","text":"","code":"WFSClient$getFeatures(typeName, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSClient — WFSClient","text":"typeName name feature type ... parameter pass WFSGetFeature request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSClient — WFSClient","text":"features object class sf","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"method-getfeaturetypes-","dir":"Reference","previous_headings":"","what":"Method getFeatureTypes()","title":"WFSClient — WFSClient","text":"List feature types available. pretty TRUE, output object class data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSClient — WFSClient","text":"","code":"WFSClient$getFeatureTypes(pretty = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSClient — WFSClient","text":"pretty whether output summarized data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSClient — WFSClient","text":"list WFSFeatureType data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WFSClient — WFSClient","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSClient — WFSClient","text":"","code":"WFSClient$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSClient — WFSClient","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSClient.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"WFSClient — WFSClient","text":"","code":"# \\dontrun{ #example based on a WFS endpoint responding at http://localhost:8080/geoserver/wfs wfs <- WFSClient$new(\"http://localhost:8080/geoserver/wfs\", serviceVersion = \"1.1.1\") #> Error in curl::curl_fetch_memory(url, handle = handle): Failed to connect to localhost port 8080 after 0 ms: Connection refused #get capabilities caps <- wfs$getCapabilities() #> Error in eval(expr, envir, enclos): object 'wfs' not found #find feature type ft <- caps$findFeatureTypeByName(\"mylayer\") #> Error in eval(expr, envir, enclos): object 'caps' not found if(length(ft)>0){ data <- ft$getFeatures() data_with_filter <- ft$getFeatures(cql_filter = \"somefilter\") } #> Error in eval(expr, envir, enclos): object 'ft' not found #Advanced examples at https://github.com/eblondel/ows4R/wiki#wfs # }"},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":null,"dir":"Reference","previous_headings":"","what":"WFSDescribeFeatureType — WFSDescribeFeatureType","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"WFSDescribeFeatureType WFSDescribeFeatureType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"Object R6Class modelling WFS DescribeFeatureType request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"Abstract class used ows4R trigger WFS DescribeFeatureType request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> WFSDescribeFeatureType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"WFSDescribeFeatureType$new() WFSDescribeFeatureType$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"Initializes WFSDescribeFeatureType service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"","code":"WFSDescribeFeatureType$new( capabilities, op, url, version, typeName, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"capabilities object class WFSCapabilities op object class OWSOperation retrieved capabilities url url version service version typeName typeName user user pwd pwd token token headers headers config config logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"","code":"WFSDescribeFeatureType$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSDescribeFeatureType.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSDescribeFeatureType — WFSDescribeFeatureType","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":null,"dir":"Reference","previous_headings":"","what":"WFSFeatureType — WFSFeatureType","title":"WFSFeatureType — WFSFeatureType","text":"WFSFeatureType WFSFeatureType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WFSFeatureType — WFSFeatureType","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WFSFeatureType — WFSFeatureType","text":"Object R6Class modelling WFS feature type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WFSFeatureType — WFSFeatureType","text":"Class used internally ows4R trigger WFS DescribeFeatureType request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WFSFeatureType — WFSFeatureType","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WFSFeatureType — WFSFeatureType","text":"ows4R::OGCAbstractObject -> WFSFeatureType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WFSFeatureType — WFSFeatureType","text":"description description features features","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WFSFeatureType — WFSFeatureType","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WFSFeatureType — WFSFeatureType","text":"WFSFeatureType$new() WFSFeatureType$getName() WFSFeatureType$getTitle() WFSFeatureType$getAbstract() WFSFeatureType$getKeywords() WFSFeatureType$getDefaultCRS() WFSFeatureType$getBoundingBox() WFSFeatureType$getDescription() WFSFeatureType$hasGeometry() WFSFeatureType$getGeometryType() WFSFeatureType$getFeaturesCRS() WFSFeatureType$getFeatures() WFSFeatureType$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WFSFeatureType — WFSFeatureType","text":"Initializes object class WFSFeatureType","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$new(xmlObj, capabilities, version, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"xmlObj object class XMLInternalNode-class initialize XML capabilities object class WFSCapabilities version service version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getname-","dir":"Reference","previous_headings":"","what":"Method getName()","title":"WFSFeatureType — WFSFeatureType","text":"Get feature type name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getName()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-gettitle-","dir":"Reference","previous_headings":"","what":"Method getTitle()","title":"WFSFeatureType — WFSFeatureType","text":"Get feature type title","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getTitle()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getabstract-","dir":"Reference","previous_headings":"","what":"Method getAbstract()","title":"WFSFeatureType — WFSFeatureType","text":"Get feature type abstract","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getAbstract()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getkeywords-","dir":"Reference","previous_headings":"","what":"Method getKeywords()","title":"WFSFeatureType — WFSFeatureType","text":"Get feature type keywords","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getKeywords()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getdefaultcrs-","dir":"Reference","previous_headings":"","what":"Method getDefaultCRS()","title":"WFSFeatureType — WFSFeatureType","text":"Get feature type default CRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getDefaultCRS()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-5","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getboundingbox-","dir":"Reference","previous_headings":"","what":"Method getBoundingBox()","title":"WFSFeatureType — WFSFeatureType","text":"Get feature type bounding box","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getBoundingBox()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-6","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"object class matrix","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getdescription-","dir":"Reference","previous_headings":"","what":"Method getDescription()","title":"WFSFeatureType — WFSFeatureType","text":"Describes feature type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getDescription(pretty = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-7","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"pretty pretty whether return prettified data.frame. Default FALSE","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureType — WFSFeatureType","text":"list WFSFeatureTypeElement data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-hasgeometry-","dir":"Reference","previous_headings":"","what":"Method hasGeometry()","title":"WFSFeatureType — WFSFeatureType","text":"Indicates feature type geometry","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$hasGeometry()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureType — WFSFeatureType","text":"object class logical","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getgeometrytype-","dir":"Reference","previous_headings":"","what":"Method getGeometryType()","title":"WFSFeatureType — WFSFeatureType","text":"Get geometry type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getGeometryType()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureType — WFSFeatureType","text":"object class character representing geometry tpe","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getfeaturescrs-","dir":"Reference","previous_headings":"","what":"Method getFeaturesCRS()","title":"WFSFeatureType — WFSFeatureType","text":"Inherits features CRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getFeaturesCRS(obj)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-8","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"obj features object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureType — WFSFeatureType","text":"object class integer","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-getfeatures-","dir":"Reference","previous_headings":"","what":"Method getFeatures()","title":"WFSFeatureType — WFSFeatureType","text":"Get features","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-11","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$getFeatures( ..., outputFormat = NULL, paging = FALSE, paging_length = 1000, parallel = FALSE, parallel_handler = NULL, cl = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-9","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"... parameter pass WFSGetFeature request outputFormat output format paging paging. Default FALSE paging_length number features request per page. Default 1000 parallel whether get features using parallel multicore strategy. Default FALSE parallel_handler Handler function parallelize code. eg mclapply cl optional cluster object parallel cluster approaches using eg. parallel::makeCluster typeName name feature type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureType — WFSFeatureType","text":"features object class sf","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WFSFeatureType — WFSFeatureType","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"usage-12","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureType — WFSFeatureType","text":"","code":"WFSFeatureType$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureType.html","id":"arguments-10","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureType — WFSFeatureType","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":null,"dir":"Reference","previous_headings":"","what":"WFSFeatureTypeElement — WFSFeatureTypeElement","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"WFSFeatureTypeElement WFSFeatureTypeElement","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"Object R6Class modelling WFS feature type element","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"Abstract class used ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"Emmanuel Blondel ","code":""},{"path":[]},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"WFSFeatureTypeElement$new() WFSFeatureTypeElement$getMinOccurs() WFSFeatureTypeElement$getMaxOccurs() WFSFeatureTypeElement$isNillable() WFSFeatureTypeElement$getName() WFSFeatureTypeElement$getType() WFSFeatureTypeElement$isGeometry() WFSFeatureTypeElement$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"Initializes WFSFeatureTypeElement","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$new(xmlObj, namespaces)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"xmlObj object class XMLInternalNode-class XML namespaces namespaces definitions inherited parent XML, data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-getminoccurs-","dir":"Reference","previous_headings":"","what":"Method getMinOccurs()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"get min occurs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$getMinOccurs()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-getmaxoccurs-","dir":"Reference","previous_headings":"","what":"Method getMaxOccurs()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"get max occurs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$getMaxOccurs()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-isnillable-","dir":"Reference","previous_headings":"","what":"Method isNillable()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"get nillable","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$isNillable()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"object class logical","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-getname-","dir":"Reference","previous_headings":"","what":"Method getName()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"get name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$getName()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-gettype-","dir":"Reference","previous_headings":"","what":"Method getType()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"get type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$getType()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-isgeometry-","dir":"Reference","previous_headings":"","what":"Method isGeometry()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"geometry","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$isGeometry()"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"return object class logical","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"","code":"WFSFeatureTypeElement$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSFeatureTypeElement.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSFeatureTypeElement — WFSFeatureTypeElement","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":null,"dir":"Reference","previous_headings":"","what":"WFSGetFeature — WFSGetFeature","title":"WFSGetFeature — WFSGetFeature","text":"WFSGetFeature WFSGetFeature","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WFSGetFeature — WFSGetFeature","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WFSGetFeature — WFSGetFeature","text":"Object R6Class modelling WFS GetFeature request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WFSGetFeature — WFSGetFeature","text":"Class used internally ows4R trigger WFS GetFeature request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WFSGetFeature — WFSGetFeature","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WFSGetFeature — WFSGetFeature","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> WFSGetFeature","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WFSGetFeature — WFSGetFeature","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WFSGetFeature — WFSGetFeature","text":"WFSGetFeature$new() WFSGetFeature$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WFSGetFeature — WFSGetFeature","text":"Initializes WFSGetFeature service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSGetFeature — WFSGetFeature","text":"","code":"WFSGetFeature$new( capabilities, op, url, version, typeName, outputFormat = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSGetFeature — WFSGetFeature","text":"capabilities object class WFSCapabilities op object class OWSOperation retrieved capabilities url url version service version typeName typeName outputFormat output format user user pwd password token token headers headers config config logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WFSGetFeature — WFSGetFeature","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WFSGetFeature — WFSGetFeature","text":"","code":"WFSGetFeature$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WFSGetFeature.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WFSGetFeature — WFSGetFeature","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":null,"dir":"Reference","previous_headings":"","what":"WMSCapabilities — WMSCapabilities","title":"WMSCapabilities — WMSCapabilities","text":"WMSCapabilities WMSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WMSCapabilities — WMSCapabilities","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WMSCapabilities — WMSCapabilities","text":"Object R6Class methods interfacing OGC Web Map Service Get Capabilities document.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WMSCapabilities — WMSCapabilities","text":"Class used read WMSCapabilities document. use WMSClient recommended instead benefit full set capabilities associated WMS server.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WMSCapabilities — WMSCapabilities","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WMSCapabilities — WMSCapabilities","text":"ows4R::OGCAbstractObject -> ows4R::OWSCapabilities -> WMSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WMSCapabilities — WMSCapabilities","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSCapabilities$getClient() ows4R::OWSCapabilities$getOWSVersion() ows4R::OWSCapabilities$getOperationsMetadata() ows4R::OWSCapabilities$getRequest() ows4R::OWSCapabilities$getService() ows4R::OWSCapabilities$getServiceIdentification() ows4R::OWSCapabilities$getServiceProvider() ows4R::OWSCapabilities$getServiceVersion() ows4R::OWSCapabilities$getUrl() ows4R::OWSCapabilities$setClient()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WMSCapabilities — WMSCapabilities","text":"WMSCapabilities$new() WMSCapabilities$getRequests() WMSCapabilities$getRequestNames() WMSCapabilities$getLayers() WMSCapabilities$findLayerByName() WMSCapabilities$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WMSCapabilities — WMSCapabilities","text":"Initializes WMSCapabilities object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSCapabilities — WMSCapabilities","text":"","code":"WMSCapabilities$new(url, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSCapabilities — WMSCapabilities","text":"url url version version logger logger type NULL, \"INFO\" \"DEBUG\" ... parameter pass OWSGetCapabilities service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"method-getrequests-","dir":"Reference","previous_headings":"","what":"Method getRequests()","title":"WMSCapabilities — WMSCapabilities","text":"List requests available. pretty TRUE, output object class data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSCapabilities — WMSCapabilities","text":"","code":"WMSCapabilities$getRequests(pretty = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSCapabilities — WMSCapabilities","text":"pretty pretty","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSCapabilities — WMSCapabilities","text":"list OWSRequest available, data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"method-getrequestnames-","dir":"Reference","previous_headings":"","what":"Method getRequestNames()","title":"WMSCapabilities — WMSCapabilities","text":"List names requests available.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSCapabilities — WMSCapabilities","text":"","code":"WMSCapabilities$getRequestNames()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSCapabilities — WMSCapabilities","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"method-getlayers-","dir":"Reference","previous_headings":"","what":"Method getLayers()","title":"WMSCapabilities — WMSCapabilities","text":"List layers available. pretty TRUE, output object class data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSCapabilities — WMSCapabilities","text":"","code":"WMSCapabilities$getLayers(pretty = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSCapabilities — WMSCapabilities","text":"pretty pretty","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSCapabilities — WMSCapabilities","text":"list WMSLayer available, data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"method-findlayerbyname-","dir":"Reference","previous_headings":"","what":"Method findLayerByName()","title":"WMSCapabilities — WMSCapabilities","text":"Finds layer name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSCapabilities — WMSCapabilities","text":"","code":"WMSCapabilities$findLayerByName(expr, exact = TRUE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSCapabilities — WMSCapabilities","text":"expr expr exact exact matching? Default TRUE","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WMSCapabilities — WMSCapabilities","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSCapabilities — WMSCapabilities","text":"","code":"WMSCapabilities$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSCapabilities.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSCapabilities — WMSCapabilities","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":null,"dir":"Reference","previous_headings":"","what":"WMSClient — WMSClient","title":"WMSClient — WMSClient","text":"WMSClient WMSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WMSClient — WMSClient","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WMSClient — WMSClient","text":"Object R6Class methods interfacing OGC Web Map Service.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WMSClient — WMSClient","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WMSClient — WMSClient","text":"ows4R::OGCAbstractObject -> ows4R::OWSClient -> WMSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WMSClient — WMSClient","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSClient$getCASUrl() ows4R::OWSClient$getConfig() ows4R::OWSClient$getHeaders() ows4R::OWSClient$getPwd() ows4R::OWSClient$getToken() ows4R::OWSClient$getUrl() ows4R::OWSClient$getUser() ows4R::OWSClient$getVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WMSClient — WMSClient","text":"WMSClient$new() WMSClient$getCapabilities() WMSClient$reloadCapabilities() WMSClient$getLayers() WMSClient$getMap() WMSClient$getFeatureInfo() WMSClient$getLegendGraphic() WMSClient$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WMSClient — WMSClient","text":"method used instantiate WMSClient url OGC service. Authentication supported using basic auth (using user/pwd arguments), bearer token (using token argument), custom (using headers argument). default, logger argument set NULL (logger). argument accepts two possible values: INFO: print ows4R logs, DEBUG: print verbose logs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$new( url, serviceVersion = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), cas_url = NULL, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSClient — WMSClient","text":"url url serviceVersion WFS service version user user pwd password token token headers headers config config cas_url Central Authentication Service (CAS) URL logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-getcapabilities-","dir":"Reference","previous_headings":"","what":"Method getCapabilities()","title":"WMSClient — WMSClient","text":"Get WMS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSClient — WMSClient","text":"object class WMSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-reloadcapabilities-","dir":"Reference","previous_headings":"","what":"Method reloadCapabilities()","title":"WMSClient — WMSClient","text":"Reloads WFS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$reloadCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-getlayers-","dir":"Reference","previous_headings":"","what":"Method getLayers()","title":"WMSClient — WMSClient","text":"List layers available. pretty TRUE, output object class data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$getLayers(pretty = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSClient — WMSClient","text":"pretty pretty","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSClient — WMSClient","text":"list WMSLayer available, data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-getmap-","dir":"Reference","previous_headings":"","what":"Method getMap()","title":"WMSClient — WMSClient","text":"Get map. YET IMPLEMENTED","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$getMap()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-getfeatureinfo-","dir":"Reference","previous_headings":"","what":"Method getFeatureInfo()","title":"WMSClient — WMSClient","text":"Get feature info","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$getFeatureInfo( layer, srs = NULL, styles = NULL, feature_count = 1, x, y, width, height, bbox, info_format = \"application/vnd.ogc.gml\", ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSClient — WMSClient","text":"layer layer name srs srs styles styles feature_count feature count. Default 1 x x y y width width height height bbox bbox info_format info format. Default \"application/vnd.ogc.gml\" ... parameter pass WMSGetFeatureInfo request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSClient — WMSClient","text":"object class sf given feature(s)","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-getlegendgraphic-","dir":"Reference","previous_headings":"","what":"Method getLegendGraphic()","title":"WMSClient — WMSClient","text":"Get legend graphic. YET IMPLEMENTED","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$getLegendGraphic()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WMSClient — WMSClient","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSClient — WMSClient","text":"","code":"WMSClient$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSClient — WMSClient","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSClient.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"WMSClient — WMSClient","text":"","code":"# \\dontrun{ #example based on a WMS endpoint responding at http://localhost:8080/geoserver/wms wms <- WMSClient$new(\"http://localhost:8080/geoserver/wms\", serviceVersion = \"1.1.1\") #> Error in curl::curl_fetch_memory(url, handle = handle): Failed to connect to localhost port 8080 after 0 ms: Connection refused #get capabilities caps <- wms$getCapabilities() #> Error in eval(expr, envir, enclos): object 'wms' not found #get feature info #Advanced examples at https://github.com/eblondel/ows4R/wiki#wms # }"},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":null,"dir":"Reference","previous_headings":"","what":"WMSGetFeatureInfo — WMSGetFeatureInfo","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"WMSGetFeatureInfo WMSGetFeatureInfo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"Object R6Class modelling WMS GetFeatureInfo request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"Class used internally ows4R trigger WMS GetFeatureInfo request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> WMSGetFeatureInfo","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"WMSGetFeatureInfo$new() WMSGetFeatureInfo$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"Initializes WMSGetFeatureInfo service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"","code":"WMSGetFeatureInfo$new( capabilities, op, url, version, layers, srs, styles, feature_count = 1, x, y, width, height, bbox, info_format = \"text/xml\", user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"capabilities object class WMSCapabilities op object class OWSOperation retrieved capabilities url url version version layers layers srs srs styles styles feature_count feature count x x y y width width height height bbox bbox info_format info format user user pwd pwd token token headers headers config config logger logger ... parameter pass service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"","code":"WMSGetFeatureInfo$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSGetFeatureInfo.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSGetFeatureInfo — WMSGetFeatureInfo","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":null,"dir":"Reference","previous_headings":"","what":"WMSLayer — WMSLayer","title":"WMSLayer — WMSLayer","text":"WMSLayer WMSLayer","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WMSLayer — WMSLayer","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WMSLayer — WMSLayer","text":"Object R6Class modelling WMS layer","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WMSLayer — WMSLayer","text":"Abstract class used ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WMSLayer — WMSLayer","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WMSLayer — WMSLayer","text":"ows4R::OGCAbstractObject -> WMSLayer","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WMSLayer — WMSLayer","text":"description description features features","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WMSLayer — WMSLayer","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WMSLayer — WMSLayer","text":"WMSLayer$new() WMSLayer$getName() WMSLayer$getTitle() WMSLayer$getAbstract() WMSLayer$getKeywords() WMSLayer$getDefaultCRS() WMSLayer$getBoundingBox() WMSLayer$getBoundingBoxSRS() WMSLayer$getBoundingBoxCRS() WMSLayer$getStyles() WMSLayer$getStylenames() WMSLayer$getDimensions() WMSLayer$getTimeDimension() WMSLayer$getElevationDimension() WMSLayer$getFeatureInfo() WMSLayer$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WMSLayer — WMSLayer","text":"Initializes object class WMSLayer","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$new(xmlObj, capabilities, version, logger = NULL)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSLayer — WMSLayer","text":"xmlObj object class XMLInternalNode-class initialize XML capabilities object class WMSCapabilities version service version logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getname-","dir":"Reference","previous_headings":"","what":"Method getName()","title":"WMSLayer — WMSLayer","text":"Get layer name","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getName()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-gettitle-","dir":"Reference","previous_headings":"","what":"Method getTitle()","title":"WMSLayer — WMSLayer","text":"Get layer title","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getTitle()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getabstract-","dir":"Reference","previous_headings":"","what":"Method getAbstract()","title":"WMSLayer — WMSLayer","text":"Get layer abstract","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getAbstract()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getkeywords-","dir":"Reference","previous_headings":"","what":"Method getKeywords()","title":"WMSLayer — WMSLayer","text":"Get layer keywords","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getKeywords()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getdefaultcrs-","dir":"Reference","previous_headings":"","what":"Method getDefaultCRS()","title":"WMSLayer — WMSLayer","text":"Get layer default CRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getDefaultCRS()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getboundingbox-","dir":"Reference","previous_headings":"","what":"Method getBoundingBox()","title":"WMSLayer — WMSLayer","text":"Get layer bounding box","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getBoundingBox()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class matrix","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getboundingboxsrs-","dir":"Reference","previous_headings":"","what":"Method getBoundingBoxSRS()","title":"WMSLayer — WMSLayer","text":"Get layer bounding box SRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getBoundingBoxSRS()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getboundingboxcrs-","dir":"Reference","previous_headings":"","what":"Method getBoundingBoxCRS()","title":"WMSLayer — WMSLayer","text":"Get layer bounding box CRS","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getBoundingBoxCRS()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getstyles-","dir":"Reference","previous_headings":"","what":"Method getStyles()","title":"WMSLayer — WMSLayer","text":"Get layer styles","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getStyles()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-8","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class list","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getstylenames-","dir":"Reference","previous_headings":"","what":"Method getStylenames()","title":"WMSLayer — WMSLayer","text":"Get layer style names","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getStylenames()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-9","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"list object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getdimensions-","dir":"Reference","previous_headings":"","what":"Method getDimensions()","title":"WMSLayer — WMSLayer","text":"Get layer dimensions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-11","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getDimensions(time_format = \"character\")"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSLayer — WMSLayer","text":"time_format time format. Default character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-10","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"list including default value listed possible values","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-gettimedimension-","dir":"Reference","previous_headings":"","what":"Method getTimeDimension()","title":"WMSLayer — WMSLayer","text":"Get layer TIME dimensions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-12","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getTimeDimension(time_format = \"character\")"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSLayer — WMSLayer","text":"time_format time format. Default character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-11","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"list including default value listed possible values","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getelevationdimension-","dir":"Reference","previous_headings":"","what":"Method getElevationDimension()","title":"WMSLayer — WMSLayer","text":"Get layer ELEVATION dimensions","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-13","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getElevationDimension()"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-12","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"list including default value listed possible values","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-getfeatureinfo-","dir":"Reference","previous_headings":"","what":"Method getFeatureInfo()","title":"WMSLayer — WMSLayer","text":"Get feature info","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-14","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$getFeatureInfo( srs = NULL, styles = NULL, feature_count = 1, x, y, width, height, bbox, info_format = \"text/xml\", ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSLayer — WMSLayer","text":"srs srs styles styles feature_count feature count. Default 1 x x y y width width height height bbox bbox info_format info format. Default \"text/xml\" ... parameter pass WMSGetFeatureInfo request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"returns-13","dir":"Reference","previous_headings":"","what":"Returns","title":"WMSLayer — WMSLayer","text":"object class sf given feature(s)","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WMSLayer — WMSLayer","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"usage-15","dir":"Reference","previous_headings":"","what":"Usage","title":"WMSLayer — WMSLayer","text":"","code":"WMSLayer$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WMSLayer.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"WMSLayer — WMSLayer","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSBoundingBoxData — WPSBoundingBoxData","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"WPSBoundingBoxData WPSBoundingBoxData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"Object R6Class modelling OGC WPS BoundingBox data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"ows4R::OGCAbstractObject -> ows4R::OWSBoundingBox -> WPSBoundingBoxData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSBoundingBox$decode() ows4R::OWSBoundingBox$getBBOX()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"WPSBoundingBoxData$new() WPSBoundingBoxData$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"Initializes object class WPSBoundingBoxData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"","code":"WPSBoundingBoxData$new( xml = NULL, owsVersion, serviceVersion = \"1.0.0\", logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"xml object class XMLInternalNode-class initialize XML owsVersion OWS version serviceVersion WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"","code":"WPSBoundingBoxData$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSBoundingBoxData.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSBoundingBoxData — WPSBoundingBoxData","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSCapabilities — WPSCapabilities","title":"WPSCapabilities — WPSCapabilities","text":"WPSCapabilities WPSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSCapabilities — WPSCapabilities","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSCapabilities — WPSCapabilities","text":"Object R6Class methods interfacing OGC Web Processing Service (WPS) Get Capabilities document.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSCapabilities — WPSCapabilities","text":"Class used read WPSCapabilities document. use WPSClient recommended instead benefit full set capabilities associated WPS server.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSCapabilities — WPSCapabilities","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSCapabilities — WPSCapabilities","text":"ows4R::OGCAbstractObject -> ows4R::OWSCapabilities -> WPSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSCapabilities — WPSCapabilities","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSCapabilities$getClient() ows4R::OWSCapabilities$getOWSVersion() ows4R::OWSCapabilities$getOperationsMetadata() ows4R::OWSCapabilities$getRequest() ows4R::OWSCapabilities$getService() ows4R::OWSCapabilities$getServiceIdentification() ows4R::OWSCapabilities$getServiceProvider() ows4R::OWSCapabilities$getServiceVersion() ows4R::OWSCapabilities$getUrl() ows4R::OWSCapabilities$setClient()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSCapabilities — WPSCapabilities","text":"WPSCapabilities$new() WPSCapabilities$getProcesses() WPSCapabilities$describeProcess() WPSCapabilities$execute() WPSCapabilities$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSCapabilities — WPSCapabilities","text":"Initializes WPSCapabilities object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSCapabilities — WPSCapabilities","text":"","code":"WPSCapabilities$new(url, version, client = NULL, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSCapabilities — WPSCapabilities","text":"url url version version client object class WPSClient logger logger type NULL, \"INFO\" \"DEBUG\" ... parameter pass OWSGetCapabilities service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"method-getprocesses-","dir":"Reference","previous_headings":"","what":"Method getProcesses()","title":"WPSCapabilities — WPSCapabilities","text":"Get list processes offered service capabilities. pretty allows control type output. TRUE, data.frame returned. prettified output, also possible get 'full' description process setting full = TRUE case WPS client request process description (information process) process listed capabilities.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSCapabilities — WPSCapabilities","text":"","code":"WPSCapabilities$getProcesses(pretty = FALSE, full = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSCapabilities — WPSCapabilities","text":"pretty pretty full full","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSCapabilities — WPSCapabilities","text":"list WPSProcessDescription data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"method-describeprocess-","dir":"Reference","previous_headings":"","what":"Method describeProcess()","title":"WPSCapabilities — WPSCapabilities","text":"Get description process, given identifier, returning object class WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSCapabilities — WPSCapabilities","text":"","code":"WPSCapabilities$describeProcess(identifier)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSCapabilities — WPSCapabilities","text":"identifier process identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSCapabilities — WPSCapabilities","text":"object class WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"method-execute-","dir":"Reference","previous_headings":"","what":"Method execute()","title":"WPSCapabilities — WPSCapabilities","text":"Execute process, given identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSCapabilities — WPSCapabilities","text":"","code":"WPSCapabilities$execute( identifier, dataInputs = list(), responseForm = NULL, storeExecuteResponse = FALSE, lineage = NULL, status = NULL, update = FALSE, updateInterval = 1 )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSCapabilities — WPSCapabilities","text":"identifier process identifier dataInputs named list data inputs, objects class WPSLiteralData, WPSComplexData WPSBoundingBoxData responseForm response form, object class WPSResponseDocument storeExecuteResponse store execute response? object class logical. FALSE default lineage lineage, object class logical status status, object class logical update update, object class logical. asynchronous requests updateInterval update interval, object class integer. asynchronous requests","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSCapabilities — WPSCapabilities","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSCapabilities — WPSCapabilities","text":"","code":"WPSCapabilities$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSCapabilities.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSCapabilities — WPSCapabilities","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSClient — WPSClient","title":"WPSClient — WPSClient","text":"WPSClient WPSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSClient — WPSClient","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSClient — WPSClient","text":"Object R6Class methods interfacing OGC Web Processing Service.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSClient — WPSClient","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSClient — WPSClient","text":"ows4R::OGCAbstractObject -> ows4R::OWSClient -> WPSClient","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSClient — WPSClient","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSClient$getCASUrl() ows4R::OWSClient$getConfig() ows4R::OWSClient$getHeaders() ows4R::OWSClient$getPwd() ows4R::OWSClient$getToken() ows4R::OWSClient$getUrl() ows4R::OWSClient$getUser() ows4R::OWSClient$getVersion()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSClient — WPSClient","text":"WPSClient$new() WPSClient$getCapabilities() WPSClient$reloadCapabilities() WPSClient$getProcesses() WPSClient$describeProcess() WPSClient$execute() WPSClient$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSClient — WPSClient","text":"method used instantiate WPSClient url OGC service. Authentication supported using basic auth (using user/pwd arguments), bearer token (using token argument), custom (using headers argument). default, logger argument set NULL (logger). argument accepts two possible values: INFO: print ows4R logs, DEBUG: print verbose logs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSClient — WPSClient","text":"","code":"WPSClient$new( url, serviceVersion = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), cas_url = NULL, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSClient — WPSClient","text":"url url serviceVersion WFS service version user user pwd password token token headers headers config config cas_url Central Authentication Service (CAS) URL logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"method-getcapabilities-","dir":"Reference","previous_headings":"","what":"Method getCapabilities()","title":"WPSClient — WPSClient","text":"Get WPS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSClient — WPSClient","text":"","code":"WPSClient$getCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSClient — WPSClient","text":"object class WPSCapabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"method-reloadcapabilities-","dir":"Reference","previous_headings":"","what":"Method reloadCapabilities()","title":"WPSClient — WPSClient","text":"Reloads WPS capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSClient — WPSClient","text":"","code":"WPSClient$reloadCapabilities()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"method-getprocesses-","dir":"Reference","previous_headings":"","what":"Method getProcesses()","title":"WPSClient — WPSClient","text":"Get list processes offered service capabilities. pretty allows control type output. TRUE, data.frame returned. prettified output, also possible get 'full' description process setting full = TRUE case WPS client request process description (information process) process listed capabilities.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSClient — WPSClient","text":"","code":"WPSClient$getProcesses(pretty = FALSE, full = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSClient — WPSClient","text":"pretty pretty full full","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSClient — WPSClient","text":"list WPSProcessDescription data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"method-describeprocess-","dir":"Reference","previous_headings":"","what":"Method describeProcess()","title":"WPSClient — WPSClient","text":"Get description process, given identifier, returning object class WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSClient — WPSClient","text":"","code":"WPSClient$describeProcess(identifier)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSClient — WPSClient","text":"identifier process identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSClient — WPSClient","text":"object class WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"method-execute-","dir":"Reference","previous_headings":"","what":"Method execute()","title":"WPSClient — WPSClient","text":"Execute process, given identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSClient — WPSClient","text":"","code":"WPSClient$execute( identifier, dataInputs = list(), responseForm = NULL, storeExecuteResponse = FALSE, lineage = NULL, status = NULL, update = FALSE, updateInterval = 1 )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSClient — WPSClient","text":"identifier process identifier dataInputs named list data inputs, objects class WPSLiteralData, WPSComplexData WPSBoundingBoxData responseForm response form, object class WPSResponseDocument storeExecuteResponse store execute response? object class logical. FALSE default lineage lineage, object class logical status status, object class logical update update, object class logical. asynchronous requests updateInterval update interval, object class integer. asynchronous requests","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSClient — WPSClient","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSClient — WPSClient","text":"","code":"WPSClient$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"arguments-4","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSClient — WPSClient","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSClient.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"WPSClient — WPSClient","text":"","code":"# \\dontrun{ #example based on a WPS endpoint responding at http://localhost:8080/geoserver/wps wps <- WPSClient$new(\"http://localhost:8080/geoserver/wps\", serviceVersion = \"1.0.0\") #> Error in curl::curl_fetch_memory(url, handle = handle): Failed to connect to localhost port 8080 after 0 ms: Connection refused #get capabilities caps <- wps$getCapabilities() #> Error in eval(expr, envir, enclos): object 'wps' not found # }"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSComplexData — WPSComplexData","title":"WPSComplexData — WPSComplexData","text":"WPSComplexData WPSComplexData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSComplexData — WPSComplexData","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSComplexData — WPSComplexData","text":"Object R6Class modelling WPS Complex Data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSComplexData — WPSComplexData","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSComplexData — WPSComplexData","text":"ows4R::OGCAbstractObject -> WPSComplexData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSComplexData — WPSComplexData","text":"value value","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSComplexData — WPSComplexData","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSComplexData — WPSComplexData","text":"WPSComplexData$new() WPSComplexData$decode() WPSComplexData$checkValidity() WPSComplexData$getFeatures() WPSComplexData$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSComplexData — WPSComplexData","text":"Initializes object class WPSComplexData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexData — WPSComplexData","text":"","code":"WPSComplexData$new( xml = NULL, value = NULL, schema = NULL, mimeType = NULL, serviceVersion = \"1.0.0\", cdata = TRUE )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexData — WPSComplexData","text":"xml object class XMLInternalNode-class initialize XML value value schema schema mimeType mime type serviceVersion WPS service version cdata whether value wrapped XML CDATA. Default TRUE","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WPSComplexData — WPSComplexData","text":"Decodes object class WPSComplexData XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexData — WPSComplexData","text":"","code":"WPSComplexData$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexData — WPSComplexData","text":"xml object class XMLInternalNode-class initialize XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"method-checkvalidity-","dir":"Reference","previous_headings":"","what":"Method checkValidity()","title":"WPSComplexData — WPSComplexData","text":"Check object parameter description inherited WPS process description, object class WPSComplexInputDescription. valid, function raise error.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexData — WPSComplexData","text":"","code":"WPSComplexData$checkValidity(parameterDescription)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexData — WPSComplexData","text":"parameterDescription object class WPSComplexInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSComplexData — WPSComplexData","text":"error valid","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"method-getfeatures-","dir":"Reference","previous_headings":"","what":"Method getFeatures()","title":"WPSComplexData — WPSComplexData","text":"Get features","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexData — WPSComplexData","text":"","code":"WPSComplexData$getFeatures()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSComplexData — WPSComplexData","text":"object class sf","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSComplexData — WPSComplexData","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexData — WPSComplexData","text":"","code":"WPSComplexData$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexData.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexData — WPSComplexData","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSComplexInputDescription — WPSComplexInputDescription","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"WPSComplexInputDescription WPSComplexInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"Object R6Class modelling WPS process complex input description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"ows4R::OGCAbstractObject -> ows4R::WPSParameter -> ows4R::WPSDescriptionParameter -> ows4R::WPSInputDescription -> WPSComplexInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::WPSParameter$getAbstract() ows4R::WPSParameter$getIdentifier() ows4R::WPSParameter$getTitle() ows4R::WPSDescriptionParameter$getDataType() ows4R::WPSDescriptionParameter$getFormats() ows4R::WPSInputDescription$asDataFrame() ows4R::WPSInputDescription$getMaxOccurs() ows4R::WPSInputDescription$getMinOccurs()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"WPSComplexInputDescription$new() WPSComplexInputDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"Initializes WPSComplexInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"","code":"WPSComplexInputDescription$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"xml object class XMLInternalNode-class XML version WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"","code":"WPSComplexInputDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexInputDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexInputDescription — WPSComplexInputDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSComplexOutputDescription — WPSComplexOutputDescription","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"WPSComplexOutputDescription WPSComplexOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"Object R6Class modelling WPS process complex input description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"ows4R::OGCAbstractObject -> ows4R::WPSParameter -> ows4R::WPSDescriptionParameter -> ows4R::WPSOutputDescription -> WPSComplexOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::WPSParameter$getAbstract() ows4R::WPSParameter$getIdentifier() ows4R::WPSParameter$getTitle() ows4R::WPSDescriptionParameter$getDataType() ows4R::WPSDescriptionParameter$getFormats()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"WPSComplexOutputDescription$new() WPSComplexOutputDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"Initializes WPSComplexOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"","code":"WPSComplexOutputDescription$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"xml object class XMLInternalNode-class XML version WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"","code":"WPSComplexOutputDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSComplexOutputDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSComplexOutputDescription — WPSComplexOutputDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSDescribeProcess — WPSDescribeProcess","title":"WPSDescribeProcess — WPSDescribeProcess","text":"WPSDescribeProcess WPSDescribeProcess","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSDescribeProcess — WPSDescribeProcess","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSDescribeProcess — WPSDescribeProcess","text":"Object R6Class modelling WPS DescribeProcess request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSDescribeProcess — WPSDescribeProcess","text":"Class used internally ows4R trigger WPS DescribeProcess request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSDescribeProcess — WPSDescribeProcess","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSDescribeProcess — WPSDescribeProcess","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> WPSDescribeProcess","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSDescribeProcess — WPSDescribeProcess","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSDescribeProcess — WPSDescribeProcess","text":"WPSDescribeProcess$new() WPSDescribeProcess$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSDescribeProcess — WPSDescribeProcess","text":"Initializes WPSDescribeProcess service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSDescribeProcess — WPSDescribeProcess","text":"","code":"WPSDescribeProcess$new( capabilities, op, url, serviceVersion, identifier, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSDescribeProcess — WPSDescribeProcess","text":"capabilities object class WPSCapabilities op object class OWSOperation url url serviceVersion WPS service version identifier process identifier user user pwd password token token headers headers config config logger logger ... parameter pass request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSDescribeProcess — WPSDescribeProcess","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSDescribeProcess — WPSDescribeProcess","text":"","code":"WPSDescribeProcess$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescribeProcess.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSDescribeProcess — WPSDescribeProcess","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSDescriptionParameter — WPSDescriptionParameter","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"WPSDescriptionParameter WPSDescriptionParameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"Object R6Class modelling WPS process input description parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"ows4R::OGCAbstractObject -> ows4R::WPSParameter -> WPSDescriptionParameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::WPSParameter$getAbstract() ows4R::WPSParameter$getIdentifier() ows4R::WPSParameter$getTitle()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"WPSDescriptionParameter$new() WPSDescriptionParameter$getDataType() WPSDescriptionParameter$getFormats() WPSDescriptionParameter$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"Initializes WPSDescriptionParameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"","code":"WPSDescriptionParameter$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"xml object class XMLInternalNode-class XML version WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"method-getdatatype-","dir":"Reference","previous_headings":"","what":"Method getDataType()","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"Get data type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"","code":"WPSDescriptionParameter$getDataType()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"method-getformats-","dir":"Reference","previous_headings":"","what":"Method getFormats()","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"get formats","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"","code":"WPSDescriptionParameter$getFormats()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"formats","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"","code":"WPSDescriptionParameter$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSDescriptionParameter.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSDescriptionParameter — WPSDescriptionParameter","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSException — WPSException","title":"WPSException — WPSException","text":"WPSException WPSException","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSException — WPSException","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSException — WPSException","text":"Object R6Class modelling WPS Exception","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSException — WPSException","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSException — WPSException","text":"ows4R::OGCAbstractObject -> WPSException","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSException — WPSException","text":"value value percentCompleted percent completion","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSException — WPSException","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSException — WPSException","text":"WPSException$new() WPSException$decode() WPSException$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSException — WPSException","text":"Initializes WPSException","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSException — WPSException","text":"","code":"WPSException$new(xml = NULL, serviceVersion = \"1.0.0\")"},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSException — WPSException","text":"xml object class XMLInternalNode-class XML serviceVersion service version. Default \"1.0.0\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WPSException — WPSException","text":"Decodes object class WPSException XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSException — WPSException","text":"","code":"WPSException$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSException — WPSException","text":"xml object class XMLInternalNode-class XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSException — WPSException","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSException — WPSException","text":"","code":"WPSException$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSException.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSException — WPSException","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSExecute — WPSExecute","title":"WPSExecute — WPSExecute","text":"WPSExecute WPSExecute","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSExecute — WPSExecute","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSExecute — WPSExecute","text":"Object R6Class modelling WPS Execute request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSExecute — WPSExecute","text":"Class used internally ows4R trigger WPS Execute request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSExecute — WPSExecute","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSExecute — WPSExecute","text":"ows4R::OGCAbstractObject -> ows4R::OWSHttpRequest -> WPSExecute","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSExecute — WPSExecute","text":"Identifier process identifier DataInputs list WPSInput ResponseForm response form","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSExecute — WPSExecute","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::OWSHttpRequest$execute() ows4R::OWSHttpRequest$getCapabilities() ows4R::OWSHttpRequest$getException() ows4R::OWSHttpRequest$getRequest() ows4R::OWSHttpRequest$getRequestHeaders() ows4R::OWSHttpRequest$getResponse() ows4R::OWSHttpRequest$getResult() ows4R::OWSHttpRequest$getStatus() ows4R::OWSHttpRequest$hasException() ows4R::OWSHttpRequest$setResult()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSExecute — WPSExecute","text":"WPSExecute$new() WPSExecute$getProcessDescription() WPSExecute$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSExecute — WPSExecute","text":"Initializes WPSExecute service request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecute — WPSExecute","text":"","code":"WPSExecute$new( capabilities, op, url, serviceVersion, identifier, dataInputs = list(), responseForm = NULL, storeExecuteResponse = FALSE, lineage = NULL, status = NULL, user = NULL, pwd = NULL, token = NULL, headers = c(), config = httr::config(), logger = NULL, ... )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSExecute — WPSExecute","text":"capabilities object class WPSCapabilities op object class OWSOperation url url serviceVersion WPS service version identifier process identifier dataInputs named list data inputs, objects class WPSLiteralData, WPSComplexData WPSBoundingBoxData responseForm response form, object class WPSResponseDocument storeExecuteResponse store execute response? object class logical. FALSE default lineage lineage, object class logical status status, object class logical user user pwd password token token headers headers config config logger logger ... parameter pass request","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"method-getprocessdescription-","dir":"Reference","previous_headings":"","what":"Method getProcessDescription()","title":"WPSExecute — WPSExecute","text":"Get process description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecute — WPSExecute","text":"","code":"WPSExecute$getProcessDescription()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSExecute — WPSExecute","text":"object class WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSExecute — WPSExecute","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecute — WPSExecute","text":"","code":"WPSExecute$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecute.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSExecute — WPSExecute","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSExecuteResponse — WPSExecuteResponse","title":"WPSExecuteResponse — WPSExecuteResponse","text":"WPSExecuteResponse WPSExecuteResponse","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSExecuteResponse — WPSExecuteResponse","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Object R6Class modelling WPS Execute response","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSExecuteResponse — WPSExecuteResponse","text":"ows4R::OGCAbstractObject -> WPSExecuteResponse","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSExecuteResponse — WPSExecuteResponse","text":"process process status status statusLocation status location statusHistory status history processOutputs process outputs exception exception","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSExecuteResponse — WPSExecuteResponse","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSExecuteResponse — WPSExecuteResponse","text":"WPSExecuteResponse$new() WPSExecuteResponse$getProcess() WPSExecuteResponse$getStatus() WPSExecuteResponse$getStatusLocation() WPSExecuteResponse$getStatusHistory() WPSExecuteResponse$getProcessOutputs() WPSExecuteResponse$getException() WPSExecuteResponse$decode() WPSExecuteResponse$update() WPSExecuteResponse$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Initializes WPSExecuteResponse","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$new( xml, capabilities, processDescription = NULL, logger = NULL )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSExecuteResponse — WPSExecuteResponse","text":"xml object class XMLInternalNode-class XML capabilities object class WPSCapabilities processDescription process description logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-getprocess-","dir":"Reference","previous_headings":"","what":"Method getProcess()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Get process","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$getProcess()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSExecuteResponse — WPSExecuteResponse","text":"object class WPSProcess","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-getstatus-","dir":"Reference","previous_headings":"","what":"Method getStatus()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Get status","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$getStatus()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSExecuteResponse — WPSExecuteResponse","text":"object class WPSStatus","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-getstatuslocation-","dir":"Reference","previous_headings":"","what":"Method getStatusLocation()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Get status location","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$getStatusLocation()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSExecuteResponse — WPSExecuteResponse","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-getstatushistory-","dir":"Reference","previous_headings":"","what":"Method getStatusHistory()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Get status history","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$getStatusHistory()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSExecuteResponse — WPSExecuteResponse","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-getprocessoutputs-","dir":"Reference","previous_headings":"","what":"Method getProcessOutputs()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Get list process outputs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$getProcessOutputs()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSExecuteResponse — WPSExecuteResponse","text":"list outputs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-getexception-","dir":"Reference","previous_headings":"","what":"Method getException()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Get exception","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$getException()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSExecuteResponse — WPSExecuteResponse","text":"object class WPSException","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Decodes object class WPSExecuteResponse XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$decode(xml, capabilities, processDescription, logger)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSExecuteResponse — WPSExecuteResponse","text":"xml object class XMLInternalNode-class XML capabilities object class WPSCapabilities processDescription process description logger logger","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-update-","dir":"Reference","previous_headings":"","what":"Method update()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"Updates status history","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$update(verbose = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSExecuteResponse — WPSExecuteResponse","text":"verbose verbose. Default FALSE","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSExecuteResponse — WPSExecuteResponse","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSExecuteResponse — WPSExecuteResponse","text":"","code":"WPSExecuteResponse$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSExecuteResponse.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSExecuteResponse — WPSExecuteResponse","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSFormat — WPSFormat","title":"WPSFormat — WPSFormat","text":"WPSFormat WPSFormat","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSFormat — WPSFormat","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSFormat — WPSFormat","text":"Object R6Class modelling WPS process input description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSFormat — WPSFormat","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSFormat — WPSFormat","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSFormat — WPSFormat","text":"ows4R::OGCAbstractObject -> WPSFormat","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSFormat — WPSFormat","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSFormat — WPSFormat","text":"WPSFormat$new() WPSFormat$getMimeType() WPSFormat$getEncoding() WPSFormat$getSchema() WPSFormat$setIsDefault() WPSFormat$isDefault() WPSFormat$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSFormat — WPSFormat","text":"Initializes object class WPSFormat","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSFormat — WPSFormat","text":"","code":"WPSFormat$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSFormat — WPSFormat","text":"xml object class XMLInternalNode-class initialize XML version WPS service version logger logger ... additional parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"method-getmimetype-","dir":"Reference","previous_headings":"","what":"Method getMimeType()","title":"WPSFormat — WPSFormat","text":"Get mime type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSFormat — WPSFormat","text":"","code":"WPSFormat$getMimeType()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSFormat — WPSFormat","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"method-getencoding-","dir":"Reference","previous_headings":"","what":"Method getEncoding()","title":"WPSFormat — WPSFormat","text":"Get encoding","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSFormat — WPSFormat","text":"","code":"WPSFormat$getEncoding()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSFormat — WPSFormat","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"method-getschema-","dir":"Reference","previous_headings":"","what":"Method getSchema()","title":"WPSFormat — WPSFormat","text":"Get schema","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSFormat — WPSFormat","text":"","code":"WPSFormat$getSchema()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSFormat — WPSFormat","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"method-setisdefault-","dir":"Reference","previous_headings":"","what":"Method setIsDefault()","title":"WPSFormat — WPSFormat","text":"set default","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSFormat — WPSFormat","text":"","code":"WPSFormat$setIsDefault(default)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSFormat — WPSFormat","text":"default object class logical","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"method-isdefault-","dir":"Reference","previous_headings":"","what":"Method isDefault()","title":"WPSFormat — WPSFormat","text":"default","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSFormat — WPSFormat","text":"","code":"WPSFormat$isDefault()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSFormat — WPSFormat","text":"TRUE default, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSFormat — WPSFormat","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSFormat — WPSFormat","text":"","code":"WPSFormat$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSFormat.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSFormat — WPSFormat","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSInput — WPSInput","title":"WPSInput — WPSInput","text":"WPSInput WPSInput","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSInput — WPSInput","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSInput — WPSInput","text":"Object R6Class modelling WPS Input","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSInput — WPSInput","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSInput — WPSInput","text":"ows4R::OGCAbstractObject -> WPSInput","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSInput — WPSInput","text":"Identifier identifier Data data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSInput — WPSInput","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSInput — WPSInput","text":"WPSInput$new() WPSInput$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSInput — WPSInput","text":"Initializes WPSInput","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSInput — WPSInput","text":"","code":"WPSInput$new(xml = NULL, identifier, data, serviceVersion = \"1.0.0\")"},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSInput — WPSInput","text":"xml object class XMLInternalNode-class XML identifier identifier data data serviceVersion service version. Default \"1.0.0\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSInput — WPSInput","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSInput — WPSInput","text":"","code":"WPSInput$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSInput.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSInput — WPSInput","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSInputDescription — WPSInputDescription","title":"WPSInputDescription — WPSInputDescription","text":"WPSInputDescription WPSInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSInputDescription — WPSInputDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSInputDescription — WPSInputDescription","text":"Object R6Class modelling WPS process input description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSInputDescription — WPSInputDescription","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSInputDescription — WPSInputDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSInputDescription — WPSInputDescription","text":"ows4R::OGCAbstractObject -> ows4R::WPSParameter -> ows4R::WPSDescriptionParameter -> WPSInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSInputDescription — WPSInputDescription","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::WPSParameter$getAbstract() ows4R::WPSParameter$getIdentifier() ows4R::WPSParameter$getTitle() ows4R::WPSDescriptionParameter$getDataType() ows4R::WPSDescriptionParameter$getFormats()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSInputDescription — WPSInputDescription","text":"WPSInputDescription$new() WPSInputDescription$getMinOccurs() WPSInputDescription$getMaxOccurs() WPSInputDescription$asDataFrame() WPSInputDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSInputDescription — WPSInputDescription","text":"Initializes WPSInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSInputDescription — WPSInputDescription","text":"","code":"WPSInputDescription$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSInputDescription — WPSInputDescription","text":"xml object class XMLInternalNode-class XML version WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"method-getminoccurs-","dir":"Reference","previous_headings":"","what":"Method getMinOccurs()","title":"WPSInputDescription — WPSInputDescription","text":"Get min occurs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSInputDescription — WPSInputDescription","text":"","code":"WPSInputDescription$getMinOccurs()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSInputDescription — WPSInputDescription","text":"min occurs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"method-getmaxoccurs-","dir":"Reference","previous_headings":"","what":"Method getMaxOccurs()","title":"WPSInputDescription — WPSInputDescription","text":"Get max occurs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSInputDescription — WPSInputDescription","text":"","code":"WPSInputDescription$getMaxOccurs()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSInputDescription — WPSInputDescription","text":"max occurs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"method-asdataframe-","dir":"Reference","previous_headings":"","what":"Method asDataFrame()","title":"WPSInputDescription — WPSInputDescription","text":"Get intput description data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSInputDescription — WPSInputDescription","text":"","code":"WPSInputDescription$asDataFrame()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSInputDescription — WPSInputDescription","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSInputDescription — WPSInputDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSInputDescription — WPSInputDescription","text":"","code":"WPSInputDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSInputDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSInputDescription — WPSInputDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSLiteralData — WPSLiteralData","title":"WPSLiteralData — WPSLiteralData","text":"WPSLiteralData WPSLiteralData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSLiteralData — WPSLiteralData","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSLiteralData — WPSLiteralData","text":"Object R6Class modelling WPS Literal Data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSLiteralData — WPSLiteralData","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSLiteralData — WPSLiteralData","text":"ows4R::OGCAbstractObject -> WPSLiteralData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSLiteralData — WPSLiteralData","text":"value value","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSLiteralData — WPSLiteralData","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSLiteralData — WPSLiteralData","text":"WPSLiteralData$new() WPSLiteralData$decode() WPSLiteralData$checkValidity() WPSLiteralData$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSLiteralData — WPSLiteralData","text":"Initializes object class WPSLiteralData","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralData — WPSLiteralData","text":"","code":"WPSLiteralData$new(xml = NULL, value = NULL, serviceVersion = \"1.0.0\")"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralData — WPSLiteralData","text":"xml object class XMLInternalNode-class initialize XML value value serviceVersion WPS service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WPSLiteralData — WPSLiteralData","text":"Decodes object class WPSLiteralData XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralData — WPSLiteralData","text":"","code":"WPSLiteralData$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralData — WPSLiteralData","text":"xml object class XMLInternalNode-class initialize XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"method-checkvalidity-","dir":"Reference","previous_headings":"","what":"Method checkValidity()","title":"WPSLiteralData — WPSLiteralData","text":"Check object parameter description inherited WPS process description, object class WPSLiteralInputDescription. valid, function raise error.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralData — WPSLiteralData","text":"","code":"WPSLiteralData$checkValidity(parameterDescription)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralData — WPSLiteralData","text":"parameterDescription object class WPSLiteralInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSLiteralData — WPSLiteralData","text":"error valid","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSLiteralData — WPSLiteralData","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralData — WPSLiteralData","text":"","code":"WPSLiteralData$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralData.html","id":"arguments-3","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralData — WPSLiteralData","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSLiteralInputDescription — WPSLiteralInputDescription","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"WPSLiteralInputDescription WPSLiteralInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"Object R6Class modelling WPS process input description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"ows4R::OGCAbstractObject -> ows4R::WPSParameter -> ows4R::WPSDescriptionParameter -> ows4R::WPSInputDescription -> WPSLiteralInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::WPSParameter$getAbstract() ows4R::WPSParameter$getIdentifier() ows4R::WPSParameter$getTitle() ows4R::WPSDescriptionParameter$getFormats() ows4R::WPSInputDescription$asDataFrame() ows4R::WPSInputDescription$getMaxOccurs() ows4R::WPSInputDescription$getMinOccurs()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"WPSLiteralInputDescription$new() WPSLiteralInputDescription$getDataType() WPSLiteralInputDescription$getDefaultValue() WPSLiteralInputDescription$getAllowedValues() WPSLiteralInputDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"Initializes WPSLiteralInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"","code":"WPSLiteralInputDescription$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"xml object class XMLInternalNode-class XML version WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"method-getdatatype-","dir":"Reference","previous_headings":"","what":"Method getDataType()","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"Get data type","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"","code":"WPSLiteralInputDescription$getDataType()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"data type, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"method-getdefaultvalue-","dir":"Reference","previous_headings":"","what":"Method getDefaultValue()","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"Get default value","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"","code":"WPSLiteralInputDescription$getDefaultValue()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"default value, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"method-getallowedvalues-","dir":"Reference","previous_headings":"","what":"Method getAllowedValues()","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"Get allowed values","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"","code":"WPSLiteralInputDescription$getAllowedValues()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"allowed values","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"","code":"WPSLiteralInputDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralInputDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralInputDescription — WPSLiteralInputDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"WPSLiteralOutputDescription WPSLiteralOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"Object R6Class modelling WPS process literal output description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"ows4R::OGCAbstractObject -> ows4R::WPSParameter -> ows4R::WPSDescriptionParameter -> ows4R::WPSOutputDescription -> WPSLiteralOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::WPSParameter$getAbstract() ows4R::WPSParameter$getIdentifier() ows4R::WPSParameter$getTitle() ows4R::WPSDescriptionParameter$getDataType() ows4R::WPSDescriptionParameter$getFormats()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"WPSLiteralOutputDescription$new() WPSLiteralOutputDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"Initializes WPSLiteralOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"","code":"WPSLiteralOutputDescription$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"xml object class XMLInternalNode-class XML version WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"","code":"WPSLiteralOutputDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSLiteralOutputDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSLiteralOutputDescription — WPSLiteralOutputDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSOutput — WPSOutput","title":"WPSOutput — WPSOutput","text":"WPSOutput WPSOutput","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSOutput — WPSOutput","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSOutput — WPSOutput","text":"Object R6Class modelling WPS Input","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSOutput — WPSOutput","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSOutput — WPSOutput","text":"ows4R::OGCAbstractObject -> WPSOutput","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSOutput — WPSOutput","text":"Identifier identifier Title tile Data data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSOutput — WPSOutput","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSOutput — WPSOutput","text":"WPSOutput$new() WPSOutput$decode() WPSOutput$getData() WPSOutput$getDataValue() WPSOutput$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSOutput — WPSOutput","text":"Initializes WPSOutput","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSOutput — WPSOutput","text":"","code":"WPSOutput$new( xml = NULL, identifier = NULL, title = NULL, data = NULL, dataType = NULL, serviceVersion = \"1.0.0\" )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSOutput — WPSOutput","text":"xml object class XMLInternalNode-class XML identifier identifier title title data data dataType data type serviceVersion WPS service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WPSOutput — WPSOutput","text":"Decodes object class WPSOutput XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSOutput — WPSOutput","text":"","code":"WPSOutput$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSOutput — WPSOutput","text":"xml object class XMLInternalNode-class XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"method-getdata-","dir":"Reference","previous_headings":"","what":"Method getData()","title":"WPSOutput — WPSOutput","text":"Get data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSOutput — WPSOutput","text":"","code":"WPSOutput$getData()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSOutput — WPSOutput","text":"data","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"method-getdatavalue-","dir":"Reference","previous_headings":"","what":"Method getDataValue()","title":"WPSOutput — WPSOutput","text":"Get data value","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSOutput — WPSOutput","text":"","code":"WPSOutput$getDataValue()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSOutput — WPSOutput","text":"data value","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSOutput — WPSOutput","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSOutput — WPSOutput","text":"","code":"WPSOutput$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutput.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSOutput — WPSOutput","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSOutputDescription — WPSOutputDescription","title":"WPSOutputDescription — WPSOutputDescription","text":"WPSOutputDescription WPSOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSOutputDescription — WPSOutputDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSOutputDescription — WPSOutputDescription","text":"Object R6Class modelling WPS process input description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSOutputDescription — WPSOutputDescription","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSOutputDescription — WPSOutputDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"super-classes","dir":"Reference","previous_headings":"","what":"Super classes","title":"WPSOutputDescription — WPSOutputDescription","text":"ows4R::OGCAbstractObject -> ows4R::WPSParameter -> ows4R::WPSDescriptionParameter -> WPSOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSOutputDescription — WPSOutputDescription","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print() ows4R::WPSParameter$getAbstract() ows4R::WPSParameter$getIdentifier() ows4R::WPSParameter$getTitle() ows4R::WPSDescriptionParameter$getDataType() ows4R::WPSDescriptionParameter$getFormats()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSOutputDescription — WPSOutputDescription","text":"WPSOutputDescription$new() WPSOutputDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSOutputDescription — WPSOutputDescription","text":"Initializes WPSOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSOutputDescription — WPSOutputDescription","text":"","code":"WPSOutputDescription$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSOutputDescription — WPSOutputDescription","text":"xml object class XMLInternalNode-class XML version WPS service version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSOutputDescription — WPSOutputDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSOutputDescription — WPSOutputDescription","text":"","code":"WPSOutputDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSOutputDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSOutputDescription — WPSOutputDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSParameter — WPSParameter","title":"WPSParameter — WPSParameter","text":"WPSParameter WPSParameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSParameter — WPSParameter","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSParameter — WPSParameter","text":"Object R6Class modelling WPS parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSParameter — WPSParameter","text":"Abstract class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSParameter — WPSParameter","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSParameter — WPSParameter","text":"ows4R::OGCAbstractObject -> WPSParameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSParameter — WPSParameter","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSParameter — WPSParameter","text":"WPSParameter$new() WPSParameter$getIdentifier() WPSParameter$getTitle() WPSParameter$getAbstract() WPSParameter$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSParameter — WPSParameter","text":"Initializes object class WPSParameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSParameter — WPSParameter","text":"","code":"WPSParameter$new(xml = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSParameter — WPSParameter","text":"xml object class XMLInternalNode-class initialize XML version WPS service version logger logger ... additional parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"method-getidentifier-","dir":"Reference","previous_headings":"","what":"Method getIdentifier()","title":"WPSParameter — WPSParameter","text":"Get identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSParameter — WPSParameter","text":"","code":"WPSParameter$getIdentifier()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSParameter — WPSParameter","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"method-gettitle-","dir":"Reference","previous_headings":"","what":"Method getTitle()","title":"WPSParameter — WPSParameter","text":"Get title","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSParameter — WPSParameter","text":"","code":"WPSParameter$getTitle()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSParameter — WPSParameter","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"method-getabstract-","dir":"Reference","previous_headings":"","what":"Method getAbstract()","title":"WPSParameter — WPSParameter","text":"Get abstract","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSParameter — WPSParameter","text":"","code":"WPSParameter$getAbstract()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSParameter — WPSParameter","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSParameter — WPSParameter","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSParameter — WPSParameter","text":"","code":"WPSParameter$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSParameter.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSParameter — WPSParameter","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSProcess — WPSProcess","title":"WPSProcess — WPSProcess","text":"WPSProcess WPSProcess","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSProcess — WPSProcess","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSProcess — WPSProcess","text":"Object R6Class modelling WPS process","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSProcess — WPSProcess","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSProcess — WPSProcess","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSProcess — WPSProcess","text":"ows4R::OGCAbstractObject -> WPSProcess","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSProcess — WPSProcess","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSProcess — WPSProcess","text":"WPSProcess$new() WPSProcess$getIdentifier() WPSProcess$getTitle() WPSProcess$getVersion() WPSProcess$getDescription() WPSProcess$execute() WPSProcess$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSProcess — WPSProcess","text":"Initializes WPSProcess","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcess — WPSProcess","text":"","code":"WPSProcess$new(xml, capabilities = NULL, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSProcess — WPSProcess","text":"xml object class XMLInternalNode-class XML capabilities object class WPSCapabilities version service version logger logger ... additional parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"method-getidentifier-","dir":"Reference","previous_headings":"","what":"Method getIdentifier()","title":"WPSProcess — WPSProcess","text":"Get identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcess — WPSProcess","text":"","code":"WPSProcess$getIdentifier()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcess — WPSProcess","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"method-gettitle-","dir":"Reference","previous_headings":"","what":"Method getTitle()","title":"WPSProcess — WPSProcess","text":"Get title","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcess — WPSProcess","text":"","code":"WPSProcess$getTitle()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcess — WPSProcess","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"method-getversion-","dir":"Reference","previous_headings":"","what":"Method getVersion()","title":"WPSProcess — WPSProcess","text":"Get version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcess — WPSProcess","text":"","code":"WPSProcess$getVersion()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcess — WPSProcess","text":"object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"method-getdescription-","dir":"Reference","previous_headings":"","what":"Method getDescription()","title":"WPSProcess — WPSProcess","text":"Get description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcess — WPSProcess","text":"","code":"WPSProcess$getDescription()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcess — WPSProcess","text":"object class WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"method-execute-","dir":"Reference","previous_headings":"","what":"Method execute()","title":"WPSProcess — WPSProcess","text":"Execute process","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcess — WPSProcess","text":"","code":"WPSProcess$execute( dataInputs = list(), responseForm = NULL, storeExecuteResponse = FALSE, lineage = NULL, status = NULL, update = FALSE, updateInterval = 1 )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSProcess — WPSProcess","text":"dataInputs named list data inputs, objects class WPSLiteralData, WPSComplexData WPSBoundingBoxData responseForm response form, object class WPSResponseDocument storeExecuteResponse store execute response? object class logical. FALSE default lineage lineage, object class logical status status, object class logical update update, object class logical. asynchronous requests updateInterval update interval, object class integer. asynchronous requests","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSProcess — WPSProcess","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcess — WPSProcess","text":"","code":"WPSProcess$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcess.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSProcess — WPSProcess","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSProcessDescription — WPSProcessDescription","title":"WPSProcessDescription — WPSProcessDescription","text":"WPSProcessDescription WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSProcessDescription — WPSProcessDescription","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSProcessDescription — WPSProcessDescription","text":"Object R6Class modelling WPS process description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"note","dir":"Reference","previous_headings":"","what":"Note","title":"WPSProcessDescription — WPSProcessDescription","text":"Class used internally ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSProcessDescription — WPSProcessDescription","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSProcessDescription — WPSProcessDescription","text":"ows4R::OGCAbstractObject -> WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSProcessDescription — WPSProcessDescription","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSProcessDescription — WPSProcessDescription","text":"WPSProcessDescription$new() WPSProcessDescription$getIdentifier() WPSProcessDescription$getTitle() WPSProcessDescription$getAbstract() WPSProcessDescription$getVersion() WPSProcessDescription$isStatusSupported() WPSProcessDescription$isStoreSupported() WPSProcessDescription$getDataInputs() WPSProcessDescription$getProcessOutputs() WPSProcessDescription$asDataFrame() WPSProcessDescription$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSProcessDescription — WPSProcessDescription","text":"Initializes object class WPSProcessDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$new(xml, version, logger = NULL, ...)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSProcessDescription — WPSProcessDescription","text":"xml object class XMLInternalNode-class XML version version logger logger ... parameter","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-getidentifier-","dir":"Reference","previous_headings":"","what":"Method getIdentifier()","title":"WPSProcessDescription — WPSProcessDescription","text":"Get process identifier","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$getIdentifier()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"identifier, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-gettitle-","dir":"Reference","previous_headings":"","what":"Method getTitle()","title":"WPSProcessDescription — WPSProcessDescription","text":"Get process title","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$getTitle()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"title, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-getabstract-","dir":"Reference","previous_headings":"","what":"Method getAbstract()","title":"WPSProcessDescription — WPSProcessDescription","text":"Get process abstract","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$getAbstract()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"abstract, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-getversion-","dir":"Reference","previous_headings":"","what":"Method getVersion()","title":"WPSProcessDescription — WPSProcessDescription","text":"Get process version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$getVersion()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSProcessDescription — WPSProcessDescription","text":"version, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-isstatussupported-","dir":"Reference","previous_headings":"","what":"Method isStatusSupported()","title":"WPSProcessDescription — WPSProcessDescription","text":"Indicates status supported","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$isStatusSupported()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns-3","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"TRUE supported, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-isstoresupported-","dir":"Reference","previous_headings":"","what":"Method isStoreSupported()","title":"WPSProcessDescription — WPSProcessDescription","text":"Indicates store supported","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-6","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$isStoreSupported()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns-4","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"TRUE supported, FALSE otherwise","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-getdatainputs-","dir":"Reference","previous_headings":"","what":"Method getDataInputs()","title":"WPSProcessDescription — WPSProcessDescription","text":"Get data inputs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-7","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$getDataInputs()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns-5","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"list objects extending WPSInputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-getprocessoutputs-","dir":"Reference","previous_headings":"","what":"Method getProcessOutputs()","title":"WPSProcessDescription — WPSProcessDescription","text":"Get process outputs","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-8","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$getProcessOutputs()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns-6","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"list objects extending WPSOutputDescription","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-asdataframe-","dir":"Reference","previous_headings":"","what":"Method asDataFrame()","title":"WPSProcessDescription — WPSProcessDescription","text":"Convenience method export process description data.frame","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-9","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$asDataFrame()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"returns-7","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSProcessDescription — WPSProcessDescription","text":"data.frame giving process description","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSProcessDescription — WPSProcessDescription","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"usage-10","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSProcessDescription — WPSProcessDescription","text":"","code":"WPSProcessDescription$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSProcessDescription.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSProcessDescription — WPSProcessDescription","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSResponseDocument — WPSResponseDocument","title":"WPSResponseDocument — WPSResponseDocument","text":"WPSResponseDocument WPSResponseDocument","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSResponseDocument — WPSResponseDocument","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSResponseDocument — WPSResponseDocument","text":"Object R6Class modelling OGC WPS response document","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSResponseDocument — WPSResponseDocument","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSResponseDocument — WPSResponseDocument","text":"ows4R::OGCAbstractObject -> WPSResponseDocument","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSResponseDocument — WPSResponseDocument","text":"Output output property","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSResponseDocument — WPSResponseDocument","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSResponseDocument — WPSResponseDocument","text":"WPSResponseDocument$new() WPSResponseDocument$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSResponseDocument — WPSResponseDocument","text":"Initializes WPSResponseDocument","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSResponseDocument — WPSResponseDocument","text":"","code":"WPSResponseDocument$new( xml = NULL, storeExecuteResponse = FALSE, lineage = NULL, status = NULL, output = NULL, serviceVersion = \"1.0.0\" )"},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSResponseDocument — WPSResponseDocument","text":"xml object class XMLInternalNode-class XML storeExecuteResponse store execute response, object class logical lineage lineage, object class logical status status, object class logical output output serviceVersion WPS service version","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSResponseDocument — WPSResponseDocument","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSResponseDocument — WPSResponseDocument","text":"","code":"WPSResponseDocument$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSResponseDocument.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSResponseDocument — WPSResponseDocument","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":null,"dir":"Reference","previous_headings":"","what":"WPSStatus — WPSStatus","title":"WPSStatus — WPSStatus","text":"WPSStatus WPSStatus","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"format","dir":"Reference","previous_headings":"","what":"Format","title":"WPSStatus — WPSStatus","text":"R6Class object.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"value","dir":"Reference","previous_headings":"","what":"Value","title":"WPSStatus — WPSStatus","text":"Object R6Class modelling WPS Status","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"WPSStatus — WPSStatus","text":"Emmanuel Blondel ","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"super-class","dir":"Reference","previous_headings":"","what":"Super class","title":"WPSStatus — WPSStatus","text":"ows4R::OGCAbstractObject -> WPSStatus","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"public-fields","dir":"Reference","previous_headings":"","what":"Public fields","title":"WPSStatus — WPSStatus","text":"value status value percentCompleted status percentage completion","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"methods","dir":"Reference","previous_headings":"","what":"Methods","title":"WPSStatus — WPSStatus","text":"ows4R::OGCAbstractObject$ERROR() ows4R::OGCAbstractObject$INFO() ows4R::OGCAbstractObject$WARN() ows4R::OGCAbstractObject$encode() ows4R::OGCAbstractObject$getClass() ows4R::OGCAbstractObject$getClassName() ows4R::OGCAbstractObject$getNamespaceDefinition() ows4R::OGCAbstractObject$isFieldInheritedFrom() ows4R::OGCAbstractObject$logger() ows4R::OGCAbstractObject$print()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"public-methods","dir":"Reference","previous_headings":"","what":"Public methods","title":"WPSStatus — WPSStatus","text":"WPSStatus$new() WPSStatus$decode() WPSStatus$getValue() WPSStatus$getPercentCompleted() WPSStatus$getCreationTime() WPSStatus$clone()","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"method-new-","dir":"Reference","previous_headings":"","what":"Method new()","title":"WPSStatus — WPSStatus","text":"Initalizes WPSStatus object","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"usage","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSStatus — WPSStatus","text":"","code":"WPSStatus$new(xml = NULL, serviceVersion = \"1.0.0\")"},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSStatus — WPSStatus","text":"xml object class XMLInternalNode-class XML serviceVersion WPS service version. Default \"1.0.0\"","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"method-decode-","dir":"Reference","previous_headings":"","what":"Method decode()","title":"WPSStatus — WPSStatus","text":"Decodes WPS status XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"usage-1","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSStatus — WPSStatus","text":"","code":"WPSStatus$decode(xml)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"arguments-1","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSStatus — WPSStatus","text":"xml object class XMLInternalNode-class XML","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"method-getvalue-","dir":"Reference","previous_headings":"","what":"Method getValue()","title":"WPSStatus — WPSStatus","text":"Get status value, among accepted WPS status values defined WPS standard: ProcessAccepted, ProcessStarted, ProcessPaused, ProcessSucceeded, ProcessFailed.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"usage-2","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSStatus — WPSStatus","text":"","code":"WPSStatus$getValue()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"returns","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSStatus — WPSStatus","text":"value, object class character","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"method-getpercentcompleted-","dir":"Reference","previous_headings":"","what":"Method getPercentCompleted()","title":"WPSStatus — WPSStatus","text":"Get percentage completion","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"usage-3","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSStatus — WPSStatus","text":"","code":"WPSStatus$getPercentCompleted()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"returns-1","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSStatus — WPSStatus","text":"percentage completion, object class integer","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"method-getcreationtime-","dir":"Reference","previous_headings":"","what":"Method getCreationTime()","title":"WPSStatus — WPSStatus","text":"Get creation time","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"usage-4","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSStatus — WPSStatus","text":"","code":"WPSStatus$getCreationTime()"},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"returns-2","dir":"Reference","previous_headings":"","what":"Returns","title":"WPSStatus — WPSStatus","text":"creation time, object class POSIXct","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"method-clone-","dir":"Reference","previous_headings":"","what":"Method clone()","title":"WPSStatus — WPSStatus","text":"objects class cloneable method.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"usage-5","dir":"Reference","previous_headings":"","what":"Usage","title":"WPSStatus — WPSStatus","text":"","code":"WPSStatus$clone(deep = FALSE)"},{"path":"https://eblondel.github.io/ows4R/reference/WPSStatus.html","id":"arguments-2","dir":"Reference","previous_headings":"","what":"Arguments","title":"WPSStatus — WPSStatus","text":"deep Whether make deep clone.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespace.html","id":null,"dir":"Reference","previous_headings":"","what":"getOWSNamespace — getOWSNamespace","title":"getOWSNamespace — getOWSNamespace","text":"getOWSNamespace gets namespace given id","code":""},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespace.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"getOWSNamespace — getOWSNamespace","text":"","code":"getOWSNamespace(id)"},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespace.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"getOWSNamespace — getOWSNamespace","text":"id namespace prefix","code":""},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespace.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"getOWSNamespace — getOWSNamespace","text":"Emmanuel Blondel, emmanuel.blondel1@gmail.com","code":""},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespace.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"getOWSNamespace — getOWSNamespace","text":"","code":"getOWSNamespace(\"GMD\") #> NULL"},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespaces.html","id":null,"dir":"Reference","previous_headings":"","what":"getOWSNamespaces — getOWSNamespaces","title":"getOWSNamespaces — getOWSNamespaces","text":"getOWSNamespaces gets list namespaces registered","code":""},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespaces.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"getOWSNamespaces — getOWSNamespaces","text":"","code":"getOWSNamespaces()"},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespaces.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"getOWSNamespaces — getOWSNamespaces","text":"Emmanuel Blondel, emmanuel.blondel1@gmail.com","code":""},{"path":"https://eblondel.github.io/ows4R/reference/getOWSNamespaces.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"getOWSNamespaces — getOWSNamespaces","text":"","code":"getOWSNamespaces() #> [[1]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: csw #> initialize: function (id, uri) #> uri: http://www.opengis.net/cat/csw/2.0.2 #> #> [[2]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: csw30 #> initialize: function (id, uri) #> uri: http://www.opengis.net/cat/csw/3.0 #> #> [[3]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: fes #> initialize: function (id, uri) #> uri: http://www.opengis.net/fes/2.0 #> #> [[4]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: ogc #> initialize: function (id, uri) #> uri: http://www.opengis.net/ogc #> #> [[5]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: ows #> initialize: function (id, uri) #> uri: http://www.opengis.net/ows #> #> [[6]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: ows #> initialize: function (id, uri) #> uri: http://www.opengis.net/ows/1.1 #> #> [[7]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: wcs #> initialize: function (id, uri) #> uri: http://www.opengis.net/wcs/2.0 #> #> [[8]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: wcs #> initialize: function (id, uri) #> uri: http://www.opengis.net/wcs/2.1 #> #> [[9]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: wms #> initialize: function (id, uri) #> uri: http://www.opengis.net/wms #> #> [[10]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: wms #> initialize: function (id, uri) #> uri: http://www.opengis.net/wms #> #> [[11]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: wms #> initialize: function (id, uri) #> uri: http://www.opengis.net/wms #> #> [[12]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: wms #> initialize: function (id, uri) #> uri: http://www.opengis.net/wms #> #> [[13]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: wps #> initialize: function (id, uri) #> uri: http://www.opengis.net/wps/1.0.0 #> #> [[14]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: xlink #> initialize: function (id, uri) #> uri: http://www.w3.org/1999/xlink #> #> [[15]] #> #> Public: #> clone: function (deep = FALSE) #> getDefinition: function () #> id: xsi #> initialize: function (id, uri) #> uri: http://www.w3.org/2001/XMLSchema-instance #>"},{"path":"https://eblondel.github.io/ows4R/reference/ows4R.html","id":null,"dir":"Reference","previous_headings":"","what":"Interface to OGC Web-Services — ows4R","title":"Interface to OGC Web-Services — ows4R","text":"Provides Interface Web-Services defined standards Open Geospatial Consortium (OGC), including Web Feature Service (WFS) vector data, Web Coverage Service (WCS), Catalogue Service (CSW) ISO/OGC metadata, associated standards common web-service specification (OWS) OGC Filter Encoding. Partial support provided Web Map Service (WMS) Web Processing Service (WPS). purpose add support additional OGC service standards Web Coverage Processing Service (WCPS) OGC API.","code":""},{"path":"https://eblondel.github.io/ows4R/reference/ows4R.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"Interface to OGC Web-Services — ows4R","text":"Emmanuel Blondel emmanuel.blondel1@gmail.com","code":""},{"path":"https://eblondel.github.io/ows4R/reference/registerOWSNamespace.html","id":null,"dir":"Reference","previous_headings":"","what":"registerOWSNamespace — registerOWSNamespace","title":"registerOWSNamespace — registerOWSNamespace","text":"registerOWSNamespace allows register new namespace ows4R","code":""},{"path":"https://eblondel.github.io/ows4R/reference/registerOWSNamespace.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"registerOWSNamespace — registerOWSNamespace","text":"","code":"registerOWSNamespace(id, uri, force)"},{"path":"https://eblondel.github.io/ows4R/reference/registerOWSNamespace.html","id":"arguments","dir":"Reference","previous_headings":"","what":"Arguments","title":"registerOWSNamespace — registerOWSNamespace","text":"id prefix namespace uri URI namespace force logical parameter indicating registration forced case identified namespace already registered","code":""},{"path":"https://eblondel.github.io/ows4R/reference/registerOWSNamespace.html","id":"author","dir":"Reference","previous_headings":"","what":"Author","title":"registerOWSNamespace — registerOWSNamespace","text":"Emmanuel Blondel, emmanuel.blondel1@gmail.com","code":""},{"path":"https://eblondel.github.io/ows4R/reference/registerOWSNamespace.html","id":"ref-examples","dir":"Reference","previous_headings":"","what":"Examples","title":"registerOWSNamespace — registerOWSNamespace","text":"","code":"registerOWSNamespace(id = \"myprefix\", uri = \"http://someuri\")"},{"path":"https://eblondel.github.io/ows4R/reference/setOWSNamespaces.html","id":null,"dir":"Reference","previous_headings":"","what":"setOWSNamespaces — setOWSNamespaces","title":"setOWSNamespaces — setOWSNamespaces","text":"setOWSNamespaces","code":""},{"path":"https://eblondel.github.io/ows4R/reference/setOWSNamespaces.html","id":"ref-usage","dir":"Reference","previous_headings":"","what":"Usage","title":"setOWSNamespaces — setOWSNamespaces","text":"","code":"setOWSNamespaces()"},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-04--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.4 |","title":"ows4R 0.4 |","text":"Corrections #111 WCSCoverageSummary - Fix download failure due min/max handling #112 OWSHttpRequest GET doesn’t detect existing params make GetCapabilities fail #113 WCSGetCoverage- Fix vendor params handling #119 WCS Coverage descriptions - patch rewrite CRS online resources https #120 Service requests CAS work anymore New features #116 Support Service exceptions handling #117 Support pretty print R6 objects Enhancements #122 Service exceptions always handled status code 400 #123 Missing axis labels handling WCS coverage envelope #124 Optimize WFS getFeatures depending outputFormat","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-03-6--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.3-6 |","title":"ows4R 0.3-6 |","text":"CRAN release: 2023-09-01 Corrections #110 ‘hasGeometry’ based FeatureType description enough case propertyNames used geom Enhancements #109 Improve CSV support WFS","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-03-5--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.3-5 |","title":"ows4R 0.3-5 |","text":"CRAN release: 2023-04-13 Enhancements #106 ows4R switch s2 default (s2 ISO/OGC compliant)","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-03-4--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.3-4 |","title":"ows4R 0.3-4 |","text":"CRAN release: 2023-03-10 Corrections #102 OWSHttpRequest - issue json format handled text Enhancements #101 WFS - Ensure features CRS inherited","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-03-3--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.3-3 |","title":"ows4R 0.3-3 |","text":"CRAN release: 2023-01-12 Corrections #99 CRS inherited WFS/GetFeatures","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-03-2--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.3-2 |","title":"ows4R 0.3-2 |","text":"CRAN release: 2022-11-08 Corrections #89 Align WCS getCoverage arguments wrapper #91 getCoverage needs download tempdir instead current wd, filename provider #96 summary$getDimensions() returning coefficients anymore Enhancements #88 describeCoverage & getCoverage returning rangeType info multiband coverages (supported geometa#187 - OGC SWE support - geometa#197 enhancement) #89 Allow geometa classes inheritance using ows4R:: (supported geometa#201 enhancement)","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-03-1--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.3-1 |","title":"ows4R 0.3-1 |","text":"CRAN release: 2022-08-19 Corrections #87 Upgrade roxygen2 7.2.1 fix html issues","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-03--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.3 |","title":"ows4R 0.3 |","text":"CRAN release: 2022-07-05 New features #9 WCS client support #58 Implement ‘exact’ find method WMS layers #63 CAS authentication client support #64 Support httr config argument OGC service clients #73 Implement progress bar OWS GET data requests #74 Get styles WMS layer Enhancements #61 Generalize auth-related arguments OWS Http requests #78 Remove dependency rgdal Corrections #56 Duplicate feature findFeatureTypeByName #76 WFS getFeatures json csv work - bad writer","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-02--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.2 |","title":"ows4R 0.2 |","text":"CRAN release: 2021-11-30 Corrections #45 WFS featureType getDescription fails prettified missing properties #49 OWS Capabilities components correctly parsed ref namespace service (eg. wms) Enhancements #41 Add control hasGeometry case geom excluded propertyNames #42 Support WFS output formats GML #44 Warning raised reading WFS capabilities / proj4 +init New features #10 Support WPS client version 1.0.0 #15 Generalize auth clients/requests #43 Support WMS GetCapabilities, GetFeatureInfo requests","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-01-5--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.1-5 |","title":"ows4R 0.1-5 |","text":"CRAN release: 2020-05-27 Enhancements #34 WFS – Support coercing date/datetime fields #35 WFS – Improve support WFS 2.0 #36 WFS – findFeatureTypeByName fixes #37 WFS – Support xsd:float primitive type #38 WFS – add pretty option feature type description #39 CSW – fix getRecordById feature catalogue (ISO 19110) parsing","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-01-4--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.1-4 |","title":"ows4R 0.1-4 |","text":"CRAN release: 2019-11-12 Corrections *#32 Regression WFS getfeatures - issue setting CQL_filter","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-01-3--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.1-3 |","title":"ows4R 0.1-3 |","text":"CRAN release: 2019-11-05 Corrections #14 debug parameter shouldn’t passed OWS requests #30 WFS - Handle Resulttype Hits get features response Enhancements enhancements New Features #16 Add support Bearer (token) authentication #28 Support geometa record validate/inspire options CSW-T","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-01-2--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.1-2 |","title":"ows4R 0.1-2 |","text":"CRAN release: 2019-06-18 Corrections #12 Issue maxRecords parameter scope getRecords #13 Bad XML encoding OGC BBOX Expression #19 mapping FeatureType datatypes fails case sensitive datatypes Enhancements #18 Issue missing EPSG:404000 code found init file #20 WFS FeatureTypeElement support xs/xsd types & elements restrictions #24 improve getFeatureTypes #21 Test insertion / update multi-lingual metadata records New Features #16 add function reload client capabilities","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-01-1--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.1-1 |","title":"ows4R 0.1-1 |","text":"CRAN release: 2019-05-26 Corrections #12 Issue maxRecords parameter scope getRecords #13 Bad XML encoding OGC BBOX Expression #19 mapping FeatureType datatypes fails case sensitive datatypes (support #17) Enhancements #16 Add function reload client capabilities #18 Handle specific CRS wildcard EPSG:404000 #20 WFS FeatureTypeElement support xs/xsd types & elements restrictions (support #17) #21 Test insertion / update multi-lingual metadata records New Features new features now","code":""},{"path":"https://eblondel.github.io/ows4R/news/index.html","id":"ows4r-01-0--cran_status_badge","dir":"Changelog","previous_headings":"","what":"ows4R 0.1-0 |","title":"ows4R 0.1-0 |","text":"CRAN release: 2018-08-31 New features #8 Allow authentication OWS Requests #7 Prepare 1st release CRAN #6 Set travis-ci build integration tests / quality assurance #5 OGC Filter Encoding + XML representation #4 OWS (Common Web-Service) OGC - OWS #3 CSW Client, versions 2.0.2 (including Transaction Harvest), partial support 3.0 #2 WFS Client, versions 1.0.0, 1.1.0, 2.0.0 main operations (GetCapabilities, DescribeFeatureType, GetFeature #1 Set-package structure","code":""}]