Custom Query (2765 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (40 - 42 of 2765)

Ticket Resolution Summary Owner Reporter
#2774 fixed rasperf - a tool for testing and comparing performance between patches akaleci@… Dimitar Misev
#2773 fixed Visual query editor tab in QGIS plugin nivlev@… Dimitar Misev
Description

Currently the Query Editor tab shows just a text box, which is not so good because users have to know WCPS and it's easy to make mistakes when writing a query. Syntax highlighting/completion seems difficult in python.

We could experiment with a graphical solution instead.

A WCPS query has this general shape:

for $covIter1 in (covName, ...),
    $covIter2 in (covName, ...),
    ...
let $aliasVar1 := covExpr,
    $aliasVar2 := covExpr,
    ...
where booleanExpr
return processingExpr

We can break the Query Editor in a couple of sections:

  1. Input Datacubes (the for clause)
    • a button "Add datacube" shows a dialog to search through the available datacubes
    • the selected datacube is added to a small list of datacube name and a button for each that allows to remove an entry
  1. Filter Datacubes (the where clause)
    • a button "Set filter condition" expands a text area where an expression can be written
  1. Result Expression (the return clause)
    • text area allows to write the expression
  1. Result Format
    • a drop-down allows to select a couple of common formats (none, png, jpg, tiff, netcdf, json)
    • a text box "Custom" allows to enter the format manually
    • a button "Format parameters" expands a text area where format parameters can be entered
#2771 fixed FIX - support definition setting in the ingredients file to specify definition URL of a band Bang Pham Huu Bang Pham Huu
Description

For example, instead of using the default definition URL generated by petascope like below:

<swe:DataRecord>
	<swe:field name="velocity in m/s">
		<swe:Quantity definition="http://www.opengis.net/def/dataType/OGC/0/float32">

A user can specify the definition URL which is correct with his data:

<swe:DataRecord>
	<swe:field name="velocity">
		<swe:Quantity definition="https://qudt.org/vocab/unit/M-PER-SEC">
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.