Loading [MathJax]/extensions/tex2jax.js
python.workflows.forTopHeight Namespace Reference

Calculates statistical measures (mean, std.dev., ...) for the 100 highest points within specific AOIs. More...

Classes

class  DMKernel
 callback object More...
 
class  forTopHeight
 
class  Kernel
 
class  ShapefileKernel
 (kind of) like the odm kernel, but for iterating over polygons in a shapefile More...
 

Functions

def output_layout (layout, logger)
 
def BoxToList (opalsBox)
 
def overlaps (box1, box2)
 

Variables

dictionary typeNames
 
 script
 

Detailed Description

Calculates statistical measures (mean, std.dev., ...) for the 100 highest points within specific AOIs.

Executes spacial queries (circles around every point/polygons of supplied shapefile) and calculates statisic features (mean, std.dev., ...) for the 100 points with the highest NormalizedZ value.

The results are stored in the input ODM file as additional attributes "topHeightSampleCount" and "topHeight[Feature]" or "tHSampleC" and "th[Feature]" for shapefiles

See also
Script documentation

Variable Documentation

◆ typeNames

dictionary typeNames
Initial value:
1 = {
2  pyDM.ColumnType.int32 : "int32",
3  pyDM.ColumnType.uint32 : "uint32",
4  pyDM.ColumnType.int8 : "int8",
5  pyDM.ColumnType.uint8 : "uint8",
6  pyDM.ColumnType.int16 : "int16",
7  pyDM.ColumnType.uint16 : "uint16",
8  pyDM.ColumnType.float_ : "float",
9  pyDM.ColumnType.double_ : "double",
10  pyDM.ColumnType.string : "string",
11  pyDM.ColumnType.int64 : "int64",
12  pyDM.ColumnType.cstr : "cstr",
13  pyDM.ColumnType.bool_ : "bool"
14 }