We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
uptake_walk_school_baseline = function(distance, upper_limit = 0.7, exponent = 1.3) { p = exp(-distance * exponent) p[p > upper_limit] = upper_limit p } # And... uptake_walk_school_goactive = function(distance, upper_limit = 0.9, exponent = 0.8) { uptake_walk_school_baseline(distance, upper_limit, exponent) }
The text was updated successfully, but these errors were encountered:
f333f43 added this, I'll keep this issue open until I rewrite the docs on uptake configs
Sorry, something went wrong.
Example use in config.json:
"uptake": { "WalkToSchool": { "upper_limit": 0.7, "exponent": 1.3 } }
Distance in m.
Will install and test!
No branches or pull requests
The text was updated successfully, but these errors were encountered: