Custom Query (2765 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (31 - 33 of 2765)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Ticket Resolution Summary Owner Reporter
#1556 fixed arccos/arcsin/arctan -> acos/asin/atan ahambasan Dimitar Misev
Description

We should provide aliases, these functions are more commonly named acos/asin/atan.

Also, implementing support for atan2 might be a good idea.

#1802 fixed wcst_import should report an error on invalid option ahambasan Dimitar Misev
Description

If a user specifies an option that is not recognized by wcst_import, then wcst_import should throw an error instead of ignoring the option.

Furthermore, validating options seems to be duplicated in each recipe now. For common options this should be refactored into methods in the BaseRecipe class.

The code to validate ingredients files exist in several recipes files, method validate() in applications/wcst_import/recipes/*/recipe.py

#1850 fixed rasdapy fails on any query resulting in more than 4MB data ahambasan Dimitar Misev
Description

In #1849 an import script is attached that will import 6.6GB array in rasdaman. The query in the ticket should be checked if it works with rasdapy, with the latest rasdaman.

The solution is http://rasdaman.org/ticket/1850#comment:4 but in C++, it needs something like this in Python: https://stackoverflow.com/a/42655487/2028440

However, current GRPC version for rasdapy is still beta so options parameter does not exist. Hence, it needs to update GRPC for rasdapy.

Rasdapy folder exists at rasdaman/applications/rasdapy and what need to do first is installing GRPC for python:

sudo pip install grpcio-tools
pip install -U protobuf (version 3.6)

There is a python script to generate GRPC files at rasdapy/scripts/stub_generator.py, however, it needs to use some built GRPC tool, so don't use this one, use this new content: https://pastebin.com/Ha2EXLbk which will generate GRPC files from above installed Python dependencies.

After that, trying to figure out what changed from the current source code of current rasdapy using beta GRPC with new generated GRPC version.

Finally, rasql.py should be able to run any rasql query which can be larger than 4 MB.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.