Arindam Adak

Results 10 issues of Arindam Adak

Hi everyone, this is not an issue as per say, but an enquiry. I am trying to output a ipywidget inside the dashboard. I can host it using **"jupyter-flex notebook.ipynb"**...

I am trying to build a dashboard/static html where I need to show plots for around 20 different regions. Now as there are no Dropdown option for static html I...

The code used: from itables import init_notebook_mode import pandas as pd init_notebook_mode(all_interactive=True) data = pd.read_csv('Example.csv') data ## Works fine in the jupyter notebook. ##Error I get while building the dashboard...

I am trying to create a data processing pipeline that start with a catalogue of multiple Sentinel 2 tiles and multiple 10mt bands (Data worth almost 1 year so around...

I know I can do rf_local_max(Tile_1, Tile_2). How can I do if I have three or four tile columns of a rasterframe. I tried rf_local_max(Tile_1, Tile_2, Tile_3) and got the...

I am trying to convert "int16raw" to "int16ud-99" takes about 7 minutes for a band of a tile of Sentinel 2 data. I saw the link 'https://github.com/locationtech/rasterframes/issues/343'. But was there...

Hi Everyone, Has anyone ever tried to mask Sentinel 2 10mt bands using SCL band 20mt. If so can someone help out with the workflow. Following is what I tried:...

I have rasterframes version 0.11.1. When I try to use the rf_resample function: **df.select(rf_resample("proj_raster.tile", 0.25, "max"))**, I get the following error: **rf_resample() takes 2 positional arguments but 3 were given**...

enhancement
question

I have a installation of GDAL. "from osgeo import gdal" works perfectly but when I try to run from pyrasterframes.utils import gdal_version print(gdal_version()) I get "not available" as output. I...

question

**Is your feature request related to a problem? Please describe.** No **Describe the solution you'd like** I want to read multiple Sentinel 2 tiles of same resolution in one spark...