public void update(Observable obs, Object objEvt)
{
if (! (objEvt instanceof GfrEvtMdlIdDatChangedGeometry))
return;
GfrEvtMdlIdDatChangedGeometry evt = (GfrEvtMdlIdDatChangedGeometry) objEvt;
String strId = evt.getId();
if (strId.compareTo(this._strIdTlo_) != 0)
return;
ArrayList<Point2D.Double> lstP2d = (ArrayList<Point2D.Double>) evt.getGeometry();
List<Position> lstPosition = new ArrayList<Position>();
for (Point2D.Double p2dCur: lstP2d)
{
Position posCur = Position.fromDegrees(p2dCur.y, p2dCur.x);