[Go to Previous] [Go to Next]


Modify the Layer Object - Point

setDeclutter - Enables or disables decluttering of the layer in the display

Usage: myDataLayer.setDeclutter(keywords)
Keywords - required:
value = sets if decluttering is enabled or disabled for the layer
True - declutters the layer (default)
False - plots every point of data without decluttering
Example:
layer.setDeclutter(value=True)

setDeclutterFilter - Sets the level of decluttering used for the layer if setDeclutter is set to True

Usage: myDataLayer.setDeclutterFilter(keywords)
Keywords - required:
filterFactor = numerical value for level of decluttering to use in the display. This is a value between 0 and 1, where 0 is the maximum level of decluttering and 1 is the maximum level of decluttering. default=0
Example:
layer.setDeclutterFilter(filterFactor=0.5)

setLayoutModel - Sets the layout model used in the display

Usage: myDataLayer.setLayoutModel(keywords)
Keywords - required:
model= name of layout model to use in the display. The full directory structure to the layout model must be specified.
Example:
layer.setLayoutModel(model='Observations>Temperature')

setUseAltitudeForVerticalPosition- Toggles between displaying the data at the data's altitude (if available) or at a constant vertical position

Usage: myDataLayer.setUseAltitudeForVerticalPosition(keywords)
Keywords - required:
useAltitude= sets if the display plots at the altitude of the data or at a constant vertical position
True - displays the layer at the altitude of the data (if available) (default)
False - displays the layer at a constant vertical position, defined by setVerticalPosition()
Example:
layer.setUseAltitudeForVerticalPosition(useAltitude=False)

[Go to Previous] [Go to Next]