are based on a simple loop through the list of WMOs to search.
This could be optimised with apply methods for instance. But, in this cas could we keep the module design as it is ? (with a the construction of a binary mask that is then applied by the run method).
The modular method for search in ArgoIndex pyarrow and pandas backends is not an optimal design for large requests.
For instance the
search_wmo
methods:are based on a simple loop through the list of WMOs to search. This could be optimised with
apply
methods for instance. But, in this cas could we keep the module design as it is ? (with a the construction of a binary mask that is then applied by therun
method).