Hi all,
While running the YawCompensationExample that ships with oreczml I noticed something odd: no matter how many FieldOfObservation objects I add to the final List<FieldOfObservation> fobs, the generated .czml file only contains the FOV for the first entry.
Code I’m using:
fobs.add(fieldOfObservation1);
fobs.add(fieldOfObservation2);
fobs.add(fieldOfObservation3);
When I open the resulting CZML in Cesium, only fieldOfObservation1 is shown.
If I reduce the list to two items:
fobs.add(fieldOfObservation2);
fobs.add(fieldOfObservation3);
again only the first one appears. I checked the output.czml by notepad, extrally there are only 12 Polyline (for only one FOV).
Has anyone else run into this? Is there an internal limit that keeps only the first FOV, or am I missing a configuration step?
Thanks in advance for any pointers!
