rasterframes icon indicating copy to clipboard operation
rasterframes copied to clipboard

Geospatial Raster support for Spark DataFrames

Results 124 rasterframes issues
Sort by recently updated
recently updated
newest added

Result of the same query using pystac-client: ``` stac = "https://earth-search.aws.element84.com/v0" collection = "sentinel-s2-l2a-cogs" shape = geopandas.read_file("zip:///shape.zip") polygon = shapely.geometry.box(*shape.to_crs(epsg=4326).total_bounds) SentinelSTAC = Client.open("https://earth-search.aws.element84.com/v0") result = SentinelSTAC.search( intersects=polygon, collections=["sentinel-s2-l2a-cogs"], datetime="2020-04-01/2020-04-10" ).matched()...

bug

Bumps [pillow](https://github.com/python-pillow/Pillow) from 10.0.1 to 10.2.0. Release notes Sourced from pillow's releases. 10.2.0 https://pillow.readthedocs.io/en/stable/releasenotes/10.2.0.html Changes Add keep_rgb option when saving JPEG to prevent conversion of RGB colorspace #7553 [@​bgilbert] Trim...

dependencies

Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.2 to 3.1.3. Release notes Sourced from jinja2's releases. 3.1.3 This is a fix release for the 3.1.x feature branch. Fix for GHSA-h5c8-rqwp-cp95. You are affected if...

dependencies

Bumps [fonttools](https://github.com/fonttools/fonttools) from 4.39.3 to 4.43.0. Release notes Sourced from fonttools's releases. 4.43.0 [subset] Set up lxml XMLParser(resolve_entities=False) when parsing OT-SVG documents to prevent XML External Entity (XXE) attacks (9f61271dc):...

dependencies

Bumps [certifi](https://github.com/certifi/python-certifi) from 2022.12.7 to 2023.7.22. Commits 8fb96ed 2023.07.22 afe7722 Bump actions/setup-python from 4.6.1 to 4.7.0 (#230) 2038739 Bump dessant/lock-threads from 3.0.0 to 4.0.1 (#229) 44df761 Hash pin Actions and...

dependencies

Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.15 to 1.26.18. Release notes Sourced from urllib3's releases. 1.26.18 Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other"...

dependencies

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 have two questions while using rasterframes: 1. When using rf to write geotiff, if the image is large(>4G), the error oom is reported. If I want to write a...

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...