CoverageLatLonBoxCollection#

class ansys.stk.core.stkobjects.CoverageLatLonBoxCollection#

Collection of latitude/longitude boxes of interest.

Overview#

item

Given an index, returns an element in the collection.

add

Add a new box centered on a Place, Facility, or Target object, defined by latitude and longitude spans.

remove_at

Remove an element from the collection using specified index.

remove_all

Remove all elements from the collection.

count

Return the number of elements in a collection.

_new_enum

Return an enumerator that can iterate through the collection.

Import detail#

from ansys.stk.core.stkobjects import CoverageLatLonBoxCollection

Property detail#

property CoverageLatLonBoxCollection.count: int#

Return the number of elements in a collection.

property CoverageLatLonBoxCollection._new_enum: EnumeratorProxy#

Return an enumerator that can iterate through the collection.

Method detail#

CoverageLatLonBoxCollection.item(self, index: int) CoverageLatLonBox#

Given an index, returns an element in the collection.

Parameters:

index : int

Returns:

CoverageLatLonBox

CoverageLatLonBoxCollection.add(self, center_object_name: str) CoverageLatLonBox#

Add a new box centered on a Place, Facility, or Target object, defined by latitude and longitude spans.

Parameters:

center_object_name : str

Returns:

CoverageLatLonBox

CoverageLatLonBoxCollection.remove_at(self, index: int) None#

Remove an element from the collection using specified index.

Parameters:

index : int

Returns:

None

CoverageLatLonBoxCollection.remove_all(self) None#

Remove all elements from the collection.

Returns:

None