An example of loading a pointset from a .aps file:
pointData = PointSetData("F:\\Data\\Picks\\cptks.aps")
chooser = PointSetDataChooser()
pointData = chooser.getSelectedData()
Example of getting all range key names for a pointset:
keyNamesArray = pointData.getKeyNames()
Using this information, you can access specific key range information by using the following method:
inlineMin = pointData.getKeyMinimum("INLINE")
inlineMax = pointData.getKeyMaximum("INLINE")
Example of getting all attributes for a pointset:
attributeNamesArray = pointData.getAttributeFieldNames()
Using this information, you can access specific attribute range information by using the following method:
amplitudeMin = pointData.getAttributeKeyRangeMinimum("Amplitude")
amplitudeMax = pointData.getAttributeKeyRangeMaximum("Amplitude")
Points can be added one at a time to pointset data by using the following method:
pointData.addPoint(singlePoint)