Code Monkey home page Code Monkey logo

Comments (3)

DirkEilander avatar DirkEilander commented on June 2, 2024

I think pyflwdir can help you here. It has the stream_distance method for that, see example below based on the "rhine_d8.tif" arcgis D8 raster in the notebooks folder of this repository:

import rasterio
import pyflwdir

# read and parse D8 flow direction data
with rasterio.open("rhine_d8.tif", "r") as src:
    flw = pyflwdir.from_array(
        src.read(1),
        ftype="d8",
        transform=src.transform,
        latlon=src.crs.is_geographic,
    )

# stream defined based on upstream area threshold
stream = flw.upstream_area(unit="km2") > 100  
# calculate distance to the nearest stream following the D8 flow direction
distance_to_stream = flw.stream_distance(unit="m", mask=stream)

from pyflwdir.

DirkEilander avatar DirkEilander commented on June 2, 2024

I have not seen this error before. In which function do you get the error?
If you can share your code and data with me I'll try to investigate it further.

from @MauKruisheer: Thanks for your help! I got it to work for a small DEM, but ran into the following error when using the same code on a larger, 3 arc-second DEM when trying to create a FlowDir raster:

TypingError: No implementation of function Function(<built-in function heappush>) found for signature:

heappush(list(Tuple(int16, uint32, uint32))<iv=None>, Tuple(int64, uint32, uint32))

There are 2 candidate implementations:

  - Of which 2 did not match due to:

  Overload in function 'heappush': File: numba\cpython\heapq.py: Line 150.

    With argument(s): '(list(Tuple(int16, uint32, uint32))<iv=None>, Tuple(int64, uint32, uint32))':

   Rejected as the implementation raised a specific error:

     TypingError: heap type must be the same as item type

  raised from C:\Users\maukr\anaconda3\envs\52waste\lib\site-packages\numba\cpython\heapq.py:119

During: resolving callee type: Function(<built-in function heappush>)
During: typing of call at C:\Users\maukr\anaconda3\envs\52waste\lib\site-packages\pyflwdir\dem.py (106)

from pyflwdir.

DirkEilander avatar DirkEilander commented on June 2, 2024

Closing this issue as the original request has been answered. If the numba error with your large dataset is not solved please open a new issue and if possible provide a minimal reproducible example (with data) in order to debug the error.

EDIT: your error could be related to the used numba version, see also #6. Could you try updating your numba library to see if that solves the error?

from pyflwdir.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.