MTOTrackCollection#
- class ansys.stk.core.stkobjects.MTOTrackCollection#
MTO Track List.
Overview#
Given an index, returns an element in the collection. |
|
Remove an element from the collection using a specified index. |
|
Remove all elements from the collection. |
|
Add a new element to the collection. |
|
Add a new track with the specified point data. |
|
Load Track Command File. |
|
Given a track id, returns an element in the collection. |
|
Remove an element from the collection using a specified track. |
|
Remove an element from the collection using a specified id. |
|
Add and returns the desired number of new tracks starting with the desired id. |
|
Remove the provided tracks. |
|
Remove tracks based on the provided Ids. |
|
Add new track with the specified position data. |
|
Extend tracks with the specified position data. |
|
Set VGT Data System to MTO tracks. |
|
Remove VGT Data System from MTO tracks. |
Import detail#
from ansys.stk.core.stkobjects import MTOTrackCollection
Property detail#
- property MTOTrackCollection._new_enum: EnumeratorProxy#
Return an enumerator that can iterate through the collection.
Method detail#
- MTOTrackCollection.item(self, index: int) MTOTrack #
Given an index, returns an element in the collection.
- Parameters:
index :
int
- Returns:
MTOTrack
- MTOTrackCollection.remove_at(self, index: int) None #
Remove an element from the collection using a specified index.
- MTOTrackCollection.add(self, track_id: int) MTOTrack #
Add a new element to the collection.
- Parameters:
track_id :
int
- Returns:
MTOTrack
- MTOTrackCollection.add_track(self, track_id: int, time_vals: list, lat_vals: list, lon_vals: list, alt_vals: list) MTOTrack #
Add a new track with the specified point data.
- MTOTrackCollection.get_track_from_identifier(self, track_id: int) MTOTrack #
Given a track id, returns an element in the collection.
- Parameters:
track_id :
int
- Returns:
MTOTrack
- MTOTrackCollection.remove(self, track: MTOTrack) None #
Remove an element from the collection using a specified track.
- Parameters:
track :
MTOTrack
- Returns:
- MTOTrackCollection.remove_by_identifier(self, track_id: int) None #
Remove an element from the collection using a specified id.
- MTOTrackCollection.add_tracks(self, starting_track_id: int, numberof_tracks: int) list #
Add and returns the desired number of new tracks starting with the desired id.
- MTOTrackCollection.remove_tracks_by_identifier(self, track_ids: list) None #
Remove tracks based on the provided Ids.
- MTOTrackCollection.add_tracks_with_position_data(self, track_ids_array: list, num_pts_per_track_array: list, datatype: MTOInputDataType, times_array: list, x_or_lats_array: list, y_or_lons_array: list, z_or_alts_array: list) None #
Add new track with the specified position data.
- MTOTrackCollection.extend_tracks_with_position_data(self, track_ids_array: list, num_pts_per_track_array: list, datatype: MTOInputDataType, times_array: list, x_or_lats_array: list, y_or_lons_array: list, z_or_alts_array: list) None #
Extend tracks with the specified position data.