Unfortunately no, that is not what I am looking for. Let me try to express myself in another way. In the below code snipped, I’ve created imagerFOV2
with the second constructor included in PolygonalFieldOfView, which works perfectly well. As you can see, I tried to access to the zone of imagerFOV2
, just to use it in the first constructor given in PolygonalFieldOfView, which also works perfectly well.
imagerFOV2 = PolygonalFieldOfView(Vector3D.PLUS_K,
PolygonalFieldOfView.DefiningConeType.OUTSIDE_CONE_TOUCHING_POLYGON_AT_VERTICES,
Vector3D.PLUS_I,radians(3.0), 6, 0.0)
imagerFOV1 = PolygonalFieldOfView(imagerFOV2.getZone(), fov_margin)
Now, what I want to do is, using the aforementioned first constructor I would like to define the zone as geodetic points (lat/long/alt) if possible. If not, how can I define this zone? Is there any example in your possession?
Thanks!
Baris