PROPERTYLIST

An PROPERTYLIST is an AQL list of properties.

Creating

The most common way of creating a list of properties is using the PROPERTY function.

 'Speed' PROPERTY

The above function will return a property list that contains all properties with the word 'Speed' in their name

Converting To Points

If you're interested in reading data, you'll want to get the points for the properties in the list.

You can get a POINTLIST of every matching point in the ARDI database using the ALLPOINTS function.

  'Speed - Blade' PROPERTY ALLPOINTS

This function returns all of the points for Blade Speed across every asset in your system

You can also combine these lists with an ASSETLIST with the VALUES function.

  'Wind Turbine #1' ASSET 'Speed  - Blade' PROPERTY VALUES

Creates a list of assets and a list of properties, then finds each of those properties on the assets and returns them as a POINTLIST.