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
For a given location - which may be a current or future infrastructure asset location - I would like to know all the hazards which may affect it.
Implementation notes - may be an API call rather than pushing all data client side:
GET /exposure/rp?lat=0.00&lng=0.00
[ { "hazard": "coastal", "exposure": [0,0,0,1,2], "return_period": [5,10,50,100,250] } ]
^ exposure and return period entries correspond
GET /exposure/events?lat=0.00&lng=0.00
[ { "hazard": "coastal", "events": [2.3,7,2.3] } ]
^ events is list of non-zero depths from event set
The text was updated successfully, but these errors were encountered:
Relevant discussion from terracotta repo: DHI/terracotta#163
Sorry, something went wrong.
No branches or pull requests
For a given location - which may be a current or future infrastructure asset location - I would like to know all the hazards which may affect it.
Implementation notes - may be an API call rather than pushing all data client side:
GET /exposure/rp?lat=0.00&lng=0.00
^ exposure and return period entries correspond
GET /exposure/events?lat=0.00&lng=0.00
^ events is list of non-zero depths from event set
The text was updated successfully, but these errors were encountered: