Skip to content

Commit 2381488

Browse files
authored
Update README.md
1 parent f962740 commit 2381488

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,23 +106,23 @@ WCPS allows processing, aggregation, fusion, and more on datacubes with a high-l
106106
```
107107
for $c in ( A )
108108
return
109-
encode( $c [ date( "2018-05-22" ), ( 332796 : 380817 ), N( 6029000 : 6055000 ) ], "png" )
109+
encode( $c [ date( "2018-05-22" ), ( 332796 : 380817 ), N( 6029000 : 6055000 ) ], "png" )
110110
```
111111

112112
Such a query can be sent through the WCS Processing request:
113113

114114
```
115115
https://fairicube.rasdaman.com/rasdaman/ows
116116
? SERVICE=WCS & VERSION=2.1.0 & REQUEST=ProcessCoverages
117-
& QUERY=for $c in ( A ) return encode( $c [ date( "2018-05-22" ), ( 332796 : 380817 ), N( 6029000 : 6055000 ) ], "png" )
117+
& QUERY=for $c in ( A ) return encode( $c [ date( "2018-05-22" ), ( 332796 : 380817 ), N( 6029000 : 6055000 ) ], "png" )
118118
```
119119

120120
Again, be reminded that ["http URL-encoding"](https://www.urlencoder.io/) needs to be applied before sending.
121121

122122
So far, each coverage has been processed in isolation. Data fusion is possible through “nested loops”:
123123

124124
```
125-
for $a in ( A ), $b in ( B )
125+
for $a in ( A ), $b in ( B )
126126
return encode( $a + $b, "png" )
127127
```
128128

0 commit comments

Comments
 (0)