Fee Fladder
Fee Fladder
I'll see if I can get that data! Would it be four `.gdb` files with those datasets or one with four datasets? As for splitting the issues, I was not...
So I've added the `.gdb` files: [LUs.zip](https://github.com/r-barnes/ArcRasterRescue/files/6500991/LUs.zip) it's a bit funny though: In the `properties` tab, the data is given as `char` for 8-bit. (`short` for 16 bit and `signed...
The depression-filling algorithms use a (single) priority queue, so that is really hard to multi-thread. I think this is also difficult to make parallel in the near future
Oops I was talking bs. Actually in #22 someone tried to do that. and there is documentation [here](https://github.com/r-barnes/richdem/tree/master/programs/parallel_priority_flood). you could maybe give it a shot? (not in Python though)
`make -j6` is a linux command and you are on windows, as I can see from the output, which looks like you just ran `cmake ..` ``` cmake .. --...
ooh,quick reply! some other important notes I forgot to mention previously: - The line-drawing test is currently failing. I just copied the code over from `d8_methods.hpp`. output with `x0=0,y0=0,x1=4,y0=4`: ```...
reference for better line-drawing, including slopes >1: https://www.geeksforgeeks.org/bresenhams-line-generation-algorithm/
Ok... So I found out that my commit was 45+ commits behind the main branch, which made some things obsolete that I wrote before, and gave some headaches while fixing....
@giswqs Since it didn't get replies or merged quickly, I also implemented it in Cython, albeit less generic: ```python %%cython -+ from libcpp.queue cimport queue from libcpp.vector cimport vector from...
So some of the culprits: (I haven't really digged through the code so don't really understand ramifications) for delete: https://github.com/Etar-Group/Etar-Calendar/blob/4df85b1efd7e26f8af2a0defaa5f46224cfd33c3/src/com/android/calendar/DeleteEventHelper.java#L302-L310 This function also has access to the class's `mModel`, so...