Qiusheng Wu

Results 376 comments of Qiusheng Wu

Some packages (e.g., gdal, richdem, rasterio) can be a bit challenging to install on Windows. You might want try Linux using [VirtualBox](https://www.virtualbox.org/). For your convenience, I have deployed richdem to...

What ArcGIS Pro version are you using? Newer version of ArcGIS Pro might cause issues due to API changes.

It seems the recent updates of ArcPy cause the issues. I will look into that next week when I have time. You can try out the toolbox ArcMap version for...

Try using conda to install it. You will need [Anaconda](https://www.anaconda.com/distribution/#download-section) or [Miniconda](https://docs.conda.io/en/latest/miniconda.html) installed on your computer. ``` conda create -n py38 python conda activate py38 conda install -c conda-forge gdal...

Closing this issue for now as it is related to the WhiteboxTools backend rather than the frontend.

The error is likely caused by the scientific notation. Here are the R scripts behind the tool. https://github.com/giswqs/whiteboxR/blob/master/R/hydro_analysis.R#L1047 ``` wbt_isobasins

Any update on this? It would be awesome to make ipysheet compatible with Google Colab https://github.com/googlecolab/colabtools/issues/2594

I just ran into to same issue. Both `to_dataframe()` and `to_array()` do not work properly for capturing values manually entered into the cells. It took me several hours to figure...

Here is a workaround ```python import ipysheet rows = 3 columns = 2 sheet = ipysheet.sheet(rows=rows, columns=columns) for i in range(columns): ipysheet.column(i, [""] * sheet.rows) sheet # ipysheet.to_dataframe(sheet) # ipysheet.to_array(sheet)...

@eecheonwu It appears that [DGL](https://anaconda.org/dglteam/dgl) is not available on [conda-forge](https://conda-forge.org/feedstock-outputs/). Conda forge recipe does not allow packages from custom conda channels. See https://github.com/conda/conda-build/issues/532