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
Title Compute the volume indicator.
Definition The volume is defined as the product of the area and the height. The height is defined by a numeric value.
Domain The input feature is a geometry, polygon or multipolygon. It contains a height value in the range 0 to +inf;
If the input feature is polygon or a multipolygon do If the height <= 0 then volume = 0 else then floor area = area * height else return null
Test Check the domain
Usage
Compute the building’s volume.
Implementation Spatial SQL functions exposed as WPS process
Bibliography
The text was updated successfully, but these errors were encountered:
Will be computed with a generic SQL expression
Sorry, something went wrong.
ebocher
No branches or pull requests
Title
Compute the volume indicator.
Definition
The volume is defined as the product of the area and the height. The height is defined by a numeric value.
Domain
The input feature is a geometry, polygon or multipolygon. It contains a height value in the range 0 to +inf;
If the input feature is polygon or a multipolygon do
If the height <= 0
then volume = 0
else
then floor area = area * height
else
return null
Test
Check the domain
Usage
Compute the building’s volume.
Implementation
Spatial SQL functions exposed as WPS process
Bibliography
The text was updated successfully, but these errors were encountered: