-
Updated
Jul 5, 2021 - JavaScript
xarray
Here are 159 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
Apr 11, 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
Jun 25, 2021 - Jupyter Notebook
-
Updated
Apr 13, 2021 - Python
-
Updated
Jul 2, 2021 - Python
-
Updated
May 29, 2021 - Python
-
Updated
May 24, 2021 - Python
NWP examples
Example for numerical weather prediction
to be added to initialised datasets
Data sources (to) implement(ed):
- GEFS https://www.ncei.noaa.gov/thredds/catalog/model-gefs-003/202008/20200831/catalog.html
- DWD https://opendata.dwd.de/weather/nwp/
relates to #600
-
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/anaco
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)
Looping over the data_vars
in fit
/predict
/transform
/... should be done with parallel
.
-
Updated
May 28, 2021 - Python
Marker visualization
It's really impressive how much pyomeca has progressed! Have you ever considered including some form of simple 3D marker visualization?
-
Updated
Jul 23, 2020 - Jupyter Notebook
-
Updated
Apr 17, 2021 - Python
-
Updated
Jun 11, 2021 - Python
-
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.
I have a dataset where I do not know which of two dimensions (lets call them
a
andb
) exists in this dataset (So either it has dims ("a", "other") or ("b", "other")).I would like to make sure that this dimension is first using transpose, but currently this is only possible using
if
ortry
statements. Just using `ds.trans