Michael Mann

Results 55 comments of Michael Mann

@rth have you spent any time on implementing the feature extractors for xarray? I think you are onto something here.

@jgrss Happy to review 252 without this. Although it looks like CI tests are failing.

I am going to assume that you want ownership of this. Unless I am told otherwise- since its associated with a particular google account. In particular if you can get...

1. go to google search console https://search.google.com/search-console/ 2. add new "property" with "URL prefix" as suggested 3. Download the `googlea.html` file and place it in docs/source (e.g. module/docs/source). Use [html_extra_path](https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_extra_path)...

@jgrss can we close this?

oops accidentally closed

Yep its there `xformers 0.0.15+ea1048b.d20221220`

I use miniconda. I ran the ` python -m xformers.info` command with my active environment. For instance: ``` which python /home/mmann1123/miniconda3/envs/sd_au1111_v2/bin/python ```

``` python from geowombat.backends.rasterio_ import get_file_bounds files = ['./B12/B12_S2_SR_2020_Q01_south-0000000000-0000000000.tif', './B12/B12_S2_SR_2020_Q01_south-0000032768-0000000000.tif'] print(get_file_bounds(files,return_bounds=True,bounds_by='union')) with gw.open(files, mosaic=True,overlap='max' ) as src: print(src.gw.bounds) ``` ``` (34.24844987011358, -17.126380891738677, 35.91850781482018, -13.480837805724835) (34.24844987011358, -16.424437328727684, 35.918417983291775, -13.480837805724835) ```

hmm... for me bounds_by union would seems like a logical choice, but I guess I am typically using it to mosaic tiles for a a larger scene. Maybe we just...