itati01

Results 9 issues of itati01

### Description Cartopy fails when attempting to define an EPSG crs. This is similar to the closed issue #1437. The identical code worked 5 days ago. #### Code to reproduce...

Hi @mdbartos , pysheds is accumulating hard on my machine to produce urgently needed results. Unfortunately, it uses all my memory (with flow direction, efficiency and flow accumulation) which results...

Hi @mdbartos `pytest` warns about the deprecated `pyproj.transformer.transform()`. According to the [`pyproj` documentation](https://pyproj4.github.io/pyproj/stable/gotchas.html#upgrading-to-pyproj-2-from-pyproj-1), `pyproj.transformer.Transformer()` should be used instead: ``` from pyproj import Transformer transformer = Transformer.from_crs("epsg:4326", "epsg:3857") transformer.transform(12, 12) ```...

Hi, I could not open a netcdf file whose path contained a German umlaut in Python 3 (FileNotFoundError: [Errno 2] No such file or directory). A workaround was to change...

**Describe the bug** I use monthly precipitation and air temperature from Jan 1995 to June 2021 to calculate SPEI. process_climate_indices raises a `ValueError: cannot reshape array of size 416697660 into...

**Is your feature request related to a problem? Please describe.** SPEI, for instance, requires two NetCDFs. If the float lon/lat of the same data provider differ slightly due to (presumably)...

Hi, I have two NetCDF with monthly temperature and precipitation from which I would like to derive SPEI. The file may require some further adjustments to be compatible with `process_climate_indices`...

This is to close #465. The remaining `np.array_equal`s are replaced by `np.allclose`s where longitudes and latitudes are compared but no divisions (`input_type == InputType.divisions`). The fixed absolute tolerance of 0.01...

Hi, I want to download MOD16 and MYD16 data with runGdal but receive an error in sf::gdal_utils using "warp". Actually, I plan to reproject the data but I get this...