ASSETLIST

An ASSETLIST is an AQL list of assets.

Creating

The most common way of creating a list of assets is using the ASSET function.

 'Wind Turbine' ASSET

The above function will return an asset list that contains all of the assets with 'Wind Turbine' in its name

You can also search for all of the assets of a particular type, using the OFTYPE function.

 'Gearbox' OFTYPE

The function above will return an asset list that contains all of the assets with the 'Gearbox' type.

Converting To Points

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

You can get a POINTLIST of every point an asset has with the ALLPOINTS function.

  'Wind Turbine #1' ASSET ALLPOINTS

This function returns all of the points for Wind Turbine #1

You can also combine these lists with a PROPERTYLIST 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.