Skip to content

v0.3.2.1

Compare
Choose a tag to compare
@ks905383 ks905383 released this 04 Jun 15:57
· 91 commits to main since this release

Major updates

Creates a module-wide way to set defaults for :

  • silencing behavior
  • backend algorithm

So, for example, to set the backend to use the dot product implementation, call:

import xagg as xa
xa.set_options(impl='dot_product')

Alternatively, use a with block for individual chunks of code, here using an example with silent:

with xa.set_options(silent=True):
     wm = xa.pixel_overlaps(ds,gdf)

which silences all status updates.

Bug fixes

Closes #55 ; silent=True now should suppress all status updates to standard out.