Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X
I couldn't find any specific post in regards to my question, so I did research on the two subjects individually.
STREAMS - time series data (timestamp and additional data)
PROPERTIES - how you describe the data points that are directly related to a thing. Each property has a name, description and a data type
Note: Any informative feedback to my question would be greatly appreciated. Thank you and have a nice day!
Solved! Go to Solution.
Properties are modeled definitions of a 'Thing' - Asset. For example a Car might have speed, temperature, miles as properties and at any given time it will be able to tell you what the speed temperature and miles traveled is after the latest value update.
A Stream (and ValueStream) is a way to store time series data historically.
So let's say you want to have the speed profile over time of a car, you store the speed values in the Stream or ValueStream
The way Stream and ValueStream differ is that ValueStream works 'automatically' by setting a property to Logged, whereas for a Stream you fully define what you store and you have to have an event (usually datachange) to trigger a service that stores the information.
So a ValueStream can log upon valuechange automatically let's say speed that changes over time and miles traveled over time.
then what you might do is that based on proximity you might create a Stream (not valuestream) entry that says, at this time, the car was close to this city speed was ... miles travelled was ...
More info:
Properties are modeled definitions of a 'Thing' - Asset. For example a Car might have speed, temperature, miles as properties and at any given time it will be able to tell you what the speed temperature and miles traveled is after the latest value update.
A Stream (and ValueStream) is a way to store time series data historically.
So let's say you want to have the speed profile over time of a car, you store the speed values in the Stream or ValueStream
The way Stream and ValueStream differ is that ValueStream works 'automatically' by setting a property to Logged, whereas for a Stream you fully define what you store and you have to have an event (usually datachange) to trigger a service that stores the information.
So a ValueStream can log upon valuechange automatically let's say speed that changes over time and miles traveled over time.
then what you might do is that based on proximity you might create a Stream (not valuestream) entry that says, at this time, the car was close to this city speed was ... miles travelled was ...
More info: