new DataSource
Defines the interface for data sources, which turn arbitrary data into a DynamicObjectCollection for generic consumption. This object is an interface for documentation purposes and is not intended to be instantiated directly.
See:
Source:
Members
-
changedEvent :Event
-
Gets an event that will be raised when the underlying data changes.
-
clock :DynamicClock
-
Gets the preferred clock settings for this data source.
-
dynamicObjects :DynamicObjectCollection
-
Gets the collection of DynamicObject instances.
-
errorEvent :Event
-
Gets an event that will be raised if an error is encountered during processing.
-
isLoading :Boolean
-
Gets a value indicating if the data source is currently loading data.
-
loadingEvent :Event
-
Gets an event that will be raised when the value of isLoading changes.
-
name :String
-
Gets a human-readable name for this instance.
Methods
-
update
-
Updates the data source to the provided time. This function is optional and is not required to be implemented. It is provided for data sources which retrieve data based on the current animation time or scene state. If implemented, update will be called by DataSourceDisplay once a frame.
Parameters:
Name Type Description time
JulianDate The simulation time. Returns:
Boolean True if this data source is ready to be displayed at the provided time, false otherwise.