You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: doc/documentation.Rmd
+2-1
Original file line number
Diff line number
Diff line change
@@ -176,8 +176,9 @@ The ``options`` are by definition optional. The table below defines the possible
176
176
Name|Definition|Default value
177
177
----|----------|-------------
178
178
``line_separator``|Defines the suite of characters used for splitting metadata components with a single tabular cell of an _entity_ (eg. Description field)|**_\n**
179
-
``skipDataDownload``|Indicates whether data associated to an entity should be download|**false**
179
+
``skipDataDownload``|Indicates whether downloading data associated to an entity should be skipped|**false**
180
180
``skipFileDownload``|Deprecated, use `skipDataDownload` instead.|**false**
181
+
``skipEnrichWithData``|Indicates whether actual data objects (features/coverages) reading and association with entity data should be skipped or not|**false**
181
182
``skipDynamicBbox``|Indicates whether bbox inherited from data should be ignored.|**false**
182
183
``enrichDataStrategy``|Strategy to use when inheriting spatial bbox from multiple data objects, either "first" (take the first data object for the bbox, or "union" (union of bboxes from the different data objects).|**"first"*
warnMsg<- sprintf("No data features associated to entity '%s'. Skip feature catalogue creation", entity$identifiers[["id"]])
21
-
config$logger.warn(warnMsg)
22
-
return(FALSE)
23
+
if(!skipEnrichWithData){
24
+
warnMsg<- sprintf("No data features associated to entity '%s' and global option 'skipEnrichWithData' is false. Skip feature catalogue creation", entity$identifiers[["id"]])
25
+
config$logger.warn(warnMsg)
26
+
return(FALSE)
27
+
}else{
28
+
fto<-entity$data$featureTypeObj
29
+
if(!is.null(fto)){
30
+
infoMsg<-"Global option 'skipEnrichWithData' is true. Feature catalogue will be created based on the dictionary only"
31
+
config$logger.info(infoMsg)
32
+
build_catalog_from_features=FALSE
33
+
}else{
34
+
warnMsg<-"Global option 'skipEnrichWithData' is true, but no dictionary available. Skip feature catalogue creation"
0 commit comments