-
Updated
Sep 13, 2021 - JavaScript
xarray
Here are 170 public repositories matching this topic...
Describe the bug
According to the multiscene documentation, the property all_same_area does:
Determine if all contained Scenes have the same ‘area’.
However, I have created a multiscene where all scenes have the same area (they just differ between datasets), yet the property returns Fa
-
Updated
Jul 21, 2021 - Python
Code Sample, a minimal, complete, and verifiable piece of code
from pyresample.boundary import Boundary
b = Boundary(my_lons, my_lats)
print(b.contour_poly.area())Problem description
The above code doesn't fail if the provided lons/lats are 2D (not sure on 3D+), but the class and all functions/utilities underneath it assume 1D arrays. The end results are incor
https://carpentries-incubator.github.io/geospatial-python/ is a good course that uses rioxarray. Could add a link to it in https://corteva.github.io/rioxarray/stable/getting_started/getting_started.html
-
Updated
Sep 2, 2021 - Jupyter Notebook
-
Updated
Sep 13, 2021 - Python
-
Updated
Jul 29, 2021 - Python
-
Updated
Aug 29, 2021 - Python
-
Updated
Aug 5, 2021 - Python
Is your feature request related to a problem? Please describe.
asv performance now depends on local machine performance
Describe the solution you'd like
Independent of my laptop
https://labs.quansight.org/blog/2021/08/github-actions-benchmarks/
Describe alternatives you've considered
keep as is
-
Updated
Oct 10, 2020 - Jupyter Notebook
Passing resampling
Without thinking I put resampling="bilinear" and got an error when I called .compute()
Traceback (most recent call last):
File "carajas.py", line 92, in <module>
band_medianNP = band_median.compute()
File "/home/ubuntu/anaconda3/envs/richard/lib/python3.8/site-packages/xarray/core/dataarray.py", line 899, in compute
return new.load(**kwargs)
File "/home/ubuntu/anacoIn determining the correct reader for the file provided we currently have two options (as of #224).
- Providing
readerparam toAICSImage(i.e.img = AICSImage("s3://some-file.ext", reader=readers.lif_reader.LifReader) - Not providing a reader, and AICSImage looping over all
SUPPORTED_READERS.
Option 1 is the fastest + safest method for loading a file into AICSImage (without using
-
Updated
Aug 24, 2021 - Python
Looping over the data_vars in fit/predict/transform/... should be done with parallel.
Implement .get
This should use the __getitem__ logic and return None if __getitem__ files so that the two are consistent (as expected from dicts and other mappings)
Marker visualization
It's really impressive how much pyomeca has progressed! Have you ever considered including some form of simple 3D marker visualization?
wxee is designed for weather data, but it's also usable with remote sensing data--especially mesoscale datasets like GOES-R and MODIS. It would be great to have a notebook or two showing that.
Some ideas:
- Downloading MODIS imagery
- Visualizing fire progressions from GOES-R hotspots
- Climatological means of net primary productivity
- Sentinel-2 / Landsat example
-
Updated
Jul 23, 2020 - Jupyter Notebook
-
Updated
May 26, 2021 - Jupyter Notebook
Improve this page
Add a description, image, and links to the xarray topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the xarray topic, visit your repo's landing page and select "manage topics."


Is your feature request related to a problem? Please describe.
Sometimes you want to check that data values are present in another array, but only up to a certain tolerance.
Describe the solution you'd like
da.isin(test_values, tolerance=1e-6), where the tolerance argument is optional.Not sure what the implementation should be but there are two vectorized [suggestions here](http