Pandora-IsoMemo / DSSM

Pandora & IsoMemo spatiotemporal modeling (DSSM)
https://pandora-isomemo.github.io/DSSM/
GNU General Public License v3.0
4 stars 1 forks source link

New map operation that produces a binary map (presence/absence) (OperatoR) #211

Open arunge opened 3 months ago

arunge commented 3 months ago

Steps to provide the code

It helps using ideas from test-driven development to add new features. Following this I prepared a new test containing:

Please check the pull request: https://github.com/Pandora-IsoMemo/iso-app/pull/212/files and add your code for the calculations to the new function getBinaryPredictions(...)

1. Example data:

Note on error handling: In order to throw errors you can include conditions inside your code, e.g.

if (<some invalid condition>) stop("<Some error message>")

if (<some condition where the user should receive a warning>) warning("<Some warning message>")

stop(...) and warning(...) statements will be caught from outside the function and forwarded to the user. Errors/warnings that come from other functions that are called inside of your function will be caught automatically.

arunge commented 3 months ago

@isomemo We can start to integrate the new feature. Please feel free to provide the code, or to assign the person to this issue who will provide the code. Thanks in advance!

isomemo commented 2 months ago

@arunge @mgross I think that Marcus should provide this

arunge commented 2 months ago

@mgross Please, let me know when you start working on this issue and if you have any questions. Please check the comment above for details.

mgross commented 3 weeks ago

I need more details on the functionality, I don't know what should be done and what exact inputs/outputs are.