map.xml 358 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573
  1. <PropertyList>
  2. <path>map.ac</path>
  3. <!-- Radar -->
  4. <animation>
  5. <type>material</type>
  6. <object-name>nav</object-name>
  7. <object-name>div</object-name>
  8. <object-name>rect</object-name>
  9. <emission>
  10. <red>1</red>
  11. <green>1</green>
  12. <blue>1</blue>
  13. <factor>0.8</factor>
  14. </emission>
  15. </animation>
  16. <animation>
  17. <type>material</type>
  18. <object-name>20</object-name>
  19. <object-name>40</object-name>
  20. <object-name>+</object-name>
  21. <object-name>-</object-name>
  22. <object-name>multi0</object-name>
  23. <object-name>multi1</object-name>
  24. <object-name>multi2</object-name>
  25. <object-name>multi3</object-name>
  26. <object-name>multi4</object-name>
  27. <object-name>multi5</object-name>
  28. <object-name>multi6</object-name>
  29. <object-name>multi7</object-name>
  30. <object-name>multi8</object-name>
  31. <object-name>multi9</object-name>
  32. <object-name>ai0</object-name>
  33. <object-name>ai1</object-name>
  34. <object-name>ai2</object-name>
  35. <object-name>ai3</object-name>
  36. <object-name>ai4</object-name>
  37. <object-name>ai5</object-name>
  38. <object-name>ai6</object-name>
  39. <object-name>ai7</object-name>
  40. <object-name>ai8</object-name>
  41. <object-name>ai9</object-name>
  42. <emission>
  43. <red>1</red>
  44. <green>1</green>
  45. <blue>1</blue>
  46. <factor>1</factor>
  47. </emission>
  48. </animation>
  49. <animation>
  50. <type>rotate</type>
  51. <object-name>nav</object-name>
  52. <property>orientation/heading-deg</property>
  53. <center>
  54. <x-m>0</x-m>
  55. <y-m>0</y-m>
  56. <z-m>0</z-m>
  57. </center>
  58. <axis>
  59. <x>1</x>
  60. <y>0</y>
  61. <z>0</z>
  62. </axis>
  63. </animation>
  64. <!-- radar range -->
  65. <animation>
  66. <type>select</type>
  67. <object-name>20</object-name>
  68. <condition>
  69. <equals>
  70. <property>instrumentation/radar[0]/range</property>
  71. <value>20</value>
  72. </equals>
  73. </condition>
  74. </animation>
  75. <animation>
  76. <type>select</type>
  77. <object-name>40</object-name>
  78. <condition>
  79. <equals>
  80. <property>instrumentation/radar[0]/range</property>
  81. <value>40</value>
  82. </equals>
  83. </condition>
  84. </animation>
  85. <!-- radar dots -->
  86. <animation>
  87. <type>select</type>
  88. <object-name>ai0</object-name>
  89. <condition>
  90. <equals>
  91. <property>instrumentation/radar/ai/models/aircraft[0]/radar/in-range</property>
  92. <value>1</value>
  93. </equals>
  94. </condition>
  95. </animation>
  96. <animation>
  97. <type>translate</type>
  98. <object-name>ai0</object-name>
  99. <property>instrumentation/radar/ai/models/aircraft[0]/radar/y-shift</property>
  100. <axis>
  101. <x>0</x>
  102. <y>0</y>
  103. <z>1</z>
  104. </axis>
  105. </animation>
  106. <animation>
  107. <type>translate</type>
  108. <object-name>ai0</object-name>
  109. <property>instrumentation/radar/ai/models/aircraft[0]/radar/x-shift</property>
  110. <axis>
  111. <x>0</x>
  112. <y>1</y>
  113. <z>0</z>
  114. </axis>
  115. </animation>
  116. <animation>
  117. <type>select</type>
  118. <object-name>ai1</object-name>
  119. <condition>
  120. <equals>
  121. <property>instrumentation/radar/ai/models/aircraft[1]/radar/in-range</property>
  122. <value>1</value>
  123. </equals>
  124. </condition>
  125. </animation>
  126. <animation>
  127. <type>translate</type>
  128. <object-name>ai1</object-name>
  129. <property>instrumentation/radar/ai/models/aircraft[1]/radar/y-shift</property>
  130. <axis>
  131. <x>0</x>
  132. <y>0</y>
  133. <z>1</z>
  134. </axis>
  135. </animation>
  136. <animation>
  137. <type>translate</type>
  138. <object-name>ai1</object-name>
  139. <property>instrumentation/radar/ai/models/aircraft[1]/radar/x-shift</property>
  140. <axis>
  141. <x>0</x>
  142. <y>1</y>
  143. <z>0</z>
  144. </axis>
  145. </animation>
  146. <animation>
  147. <type>select</type>
  148. <object-name>ai2</object-name>
  149. <condition>
  150. <equals>
  151. <property>instrumentation/radar/ai/models/aircraft[2]/radar/in-range</property>
  152. <value>1</value>
  153. </equals>
  154. </condition>
  155. </animation>
  156. <animation>
  157. <type>translate</type>
  158. <object-name>ai2</object-name>
  159. <property>instrumentation/radar/ai/models/aircraft[2]/radar/y-shift</property>
  160. <axis>
  161. <x>0</x>
  162. <y>0</y>
  163. <z>1</z>
  164. </axis>
  165. </animation>
  166. <animation>
  167. <type>translate</type>
  168. <object-name>ai2</object-name>
  169. <property>instrumentation/radar/ai/models/aircraft[2]/radar/x-shift</property>
  170. <axis>
  171. <x>0</x>
  172. <y>1</y>
  173. <z>0</z>
  174. </axis>
  175. </animation>
  176. <animation>
  177. <type>select</type>
  178. <object-name>ai3</object-name>
  179. <condition>
  180. <equals>
  181. <property>instrumentation/radar/ai/models/aircraft[3]/radar/in-range</property>
  182. <value>1</value>
  183. </equals>
  184. </condition>
  185. </animation>
  186. <animation>
  187. <type>translate</type>
  188. <object-name>ai3</object-name>
  189. <property>instrumentation/radar/ai/models/aircraft[3]/radar/y-shift</property>
  190. <axis>
  191. <x>0</x>
  192. <y>0</y>
  193. <z>1</z>
  194. </axis>
  195. </animation>
  196. <animation>
  197. <type>translate</type>
  198. <object-name>ai3</object-name>
  199. <property>instrumentation/radar/ai/models/aircraft[3]/radar/x-shift</property>
  200. <axis>
  201. <x>0</x>
  202. <y>1</y>
  203. <z>0</z>
  204. </axis>
  205. </animation>
  206. <animation>
  207. <type>select</type>
  208. <object-name>ai4</object-name>
  209. <condition>
  210. <equals>
  211. <property>instrumentation/radar/ai/models/aircraft[4]/radar/in-range</property>
  212. <value>1</value>
  213. </equals>
  214. </condition>
  215. </animation>
  216. <animation>
  217. <type>translate</type>
  218. <object-name>ai4</object-name>
  219. <property>instrumentation/radar/ai/models/aircraft[4]/radar/y-shift</property>
  220. <axis>
  221. <x>0</x>
  222. <y>0</y>
  223. <z>1</z>
  224. </axis>
  225. </animation>
  226. <animation>
  227. <type>translate</type>
  228. <object-name>ai4</object-name>
  229. <property>instrumentation/radar/ai/models/aircraft[4]/radar/x-shift</property>
  230. <axis>
  231. <x>0</x>
  232. <y>1</y>
  233. <z>0</z>
  234. </axis>
  235. </animation>
  236. <animation>
  237. <type>select</type>
  238. <object-name>ai5</object-name>
  239. <condition>
  240. <equals>
  241. <property>instrumentation/radar/ai/models/aircraft[5]/radar/in-range</property>
  242. <value>1</value>
  243. </equals>
  244. </condition>
  245. </animation>
  246. <animation>
  247. <type>translate</type>
  248. <object-name>ai5</object-name>
  249. <property>instrumentation/radar/ai/models/aircraft[5]/radar/y-shift</property>
  250. <axis>
  251. <x>0</x>
  252. <y>0</y>
  253. <z>1</z>
  254. </axis>
  255. </animation>
  256. <animation>
  257. <type>translate</type>
  258. <object-name>ai5</object-name>
  259. <property>instrumentation/radar/ai/models/aircraft[5]/radar/x-shift</property>
  260. <axis>
  261. <x>0</x>
  262. <y>1</y>
  263. <z>0</z>
  264. </axis>
  265. </animation>
  266. <animation>
  267. <type>select</type>
  268. <object-name>ai6</object-name>
  269. <condition>
  270. <equals>
  271. <property>instrumentation/radar/ai/models/aircraft[6]/radar/in-range</property>
  272. <value>1</value>
  273. </equals>
  274. </condition>
  275. </animation>
  276. <animation>
  277. <type>translate</type>
  278. <object-name>ai6</object-name>
  279. <property>instrumentation/radar/ai/models/aircraft[6]/radar/y-shift</property>
  280. <axis>
  281. <x>0</x>
  282. <y>0</y>
  283. <z>1</z>
  284. </axis>
  285. </animation>
  286. <animation>
  287. <type>translate</type>
  288. <object-name>ai6</object-name>
  289. <property>instrumentation/radar/ai/models/aircraft[6]/radar/x-shift</property>
  290. <axis>
  291. <x>0</x>
  292. <y>1</y>
  293. <z>0</z>
  294. </axis>
  295. </animation>
  296. <animation>
  297. <type>select</type>
  298. <object-name>ai7</object-name>
  299. <condition>
  300. <equals>
  301. <property>instrumentation/radar/ai/models/aircraft[7]/radar/in-range</property>
  302. <value>1</value>
  303. </equals>
  304. </condition>
  305. </animation>
  306. <animation>
  307. <type>translate</type>
  308. <object-name>ai7</object-name>
  309. <property>instrumentation/radar/ai/models/aircraft[7]/radar/y-shift</property>
  310. <axis>
  311. <x>0</x>
  312. <y>0</y>
  313. <z>1</z>
  314. </axis>
  315. </animation>
  316. <animation>
  317. <type>translate</type>
  318. <object-name>ai7</object-name>
  319. <property>instrumentation/radar/ai/models/aircraft[7]/radar/x-shift</property>
  320. <axis>
  321. <x>0</x>
  322. <y>1</y>
  323. <z>0</z>
  324. </axis>
  325. </animation>
  326. <animation>
  327. <type>select</type>
  328. <object-name>ai8</object-name>
  329. <condition>
  330. <equals>
  331. <property>instrumentation/radar/ai/models/aircraft[8]/radar/in-range</property>
  332. <value>1</value>
  333. </equals>
  334. </condition>
  335. </animation>
  336. <animation>
  337. <type>translate</type>
  338. <object-name>ai8</object-name>
  339. <property>instrumentation/radar/ai/models/aircraft[8]/radar/y-shift</property>
  340. <axis>
  341. <x>0</x>
  342. <y>0</y>
  343. <z>1</z>
  344. </axis>
  345. </animation>
  346. <animation>
  347. <type>translate</type>
  348. <object-name>ai8</object-name>
  349. <property>instrumentation/radar/ai/models/aircraft[8]/radar/x-shift</property>
  350. <axis>
  351. <x>0</x>
  352. <y>1</y>
  353. <z>0</z>
  354. </axis>
  355. </animation>
  356. <animation>
  357. <type>select</type>
  358. <object-name>ai9</object-name>
  359. <condition>
  360. <equals>
  361. <property>instrumentation/radar/ai/models/aircraft[9]/radar/in-range</property>
  362. <value>1</value>
  363. </equals>
  364. </condition>
  365. </animation>
  366. <animation>
  367. <type>translate</type>
  368. <object-name>ai9</object-name>
  369. <property>instrumentation/radar/ai/models/aircraft[9]/radar/y-shift</property>
  370. <axis>
  371. <x>0</x>
  372. <y>0</y>
  373. <z>1</z>
  374. </axis>
  375. </animation>
  376. <animation>
  377. <type>translate</type>
  378. <object-name>ai9</object-name>
  379. <property>instrumentation/radar/ai/models/aircraft[9]/radar/x-shift</property>
  380. <axis>
  381. <x>0</x>
  382. <y>1</y>
  383. <z>0</z>
  384. </axis>
  385. </animation>
  386. <animation>
  387. <type>select</type>
  388. <object-name>multi0</object-name>
  389. <condition>
  390. <equals>
  391. <property>instrumentation/radar/ai/models/multiplayer[0]/radar/in-range</property>
  392. <value>1</value>
  393. </equals>
  394. </condition>
  395. </animation>
  396. <animation>
  397. <type>translate</type>
  398. <object-name>multi0</object-name>
  399. <property>instrumentation/radar/ai/models/multiplayer[0]/radar/y-shift</property>
  400. <axis>
  401. <x>0</x>
  402. <y>0</y>
  403. <z>1</z>
  404. </axis>
  405. </animation>
  406. <animation>
  407. <type>translate</type>
  408. <object-name>multi0</object-name>
  409. <property>instrumentation/radar/ai/models/multiplayer[0]/radar/x-shift</property>
  410. <axis>
  411. <x>0</x>
  412. <y>1</y>
  413. <z>0</z>
  414. </axis>
  415. </animation>
  416. <animation>
  417. <type>select</type>
  418. <object-name>multi1</object-name>
  419. <condition>
  420. <equals>
  421. <property>instrumentation/radar/ai/models/multiplayer[1]/radar/in-range</property>
  422. <value>1</value>
  423. </equals>
  424. </condition>
  425. </animation>
  426. <animation>
  427. <type>translate</type>
  428. <object-name>multi1</object-name>
  429. <property>instrumentation/radar/ai/models/multiplayer[1]/radar/y-shift</property>
  430. <axis>
  431. <x>0</x>
  432. <y>0</y>
  433. <z>1</z>
  434. </axis>
  435. </animation>
  436. <animation>
  437. <type>translate</type>
  438. <object-name>multi1</object-name>
  439. <property>instrumentation/radar/ai/models/multiplayer[1]/radar/x-shift</property>
  440. <axis>
  441. <x>0</x>
  442. <y>1</y>
  443. <z>0</z>
  444. </axis>
  445. </animation>
  446. <animation>
  447. <type>select</type>
  448. <object-name>multi2</object-name>
  449. <condition>
  450. <equals>
  451. <property>instrumentation/radar/ai/models/multiplayer[2]/radar/in-range</property>
  452. <value>1</value>
  453. </equals>
  454. </condition>
  455. </animation>
  456. <animation>
  457. <type>translate</type>
  458. <object-name>multi2</object-name>
  459. <property>instrumentation/radar/ai/models/multiplayer[2]/radar/y-shift</property>
  460. <axis>
  461. <x>0</x>
  462. <y>0</y>
  463. <z>1</z>
  464. </axis>
  465. </animation>
  466. <animation>
  467. <type>translate</type>
  468. <object-name>multi2</object-name>
  469. <property>instrumentation/radar/ai/models/multiplayer[2]/radar/x-shift</property>
  470. <axis>
  471. <x>0</x>
  472. <y>1</y>
  473. <z>0</z>
  474. </axis>
  475. </animation>
  476. <animation>
  477. <type>select</type>
  478. <object-name>multi3</object-name>
  479. <condition>
  480. <equals>
  481. <property>instrumentation/radar/ai/models/multiplayer[3]/radar/in-range</property>
  482. <value>1</value>
  483. </equals>
  484. </condition>
  485. </animation>
  486. <animation>
  487. <type>translate</type>
  488. <object-name>multi3</object-name>
  489. <property>instrumentation/radar/ai/models/multiplayer[3]/radar/y-shift</property>
  490. <axis>
  491. <x>0</x>
  492. <y>0</y>
  493. <z>1</z>
  494. </axis>
  495. </animation>
  496. <animation>
  497. <type>translate</type>
  498. <object-name>multi3</object-name>
  499. <property>instrumentation/radar/ai/models/multiplayer[3]/radar/x-shift</property>
  500. <axis>
  501. <x>0</x>
  502. <y>1</y>
  503. <z>0</z>
  504. </axis>
  505. </animation>
  506. <animation>
  507. <type>select</type>
  508. <object-name>multi4</object-name>
  509. <condition>
  510. <equals>
  511. <property>instrumentation/radar/ai/models/multiplayer[4]/radar/in-range</property>
  512. <value>1</value>
  513. </equals>
  514. </condition>
  515. </animation>
  516. <animation>
  517. <type>translate</type>
  518. <object-name>multi4</object-name>
  519. <property>instrumentation/radar/ai/models/multiplayer[4]/radar/y-shift</property>
  520. <axis>
  521. <x>0</x>
  522. <y>0</y>
  523. <z>1</z>
  524. </axis>
  525. </animation>
  526. <animation>
  527. <type>translate</type>
  528. <object-name>multi4</object-name>
  529. <property>instrumentation/radar/ai/models/multiplayer[4]/radar/x-shift</property>
  530. <axis>
  531. <x>0</x>
  532. <y>1</y>
  533. <z>0</z>
  534. </axis>
  535. </animation>
  536. <animation>
  537. <type>select</type>
  538. <object-name>multi5</object-name>
  539. <condition>
  540. <equals>
  541. <property>instrumentation/radar/ai/models/multiplayer[5]/radar/in-range</property>
  542. <value>1</value>
  543. </equals>
  544. </condition>
  545. </animation>
  546. <animation>
  547. <type>translate</type>
  548. <object-name>multi5</object-name>
  549. <property>instrumentation/radar/ai/models/multiplayer[5]/radar/y-shift</property>
  550. <axis>
  551. <x>0</x>
  552. <y>0</y>
  553. <z>1</z>
  554. </axis>
  555. </animation>
  556. <animation>
  557. <type>translate</type>
  558. <object-name>multi5</object-name>
  559. <property>instrumentation/radar/ai/models/multiplayer[5]/radar/x-shift</property>
  560. <axis>
  561. <x>0</x>
  562. <y>1</y>
  563. <z>0</z>
  564. </axis>
  565. </animation>
  566. <animation>
  567. <type>select</type>
  568. <object-name>multi6</object-name>
  569. <condition>
  570. <equals>
  571. <property>instrumentation/radar/ai/models/multiplayer[6]/radar/in-range</property>
  572. <value>1</value>
  573. </equals>
  574. </condition>
  575. </animation>
  576. <animation>
  577. <type>translate</type>
  578. <object-name>multi6</object-name>
  579. <property>instrumentation/radar/ai/models/multiplayer[6]/radar/y-shift</property>
  580. <axis>
  581. <x>0</x>
  582. <y>0</y>
  583. <z>1</z>
  584. </axis>
  585. </animation>
  586. <animation>
  587. <type>translate</type>
  588. <object-name>multi6</object-name>
  589. <property>instrumentation/radar/ai/models/multiplayer[6]/radar/x-shift</property>
  590. <axis>
  591. <x>0</x>
  592. <y>1</y>
  593. <z>0</z>
  594. </axis>
  595. </animation>
  596. <animation>
  597. <type>select</type>
  598. <object-name>multi7</object-name>
  599. <condition>
  600. <equals>
  601. <property>instrumentation/radar/ai/models/multiplayer[7]/radar/in-range</property>
  602. <value>1</value>
  603. </equals>
  604. </condition>
  605. </animation>
  606. <animation>
  607. <type>translate</type>
  608. <object-name>multi7</object-name>
  609. <property>instrumentation/radar/ai/models/multiplayer[7]/radar/y-shift</property>
  610. <axis>
  611. <x>0</x>
  612. <y>0</y>
  613. <z>1</z>
  614. </axis>
  615. </animation>
  616. <animation>
  617. <type>translate</type>
  618. <object-name>multi7</object-name>
  619. <property>instrumentation/radar/ai/models/multiplayer[7]/radar/x-shift</property>
  620. <axis>
  621. <x>0</x>
  622. <y>1</y>
  623. <z>0</z>
  624. </axis>
  625. </animation>
  626. <animation>
  627. <type>select</type>
  628. <object-name>multi8</object-name>
  629. <condition>
  630. <equals>
  631. <property>instrumentation/radar/ai/models/multiplayer[8]/radar/in-range</property>
  632. <value>1</value>
  633. </equals>
  634. </condition>
  635. </animation>
  636. <animation>
  637. <type>translate</type>
  638. <object-name>multi8</object-name>
  639. <property>instrumentation/radar/ai/models/multiplayer[8]/radar/y-shift</property>
  640. <axis>
  641. <x>0</x>
  642. <y>0</y>
  643. <z>1</z>
  644. </axis>
  645. </animation>
  646. <animation>
  647. <type>translate</type>
  648. <object-name>multi8</object-name>
  649. <property>instrumentation/radar/ai/models/multiplayer[8]/radar/x-shift</property>
  650. <axis>
  651. <x>0</x>
  652. <y>1</y>
  653. <z>0</z>
  654. </axis>
  655. </animation>
  656. <animation>
  657. <type>select</type>
  658. <object-name>multi9</object-name>
  659. <condition>
  660. <equals>
  661. <property>instrumentation/radar/ai/models/multiplayer[9]/radar/in-range</property>
  662. <value>1</value>
  663. </equals>
  664. </condition>
  665. </animation>
  666. <animation>
  667. <type>translate</type>
  668. <object-name>multi9</object-name>
  669. <property>instrumentation/radar/ai/models/multiplayer[9]/radar/y-shift</property>
  670. <axis>
  671. <x>0</x>
  672. <y>0</y>
  673. <z>1</z>
  674. </axis>
  675. </animation>
  676. <animation>
  677. <type>translate</type>
  678. <object-name>multi9</object-name>
  679. <property>instrumentation/radar/ai/models/multiplayer[9]/radar/x-shift</property>
  680. <axis>
  681. <x>0</x>
  682. <y>1</y>
  683. <z>0</z>
  684. </axis>
  685. </animation>
  686. <!-- Terrain map -->
  687. <animation n="1">
  688. <type type="string">textranslate</type>
  689. <object-name type="string">Plane.001</object-name>
  690. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[1]/elevation-ft</property>
  691. <factor type="double">5.5556e-05</factor>
  692. <axis>
  693. <x type="double">1</x>
  694. </axis>
  695. </animation>
  696. <animation n="2">
  697. <type type="string">textranslate</type>
  698. <object-name type="string">Plane.002</object-name>
  699. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[2]/elevation-ft</property>
  700. <factor type="double">5.5556e-05</factor>
  701. <axis>
  702. <x type="double">1</x>
  703. </axis>
  704. </animation>
  705. <animation n="3">
  706. <type type="string">textranslate</type>
  707. <object-name type="string">Plane.003</object-name>
  708. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[3]/elevation-ft</property>
  709. <factor type="double">5.5556e-05</factor>
  710. <axis>
  711. <x type="double">1</x>
  712. </axis>
  713. </animation>
  714. <animation n="4">
  715. <type type="string">textranslate</type>
  716. <object-name type="string">Plane.004</object-name>
  717. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[4]/elevation-ft</property>
  718. <factor type="double">5.5556e-05</factor>
  719. <axis>
  720. <x type="double">1</x>
  721. </axis>
  722. </animation>
  723. <animation n="5">
  724. <type type="string">textranslate</type>
  725. <object-name type="string">Plane.005</object-name>
  726. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[5]/elevation-ft</property>
  727. <factor type="double">5.5556e-05</factor>
  728. <axis>
  729. <x type="double">1</x>
  730. </axis>
  731. </animation>
  732. <animation n="6">
  733. <type type="string">textranslate</type>
  734. <object-name type="string">Plane.006</object-name>
  735. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[6]/elevation-ft</property>
  736. <factor type="double">5.5556e-05</factor>
  737. <axis>
  738. <x type="double">1</x>
  739. </axis>
  740. </animation>
  741. <animation n="7">
  742. <type type="string">textranslate</type>
  743. <object-name type="string">Plane.007</object-name>
  744. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[7]/elevation-ft</property>
  745. <factor type="double">5.5556e-05</factor>
  746. <axis>
  747. <x type="double">1</x>
  748. </axis>
  749. </animation>
  750. <animation n="8">
  751. <type type="string">textranslate</type>
  752. <object-name type="string">Plane.008</object-name>
  753. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[8]/elevation-ft</property>
  754. <factor type="double">5.5556e-05</factor>
  755. <axis>
  756. <x type="double">1</x>
  757. </axis>
  758. </animation>
  759. <animation n="9">
  760. <type type="string">textranslate</type>
  761. <object-name type="string">Plane.009</object-name>
  762. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[9]/elevation-ft</property>
  763. <factor type="double">5.5556e-05</factor>
  764. <axis>
  765. <x type="double">1</x>
  766. </axis>
  767. </animation>
  768. <animation n="10">
  769. <type type="string">textranslate</type>
  770. <object-name type="string">Plane.010</object-name>
  771. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[10]/elevation-ft</property>
  772. <factor type="double">5.5556e-05</factor>
  773. <axis>
  774. <x type="double">1</x>
  775. </axis>
  776. </animation>
  777. <animation n="11">
  778. <type type="string">textranslate</type>
  779. <object-name type="string">Plane.011</object-name>
  780. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[11]/elevation-ft</property>
  781. <factor type="double">5.5556e-05</factor>
  782. <axis>
  783. <x type="double">1</x>
  784. </axis>
  785. </animation>
  786. <animation n="12">
  787. <type type="string">textranslate</type>
  788. <object-name type="string">Plane.012</object-name>
  789. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[12]/elevation-ft</property>
  790. <factor type="double">5.5556e-05</factor>
  791. <axis>
  792. <x type="double">1</x>
  793. </axis>
  794. </animation>
  795. <animation n="13">
  796. <type type="string">textranslate</type>
  797. <object-name type="string">Plane.013</object-name>
  798. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[13]/elevation-ft</property>
  799. <factor type="double">5.5556e-05</factor>
  800. <axis>
  801. <x type="double">1</x>
  802. </axis>
  803. </animation>
  804. <animation n="14">
  805. <type type="string">textranslate</type>
  806. <object-name type="string">Plane.014</object-name>
  807. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[14]/elevation-ft</property>
  808. <factor type="double">5.5556e-05</factor>
  809. <axis>
  810. <x type="double">1</x>
  811. </axis>
  812. </animation>
  813. <animation n="15">
  814. <type type="string">textranslate</type>
  815. <object-name type="string">Plane.015</object-name>
  816. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[15]/elevation-ft</property>
  817. <factor type="double">5.5556e-05</factor>
  818. <axis>
  819. <x type="double">1</x>
  820. </axis>
  821. </animation>
  822. <animation n="16">
  823. <type type="string">textranslate</type>
  824. <object-name type="string">Plane.016</object-name>
  825. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[16]/elevation-ft</property>
  826. <factor type="double">5.5556e-05</factor>
  827. <axis>
  828. <x type="double">1</x>
  829. </axis>
  830. </animation>
  831. <animation n="17">
  832. <type type="string">textranslate</type>
  833. <object-name type="string">Plane.017</object-name>
  834. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[17]/elevation-ft</property>
  835. <factor type="double">5.5556e-05</factor>
  836. <axis>
  837. <x type="double">1</x>
  838. </axis>
  839. </animation>
  840. <animation n="18">
  841. <type type="string">textranslate</type>
  842. <object-name type="string">Plane.018</object-name>
  843. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[18]/elevation-ft</property>
  844. <factor type="double">5.5556e-05</factor>
  845. <axis>
  846. <x type="double">1</x>
  847. </axis>
  848. </animation>
  849. <animation n="19">
  850. <type type="string">textranslate</type>
  851. <object-name type="string">Plane.019</object-name>
  852. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[19]/elevation-ft</property>
  853. <factor type="double">5.5556e-05</factor>
  854. <axis>
  855. <x type="double">1</x>
  856. </axis>
  857. </animation>
  858. <animation n="20">
  859. <type type="string">textranslate</type>
  860. <object-name type="string">Plane.020</object-name>
  861. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[20]/elevation-ft</property>
  862. <factor type="double">5.5556e-05</factor>
  863. <axis>
  864. <x type="double">1</x>
  865. </axis>
  866. </animation>
  867. <animation n="21">
  868. <type type="string">textranslate</type>
  869. <object-name type="string">Plane.021</object-name>
  870. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[21]/elevation-ft</property>
  871. <factor type="double">5.5556e-05</factor>
  872. <axis>
  873. <x type="double">1</x>
  874. </axis>
  875. </animation>
  876. <animation n="22">
  877. <type type="string">textranslate</type>
  878. <object-name type="string">Plane.022</object-name>
  879. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[22]/elevation-ft</property>
  880. <factor type="double">5.5556e-05</factor>
  881. <axis>
  882. <x type="double">1</x>
  883. </axis>
  884. </animation>
  885. <animation n="23">
  886. <type type="string">textranslate</type>
  887. <object-name type="string">Plane.023</object-name>
  888. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[23]/elevation-ft</property>
  889. <factor type="double">5.5556e-05</factor>
  890. <axis>
  891. <x type="double">1</x>
  892. </axis>
  893. </animation>
  894. <animation n="24">
  895. <type type="string">textranslate</type>
  896. <object-name type="string">Plane.024</object-name>
  897. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[24]/elevation-ft</property>
  898. <factor type="double">5.5556e-05</factor>
  899. <axis>
  900. <x type="double">1</x>
  901. </axis>
  902. </animation>
  903. <animation n="25">
  904. <type type="string">textranslate</type>
  905. <object-name type="string">Plane.025</object-name>
  906. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[25]/elevation-ft</property>
  907. <factor type="double">5.5556e-05</factor>
  908. <axis>
  909. <x type="double">1</x>
  910. </axis>
  911. </animation>
  912. <animation n="26">
  913. <type type="string">textranslate</type>
  914. <object-name type="string">Plane.026</object-name>
  915. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[26]/elevation-ft</property>
  916. <factor type="double">5.5556e-05</factor>
  917. <axis>
  918. <x type="double">1</x>
  919. </axis>
  920. </animation>
  921. <animation n="27">
  922. <type type="string">textranslate</type>
  923. <object-name type="string">Plane.027</object-name>
  924. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[27]/elevation-ft</property>
  925. <factor type="double">5.5556e-05</factor>
  926. <axis>
  927. <x type="double">1</x>
  928. </axis>
  929. </animation>
  930. <animation n="28">
  931. <type type="string">textranslate</type>
  932. <object-name type="string">Plane.028</object-name>
  933. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[28]/elevation-ft</property>
  934. <factor type="double">5.5556e-05</factor>
  935. <axis>
  936. <x type="double">1</x>
  937. </axis>
  938. </animation>
  939. <animation n="29">
  940. <type type="string">textranslate</type>
  941. <object-name type="string">Plane.029</object-name>
  942. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[29]/elevation-ft</property>
  943. <factor type="double">5.5556e-05</factor>
  944. <axis>
  945. <x type="double">1</x>
  946. </axis>
  947. </animation>
  948. <animation n="30">
  949. <type type="string">textranslate</type>
  950. <object-name type="string">Plane.030</object-name>
  951. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[30]/elevation-ft</property>
  952. <factor type="double">5.5556e-05</factor>
  953. <axis>
  954. <x type="double">1</x>
  955. </axis>
  956. </animation>
  957. <animation n="31">
  958. <type type="string">textranslate</type>
  959. <object-name type="string">Plane.031</object-name>
  960. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[31]/elevation-ft</property>
  961. <factor type="double">5.5556e-05</factor>
  962. <axis>
  963. <x type="double">1</x>
  964. </axis>
  965. </animation>
  966. <animation n="33">
  967. <type type="string">textranslate</type>
  968. <object-name type="string">Plane.033</object-name>
  969. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[1]/elevation-ft</property>
  970. <factor type="double">5.5556e-05</factor>
  971. <axis>
  972. <x type="double">1</x>
  973. </axis>
  974. </animation>
  975. <animation n="34">
  976. <type type="string">textranslate</type>
  977. <object-name type="string">Plane.034</object-name>
  978. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[2]/elevation-ft</property>
  979. <factor type="double">5.5556e-05</factor>
  980. <axis>
  981. <x type="double">1</x>
  982. </axis>
  983. </animation>
  984. <animation n="35">
  985. <type type="string">textranslate</type>
  986. <object-name type="string">Plane.035</object-name>
  987. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[3]/elevation-ft</property>
  988. <factor type="double">5.5556e-05</factor>
  989. <axis>
  990. <x type="double">1</x>
  991. </axis>
  992. </animation>
  993. <animation n="36">
  994. <type type="string">textranslate</type>
  995. <object-name type="string">Plane.036</object-name>
  996. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[4]/elevation-ft</property>
  997. <factor type="double">5.5556e-05</factor>
  998. <axis>
  999. <x type="double">1</x>
  1000. </axis>
  1001. </animation>
  1002. <animation n="37">
  1003. <type type="string">textranslate</type>
  1004. <object-name type="string">Plane.037</object-name>
  1005. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[5]/elevation-ft</property>
  1006. <factor type="double">5.5556e-05</factor>
  1007. <axis>
  1008. <x type="double">1</x>
  1009. </axis>
  1010. </animation>
  1011. <animation n="38">
  1012. <type type="string">textranslate</type>
  1013. <object-name type="string">Plane.038</object-name>
  1014. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[6]/elevation-ft</property>
  1015. <factor type="double">5.5556e-05</factor>
  1016. <axis>
  1017. <x type="double">1</x>
  1018. </axis>
  1019. </animation>
  1020. <animation n="39">
  1021. <type type="string">textranslate</type>
  1022. <object-name type="string">Plane.039</object-name>
  1023. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[7]/elevation-ft</property>
  1024. <factor type="double">5.5556e-05</factor>
  1025. <axis>
  1026. <x type="double">1</x>
  1027. </axis>
  1028. </animation>
  1029. <animation n="40">
  1030. <type type="string">textranslate</type>
  1031. <object-name type="string">Plane.040</object-name>
  1032. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[8]/elevation-ft</property>
  1033. <factor type="double">5.5556e-05</factor>
  1034. <axis>
  1035. <x type="double">1</x>
  1036. </axis>
  1037. </animation>
  1038. <animation n="41">
  1039. <type type="string">textranslate</type>
  1040. <object-name type="string">Plane.041</object-name>
  1041. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[9]/elevation-ft</property>
  1042. <factor type="double">5.5556e-05</factor>
  1043. <axis>
  1044. <x type="double">1</x>
  1045. </axis>
  1046. </animation>
  1047. <animation n="42">
  1048. <type type="string">textranslate</type>
  1049. <object-name type="string">Plane.042</object-name>
  1050. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[10]/elevation-ft</property>
  1051. <factor type="double">5.5556e-05</factor>
  1052. <axis>
  1053. <x type="double">1</x>
  1054. </axis>
  1055. </animation>
  1056. <animation n="43">
  1057. <type type="string">textranslate</type>
  1058. <object-name type="string">Plane.043</object-name>
  1059. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[11]/elevation-ft</property>
  1060. <factor type="double">5.5556e-05</factor>
  1061. <axis>
  1062. <x type="double">1</x>
  1063. </axis>
  1064. </animation>
  1065. <animation n="44">
  1066. <type type="string">textranslate</type>
  1067. <object-name type="string">Plane.044</object-name>
  1068. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[12]/elevation-ft</property>
  1069. <factor type="double">5.5556e-05</factor>
  1070. <axis>
  1071. <x type="double">1</x>
  1072. </axis>
  1073. </animation>
  1074. <animation n="45">
  1075. <type type="string">textranslate</type>
  1076. <object-name type="string">Plane.045</object-name>
  1077. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[13]/elevation-ft</property>
  1078. <factor type="double">5.5556e-05</factor>
  1079. <axis>
  1080. <x type="double">1</x>
  1081. </axis>
  1082. </animation>
  1083. <animation n="46">
  1084. <type type="string">textranslate</type>
  1085. <object-name type="string">Plane.046</object-name>
  1086. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[14]/elevation-ft</property>
  1087. <factor type="double">5.5556e-05</factor>
  1088. <axis>
  1089. <x type="double">1</x>
  1090. </axis>
  1091. </animation>
  1092. <animation n="47">
  1093. <type type="string">textranslate</type>
  1094. <object-name type="string">Plane.047</object-name>
  1095. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[15]/elevation-ft</property>
  1096. <factor type="double">5.5556e-05</factor>
  1097. <axis>
  1098. <x type="double">1</x>
  1099. </axis>
  1100. </animation>
  1101. <animation n="48">
  1102. <type type="string">textranslate</type>
  1103. <object-name type="string">Plane.048</object-name>
  1104. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[16]/elevation-ft</property>
  1105. <factor type="double">5.5556e-05</factor>
  1106. <axis>
  1107. <x type="double">1</x>
  1108. </axis>
  1109. </animation>
  1110. <animation n="49">
  1111. <type type="string">textranslate</type>
  1112. <object-name type="string">Plane.049</object-name>
  1113. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[17]/elevation-ft</property>
  1114. <factor type="double">5.5556e-05</factor>
  1115. <axis>
  1116. <x type="double">1</x>
  1117. </axis>
  1118. </animation>
  1119. <animation n="50">
  1120. <type type="string">textranslate</type>
  1121. <object-name type="string">Plane.050</object-name>
  1122. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[18]/elevation-ft</property>
  1123. <factor type="double">5.5556e-05</factor>
  1124. <axis>
  1125. <x type="double">1</x>
  1126. </axis>
  1127. </animation>
  1128. <animation n="51">
  1129. <type type="string">textranslate</type>
  1130. <object-name type="string">Plane.051</object-name>
  1131. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[19]/elevation-ft</property>
  1132. <factor type="double">5.5556e-05</factor>
  1133. <axis>
  1134. <x type="double">1</x>
  1135. </axis>
  1136. </animation>
  1137. <animation n="52">
  1138. <type type="string">textranslate</type>
  1139. <object-name type="string">Plane.052</object-name>
  1140. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[20]/elevation-ft</property>
  1141. <factor type="double">5.5556e-05</factor>
  1142. <axis>
  1143. <x type="double">1</x>
  1144. </axis>
  1145. </animation>
  1146. <animation n="53">
  1147. <type type="string">textranslate</type>
  1148. <object-name type="string">Plane.053</object-name>
  1149. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[21]/elevation-ft</property>
  1150. <factor type="double">5.5556e-05</factor>
  1151. <axis>
  1152. <x type="double">1</x>
  1153. </axis>
  1154. </animation>
  1155. <animation n="54">
  1156. <type type="string">textranslate</type>
  1157. <object-name type="string">Plane.054</object-name>
  1158. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[22]/elevation-ft</property>
  1159. <factor type="double">5.5556e-05</factor>
  1160. <axis>
  1161. <x type="double">1</x>
  1162. </axis>
  1163. </animation>
  1164. <animation n="55">
  1165. <type type="string">textranslate</type>
  1166. <object-name type="string">Plane.055</object-name>
  1167. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[23]/elevation-ft</property>
  1168. <factor type="double">5.5556e-05</factor>
  1169. <axis>
  1170. <x type="double">1</x>
  1171. </axis>
  1172. </animation>
  1173. <animation n="56">
  1174. <type type="string">textranslate</type>
  1175. <object-name type="string">Plane.056</object-name>
  1176. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[24]/elevation-ft</property>
  1177. <factor type="double">5.5556e-05</factor>
  1178. <axis>
  1179. <x type="double">1</x>
  1180. </axis>
  1181. </animation>
  1182. <animation n="57">
  1183. <type type="string">textranslate</type>
  1184. <object-name type="string">Plane.057</object-name>
  1185. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[25]/elevation-ft</property>
  1186. <factor type="double">5.5556e-05</factor>
  1187. <axis>
  1188. <x type="double">1</x>
  1189. </axis>
  1190. </animation>
  1191. <animation n="58">
  1192. <type type="string">textranslate</type>
  1193. <object-name type="string">Plane.058</object-name>
  1194. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[26]/elevation-ft</property>
  1195. <factor type="double">5.5556e-05</factor>
  1196. <axis>
  1197. <x type="double">1</x>
  1198. </axis>
  1199. </animation>
  1200. <animation n="59">
  1201. <type type="string">textranslate</type>
  1202. <object-name type="string">Plane.059</object-name>
  1203. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[27]/elevation-ft</property>
  1204. <factor type="double">5.5556e-05</factor>
  1205. <axis>
  1206. <x type="double">1</x>
  1207. </axis>
  1208. </animation>
  1209. <animation n="60">
  1210. <type type="string">textranslate</type>
  1211. <object-name type="string">Plane.060</object-name>
  1212. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[28]/elevation-ft</property>
  1213. <factor type="double">5.5556e-05</factor>
  1214. <axis>
  1215. <x type="double">1</x>
  1216. </axis>
  1217. </animation>
  1218. <animation n="61">
  1219. <type type="string">textranslate</type>
  1220. <object-name type="string">Plane.061</object-name>
  1221. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[29]/elevation-ft</property>
  1222. <factor type="double">5.5556e-05</factor>
  1223. <axis>
  1224. <x type="double">1</x>
  1225. </axis>
  1226. </animation>
  1227. <animation n="62">
  1228. <type type="string">textranslate</type>
  1229. <object-name type="string">Plane.062</object-name>
  1230. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[30]/elevation-ft</property>
  1231. <factor type="double">5.5556e-05</factor>
  1232. <axis>
  1233. <x type="double">1</x>
  1234. </axis>
  1235. </animation>
  1236. <animation n="63">
  1237. <type type="string">textranslate</type>
  1238. <object-name type="string">Plane.063</object-name>
  1239. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[31]/elevation-ft</property>
  1240. <factor type="double">5.5556e-05</factor>
  1241. <axis>
  1242. <x type="double">1</x>
  1243. </axis>
  1244. </animation>
  1245. <animation n="65">
  1246. <type type="string">textranslate</type>
  1247. <object-name type="string">Plane.065</object-name>
  1248. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[1]/elevation-ft</property>
  1249. <factor type="double">5.5556e-05</factor>
  1250. <axis>
  1251. <x type="double">1</x>
  1252. </axis>
  1253. </animation>
  1254. <animation n="66">
  1255. <type type="string">textranslate</type>
  1256. <object-name type="string">Plane.066</object-name>
  1257. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[2]/elevation-ft</property>
  1258. <factor type="double">5.5556e-05</factor>
  1259. <axis>
  1260. <x type="double">1</x>
  1261. </axis>
  1262. </animation>
  1263. <animation n="67">
  1264. <type type="string">textranslate</type>
  1265. <object-name type="string">Plane.067</object-name>
  1266. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[3]/elevation-ft</property>
  1267. <factor type="double">5.5556e-05</factor>
  1268. <axis>
  1269. <x type="double">1</x>
  1270. </axis>
  1271. </animation>
  1272. <animation n="68">
  1273. <type type="string">textranslate</type>
  1274. <object-name type="string">Plane.068</object-name>
  1275. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[4]/elevation-ft</property>
  1276. <factor type="double">5.5556e-05</factor>
  1277. <axis>
  1278. <x type="double">1</x>
  1279. </axis>
  1280. </animation>
  1281. <animation n="69">
  1282. <type type="string">textranslate</type>
  1283. <object-name type="string">Plane.069</object-name>
  1284. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[5]/elevation-ft</property>
  1285. <factor type="double">5.5556e-05</factor>
  1286. <axis>
  1287. <x type="double">1</x>
  1288. </axis>
  1289. </animation>
  1290. <animation n="70">
  1291. <type type="string">textranslate</type>
  1292. <object-name type="string">Plane.070</object-name>
  1293. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[6]/elevation-ft</property>
  1294. <factor type="double">5.5556e-05</factor>
  1295. <axis>
  1296. <x type="double">1</x>
  1297. </axis>
  1298. </animation>
  1299. <animation n="71">
  1300. <type type="string">textranslate</type>
  1301. <object-name type="string">Plane.071</object-name>
  1302. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[7]/elevation-ft</property>
  1303. <factor type="double">5.5556e-05</factor>
  1304. <axis>
  1305. <x type="double">1</x>
  1306. </axis>
  1307. </animation>
  1308. <animation n="72">
  1309. <type type="string">textranslate</type>
  1310. <object-name type="string">Plane.072</object-name>
  1311. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[8]/elevation-ft</property>
  1312. <factor type="double">5.5556e-05</factor>
  1313. <axis>
  1314. <x type="double">1</x>
  1315. </axis>
  1316. </animation>
  1317. <animation n="73">
  1318. <type type="string">textranslate</type>
  1319. <object-name type="string">Plane.073</object-name>
  1320. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[9]/elevation-ft</property>
  1321. <factor type="double">5.5556e-05</factor>
  1322. <axis>
  1323. <x type="double">1</x>
  1324. </axis>
  1325. </animation>
  1326. <animation n="74">
  1327. <type type="string">textranslate</type>
  1328. <object-name type="string">Plane.074</object-name>
  1329. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[10]/elevation-ft</property>
  1330. <factor type="double">5.5556e-05</factor>
  1331. <axis>
  1332. <x type="double">1</x>
  1333. </axis>
  1334. </animation>
  1335. <animation n="75">
  1336. <type type="string">textranslate</type>
  1337. <object-name type="string">Plane.075</object-name>
  1338. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[11]/elevation-ft</property>
  1339. <factor type="double">5.5556e-05</factor>
  1340. <axis>
  1341. <x type="double">1</x>
  1342. </axis>
  1343. </animation>
  1344. <animation n="76">
  1345. <type type="string">textranslate</type>
  1346. <object-name type="string">Plane.076</object-name>
  1347. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[12]/elevation-ft</property>
  1348. <factor type="double">5.5556e-05</factor>
  1349. <axis>
  1350. <x type="double">1</x>
  1351. </axis>
  1352. </animation>
  1353. <animation n="77">
  1354. <type type="string">textranslate</type>
  1355. <object-name type="string">Plane.077</object-name>
  1356. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[13]/elevation-ft</property>
  1357. <factor type="double">5.5556e-05</factor>
  1358. <axis>
  1359. <x type="double">1</x>
  1360. </axis>
  1361. </animation>
  1362. <animation n="78">
  1363. <type type="string">textranslate</type>
  1364. <object-name type="string">Plane.078</object-name>
  1365. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[14]/elevation-ft</property>
  1366. <factor type="double">5.5556e-05</factor>
  1367. <axis>
  1368. <x type="double">1</x>
  1369. </axis>
  1370. </animation>
  1371. <animation n="79">
  1372. <type type="string">textranslate</type>
  1373. <object-name type="string">Plane.079</object-name>
  1374. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[15]/elevation-ft</property>
  1375. <factor type="double">5.5556e-05</factor>
  1376. <axis>
  1377. <x type="double">1</x>
  1378. </axis>
  1379. </animation>
  1380. <animation n="80">
  1381. <type type="string">textranslate</type>
  1382. <object-name type="string">Plane.080</object-name>
  1383. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[16]/elevation-ft</property>
  1384. <factor type="double">5.5556e-05</factor>
  1385. <axis>
  1386. <x type="double">1</x>
  1387. </axis>
  1388. </animation>
  1389. <animation n="81">
  1390. <type type="string">textranslate</type>
  1391. <object-name type="string">Plane.081</object-name>
  1392. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[17]/elevation-ft</property>
  1393. <factor type="double">5.5556e-05</factor>
  1394. <axis>
  1395. <x type="double">1</x>
  1396. </axis>
  1397. </animation>
  1398. <animation n="82">
  1399. <type type="string">textranslate</type>
  1400. <object-name type="string">Plane.082</object-name>
  1401. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[18]/elevation-ft</property>
  1402. <factor type="double">5.5556e-05</factor>
  1403. <axis>
  1404. <x type="double">1</x>
  1405. </axis>
  1406. </animation>
  1407. <animation n="83">
  1408. <type type="string">textranslate</type>
  1409. <object-name type="string">Plane.083</object-name>
  1410. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[19]/elevation-ft</property>
  1411. <factor type="double">5.5556e-05</factor>
  1412. <axis>
  1413. <x type="double">1</x>
  1414. </axis>
  1415. </animation>
  1416. <animation n="84">
  1417. <type type="string">textranslate</type>
  1418. <object-name type="string">Plane.084</object-name>
  1419. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[20]/elevation-ft</property>
  1420. <factor type="double">5.5556e-05</factor>
  1421. <axis>
  1422. <x type="double">1</x>
  1423. </axis>
  1424. </animation>
  1425. <animation n="85">
  1426. <type type="string">textranslate</type>
  1427. <object-name type="string">Plane.085</object-name>
  1428. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[21]/elevation-ft</property>
  1429. <factor type="double">5.5556e-05</factor>
  1430. <axis>
  1431. <x type="double">1</x>
  1432. </axis>
  1433. </animation>
  1434. <animation n="86">
  1435. <type type="string">textranslate</type>
  1436. <object-name type="string">Plane.086</object-name>
  1437. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[22]/elevation-ft</property>
  1438. <factor type="double">5.5556e-05</factor>
  1439. <axis>
  1440. <x type="double">1</x>
  1441. </axis>
  1442. </animation>
  1443. <animation n="87">
  1444. <type type="string">textranslate</type>
  1445. <object-name type="string">Plane.087</object-name>
  1446. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[23]/elevation-ft</property>
  1447. <factor type="double">5.5556e-05</factor>
  1448. <axis>
  1449. <x type="double">1</x>
  1450. </axis>
  1451. </animation>
  1452. <animation n="88">
  1453. <type type="string">textranslate</type>
  1454. <object-name type="string">Plane.088</object-name>
  1455. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[24]/elevation-ft</property>
  1456. <factor type="double">5.5556e-05</factor>
  1457. <axis>
  1458. <x type="double">1</x>
  1459. </axis>
  1460. </animation>
  1461. <animation n="89">
  1462. <type type="string">textranslate</type>
  1463. <object-name type="string">Plane.089</object-name>
  1464. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[25]/elevation-ft</property>
  1465. <factor type="double">5.5556e-05</factor>
  1466. <axis>
  1467. <x type="double">1</x>
  1468. </axis>
  1469. </animation>
  1470. <animation n="90">
  1471. <type type="string">textranslate</type>
  1472. <object-name type="string">Plane.090</object-name>
  1473. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[26]/elevation-ft</property>
  1474. <factor type="double">5.5556e-05</factor>
  1475. <axis>
  1476. <x type="double">1</x>
  1477. </axis>
  1478. </animation>
  1479. <animation n="91">
  1480. <type type="string">textranslate</type>
  1481. <object-name type="string">Plane.091</object-name>
  1482. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[27]/elevation-ft</property>
  1483. <factor type="double">5.5556e-05</factor>
  1484. <axis>
  1485. <x type="double">1</x>
  1486. </axis>
  1487. </animation>
  1488. <animation n="92">
  1489. <type type="string">textranslate</type>
  1490. <object-name type="string">Plane.092</object-name>
  1491. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[28]/elevation-ft</property>
  1492. <factor type="double">5.5556e-05</factor>
  1493. <axis>
  1494. <x type="double">1</x>
  1495. </axis>
  1496. </animation>
  1497. <animation n="93">
  1498. <type type="string">textranslate</type>
  1499. <object-name type="string">Plane.093</object-name>
  1500. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[29]/elevation-ft</property>
  1501. <factor type="double">5.5556e-05</factor>
  1502. <axis>
  1503. <x type="double">1</x>
  1504. </axis>
  1505. </animation>
  1506. <animation n="94">
  1507. <type type="string">textranslate</type>
  1508. <object-name type="string">Plane.094</object-name>
  1509. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[30]/elevation-ft</property>
  1510. <factor type="double">5.5556e-05</factor>
  1511. <axis>
  1512. <x type="double">1</x>
  1513. </axis>
  1514. </animation>
  1515. <animation n="95">
  1516. <type type="string">textranslate</type>
  1517. <object-name type="string">Plane.095</object-name>
  1518. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[31]/elevation-ft</property>
  1519. <factor type="double">5.5556e-05</factor>
  1520. <axis>
  1521. <x type="double">1</x>
  1522. </axis>
  1523. </animation>
  1524. <animation n="97">
  1525. <type type="string">textranslate</type>
  1526. <object-name type="string">Plane.097</object-name>
  1527. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[1]/elevation-ft</property>
  1528. <factor type="double">5.5556e-05</factor>
  1529. <axis>
  1530. <x type="double">1</x>
  1531. </axis>
  1532. </animation>
  1533. <animation n="98">
  1534. <type type="string">textranslate</type>
  1535. <object-name type="string">Plane.098</object-name>
  1536. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[2]/elevation-ft</property>
  1537. <factor type="double">5.5556e-05</factor>
  1538. <axis>
  1539. <x type="double">1</x>
  1540. </axis>
  1541. </animation>
  1542. <animation n="99">
  1543. <type type="string">textranslate</type>
  1544. <object-name type="string">Plane.099</object-name>
  1545. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[3]/elevation-ft</property>
  1546. <factor type="double">5.5556e-05</factor>
  1547. <axis>
  1548. <x type="double">1</x>
  1549. </axis>
  1550. </animation>
  1551. <animation n="100">
  1552. <type type="string">textranslate</type>
  1553. <object-name type="string">Plane.100</object-name>
  1554. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[4]/elevation-ft</property>
  1555. <factor type="double">5.5556e-05</factor>
  1556. <axis>
  1557. <x type="double">1</x>
  1558. </axis>
  1559. </animation>
  1560. <animation n="101">
  1561. <type type="string">textranslate</type>
  1562. <object-name type="string">Plane.101</object-name>
  1563. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[5]/elevation-ft</property>
  1564. <factor type="double">5.5556e-05</factor>
  1565. <axis>
  1566. <x type="double">1</x>
  1567. </axis>
  1568. </animation>
  1569. <animation n="102">
  1570. <type type="string">textranslate</type>
  1571. <object-name type="string">Plane.102</object-name>
  1572. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[6]/elevation-ft</property>
  1573. <factor type="double">5.5556e-05</factor>
  1574. <axis>
  1575. <x type="double">1</x>
  1576. </axis>
  1577. </animation>
  1578. <animation n="103">
  1579. <type type="string">textranslate</type>
  1580. <object-name type="string">Plane.103</object-name>
  1581. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[7]/elevation-ft</property>
  1582. <factor type="double">5.5556e-05</factor>
  1583. <axis>
  1584. <x type="double">1</x>
  1585. </axis>
  1586. </animation>
  1587. <animation n="104">
  1588. <type type="string">textranslate</type>
  1589. <object-name type="string">Plane.104</object-name>
  1590. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[8]/elevation-ft</property>
  1591. <factor type="double">5.5556e-05</factor>
  1592. <axis>
  1593. <x type="double">1</x>
  1594. </axis>
  1595. </animation>
  1596. <animation n="105">
  1597. <type type="string">textranslate</type>
  1598. <object-name type="string">Plane.105</object-name>
  1599. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[9]/elevation-ft</property>
  1600. <factor type="double">5.5556e-05</factor>
  1601. <axis>
  1602. <x type="double">1</x>
  1603. </axis>
  1604. </animation>
  1605. <animation n="106">
  1606. <type type="string">textranslate</type>
  1607. <object-name type="string">Plane.106</object-name>
  1608. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[10]/elevation-ft</property>
  1609. <factor type="double">5.5556e-05</factor>
  1610. <axis>
  1611. <x type="double">1</x>
  1612. </axis>
  1613. </animation>
  1614. <animation n="107">
  1615. <type type="string">textranslate</type>
  1616. <object-name type="string">Plane.107</object-name>
  1617. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[11]/elevation-ft</property>
  1618. <factor type="double">5.5556e-05</factor>
  1619. <axis>
  1620. <x type="double">1</x>
  1621. </axis>
  1622. </animation>
  1623. <animation n="108">
  1624. <type type="string">textranslate</type>
  1625. <object-name type="string">Plane.108</object-name>
  1626. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[12]/elevation-ft</property>
  1627. <factor type="double">5.5556e-05</factor>
  1628. <axis>
  1629. <x type="double">1</x>
  1630. </axis>
  1631. </animation>
  1632. <animation n="109">
  1633. <type type="string">textranslate</type>
  1634. <object-name type="string">Plane.109</object-name>
  1635. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[13]/elevation-ft</property>
  1636. <factor type="double">5.5556e-05</factor>
  1637. <axis>
  1638. <x type="double">1</x>
  1639. </axis>
  1640. </animation>
  1641. <animation n="110">
  1642. <type type="string">textranslate</type>
  1643. <object-name type="string">Plane.110</object-name>
  1644. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[14]/elevation-ft</property>
  1645. <factor type="double">5.5556e-05</factor>
  1646. <axis>
  1647. <x type="double">1</x>
  1648. </axis>
  1649. </animation>
  1650. <animation n="111">
  1651. <type type="string">textranslate</type>
  1652. <object-name type="string">Plane.111</object-name>
  1653. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[15]/elevation-ft</property>
  1654. <factor type="double">5.5556e-05</factor>
  1655. <axis>
  1656. <x type="double">1</x>
  1657. </axis>
  1658. </animation>
  1659. <animation n="112">
  1660. <type type="string">textranslate</type>
  1661. <object-name type="string">Plane.112</object-name>
  1662. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[16]/elevation-ft</property>
  1663. <factor type="double">5.5556e-05</factor>
  1664. <axis>
  1665. <x type="double">1</x>
  1666. </axis>
  1667. </animation>
  1668. <animation n="113">
  1669. <type type="string">textranslate</type>
  1670. <object-name type="string">Plane.113</object-name>
  1671. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[17]/elevation-ft</property>
  1672. <factor type="double">5.5556e-05</factor>
  1673. <axis>
  1674. <x type="double">1</x>
  1675. </axis>
  1676. </animation>
  1677. <animation n="114">
  1678. <type type="string">textranslate</type>
  1679. <object-name type="string">Plane.114</object-name>
  1680. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[18]/elevation-ft</property>
  1681. <factor type="double">5.5556e-05</factor>
  1682. <axis>
  1683. <x type="double">1</x>
  1684. </axis>
  1685. </animation>
  1686. <animation n="115">
  1687. <type type="string">textranslate</type>
  1688. <object-name type="string">Plane.115</object-name>
  1689. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[19]/elevation-ft</property>
  1690. <factor type="double">5.5556e-05</factor>
  1691. <axis>
  1692. <x type="double">1</x>
  1693. </axis>
  1694. </animation>
  1695. <animation n="116">
  1696. <type type="string">textranslate</type>
  1697. <object-name type="string">Plane.116</object-name>
  1698. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[20]/elevation-ft</property>
  1699. <factor type="double">5.5556e-05</factor>
  1700. <axis>
  1701. <x type="double">1</x>
  1702. </axis>
  1703. </animation>
  1704. <animation n="117">
  1705. <type type="string">textranslate</type>
  1706. <object-name type="string">Plane.117</object-name>
  1707. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[21]/elevation-ft</property>
  1708. <factor type="double">5.5556e-05</factor>
  1709. <axis>
  1710. <x type="double">1</x>
  1711. </axis>
  1712. </animation>
  1713. <animation n="118">
  1714. <type type="string">textranslate</type>
  1715. <object-name type="string">Plane.118</object-name>
  1716. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[22]/elevation-ft</property>
  1717. <factor type="double">5.5556e-05</factor>
  1718. <axis>
  1719. <x type="double">1</x>
  1720. </axis>
  1721. </animation>
  1722. <animation n="119">
  1723. <type type="string">textranslate</type>
  1724. <object-name type="string">Plane.119</object-name>
  1725. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[23]/elevation-ft</property>
  1726. <factor type="double">5.5556e-05</factor>
  1727. <axis>
  1728. <x type="double">1</x>
  1729. </axis>
  1730. </animation>
  1731. <animation n="120">
  1732. <type type="string">textranslate</type>
  1733. <object-name type="string">Plane.120</object-name>
  1734. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[24]/elevation-ft</property>
  1735. <factor type="double">5.5556e-05</factor>
  1736. <axis>
  1737. <x type="double">1</x>
  1738. </axis>
  1739. </animation>
  1740. <animation n="121">
  1741. <type type="string">textranslate</type>
  1742. <object-name type="string">Plane.121</object-name>
  1743. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[25]/elevation-ft</property>
  1744. <factor type="double">5.5556e-05</factor>
  1745. <axis>
  1746. <x type="double">1</x>
  1747. </axis>
  1748. </animation>
  1749. <animation n="122">
  1750. <type type="string">textranslate</type>
  1751. <object-name type="string">Plane.122</object-name>
  1752. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[26]/elevation-ft</property>
  1753. <factor type="double">5.5556e-05</factor>
  1754. <axis>
  1755. <x type="double">1</x>
  1756. </axis>
  1757. </animation>
  1758. <animation n="123">
  1759. <type type="string">textranslate</type>
  1760. <object-name type="string">Plane.123</object-name>
  1761. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[27]/elevation-ft</property>
  1762. <factor type="double">5.5556e-05</factor>
  1763. <axis>
  1764. <x type="double">1</x>
  1765. </axis>
  1766. </animation>
  1767. <animation n="124">
  1768. <type type="string">textranslate</type>
  1769. <object-name type="string">Plane.124</object-name>
  1770. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[28]/elevation-ft</property>
  1771. <factor type="double">5.5556e-05</factor>
  1772. <axis>
  1773. <x type="double">1</x>
  1774. </axis>
  1775. </animation>
  1776. <animation n="125">
  1777. <type type="string">textranslate</type>
  1778. <object-name type="string">Plane.125</object-name>
  1779. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[29]/elevation-ft</property>
  1780. <factor type="double">5.5556e-05</factor>
  1781. <axis>
  1782. <x type="double">1</x>
  1783. </axis>
  1784. </animation>
  1785. <animation n="126">
  1786. <type type="string">textranslate</type>
  1787. <object-name type="string">Plane.126</object-name>
  1788. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[30]/elevation-ft</property>
  1789. <factor type="double">5.5556e-05</factor>
  1790. <axis>
  1791. <x type="double">1</x>
  1792. </axis>
  1793. </animation>
  1794. <animation n="127">
  1795. <type type="string">textranslate</type>
  1796. <object-name type="string">Plane.127</object-name>
  1797. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[31]/elevation-ft</property>
  1798. <factor type="double">5.5556e-05</factor>
  1799. <axis>
  1800. <x type="double">1</x>
  1801. </axis>
  1802. </animation>
  1803. <animation n="129">
  1804. <type type="string">textranslate</type>
  1805. <object-name type="string">Plane.129</object-name>
  1806. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[1]/elevation-ft</property>
  1807. <factor type="double">5.5556e-05</factor>
  1808. <axis>
  1809. <x type="double">1</x>
  1810. </axis>
  1811. </animation>
  1812. <animation n="130">
  1813. <type type="string">textranslate</type>
  1814. <object-name type="string">Plane.130</object-name>
  1815. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[2]/elevation-ft</property>
  1816. <factor type="double">5.5556e-05</factor>
  1817. <axis>
  1818. <x type="double">1</x>
  1819. </axis>
  1820. </animation>
  1821. <animation n="131">
  1822. <type type="string">textranslate</type>
  1823. <object-name type="string">Plane.131</object-name>
  1824. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[3]/elevation-ft</property>
  1825. <factor type="double">5.5556e-05</factor>
  1826. <axis>
  1827. <x type="double">1</x>
  1828. </axis>
  1829. </animation>
  1830. <animation n="132">
  1831. <type type="string">textranslate</type>
  1832. <object-name type="string">Plane.132</object-name>
  1833. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[4]/elevation-ft</property>
  1834. <factor type="double">5.5556e-05</factor>
  1835. <axis>
  1836. <x type="double">1</x>
  1837. </axis>
  1838. </animation>
  1839. <animation n="133">
  1840. <type type="string">textranslate</type>
  1841. <object-name type="string">Plane.133</object-name>
  1842. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[5]/elevation-ft</property>
  1843. <factor type="double">5.5556e-05</factor>
  1844. <axis>
  1845. <x type="double">1</x>
  1846. </axis>
  1847. </animation>
  1848. <animation n="134">
  1849. <type type="string">textranslate</type>
  1850. <object-name type="string">Plane.134</object-name>
  1851. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[6]/elevation-ft</property>
  1852. <factor type="double">5.5556e-05</factor>
  1853. <axis>
  1854. <x type="double">1</x>
  1855. </axis>
  1856. </animation>
  1857. <animation n="135">
  1858. <type type="string">textranslate</type>
  1859. <object-name type="string">Plane.135</object-name>
  1860. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[7]/elevation-ft</property>
  1861. <factor type="double">5.5556e-05</factor>
  1862. <axis>
  1863. <x type="double">1</x>
  1864. </axis>
  1865. </animation>
  1866. <animation n="136">
  1867. <type type="string">textranslate</type>
  1868. <object-name type="string">Plane.136</object-name>
  1869. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[8]/elevation-ft</property>
  1870. <factor type="double">5.5556e-05</factor>
  1871. <axis>
  1872. <x type="double">1</x>
  1873. </axis>
  1874. </animation>
  1875. <animation n="137">
  1876. <type type="string">textranslate</type>
  1877. <object-name type="string">Plane.137</object-name>
  1878. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[9]/elevation-ft</property>
  1879. <factor type="double">5.5556e-05</factor>
  1880. <axis>
  1881. <x type="double">1</x>
  1882. </axis>
  1883. </animation>
  1884. <animation n="138">
  1885. <type type="string">textranslate</type>
  1886. <object-name type="string">Plane.138</object-name>
  1887. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[10]/elevation-ft</property>
  1888. <factor type="double">5.5556e-05</factor>
  1889. <axis>
  1890. <x type="double">1</x>
  1891. </axis>
  1892. </animation>
  1893. <animation n="139">
  1894. <type type="string">textranslate</type>
  1895. <object-name type="string">Plane.139</object-name>
  1896. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[11]/elevation-ft</property>
  1897. <factor type="double">5.5556e-05</factor>
  1898. <axis>
  1899. <x type="double">1</x>
  1900. </axis>
  1901. </animation>
  1902. <animation n="140">
  1903. <type type="string">textranslate</type>
  1904. <object-name type="string">Plane.140</object-name>
  1905. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[12]/elevation-ft</property>
  1906. <factor type="double">5.5556e-05</factor>
  1907. <axis>
  1908. <x type="double">1</x>
  1909. </axis>
  1910. </animation>
  1911. <animation n="141">
  1912. <type type="string">textranslate</type>
  1913. <object-name type="string">Plane.141</object-name>
  1914. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[13]/elevation-ft</property>
  1915. <factor type="double">5.5556e-05</factor>
  1916. <axis>
  1917. <x type="double">1</x>
  1918. </axis>
  1919. </animation>
  1920. <animation n="142">
  1921. <type type="string">textranslate</type>
  1922. <object-name type="string">Plane.142</object-name>
  1923. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[14]/elevation-ft</property>
  1924. <factor type="double">5.5556e-05</factor>
  1925. <axis>
  1926. <x type="double">1</x>
  1927. </axis>
  1928. </animation>
  1929. <animation n="143">
  1930. <type type="string">textranslate</type>
  1931. <object-name type="string">Plane.143</object-name>
  1932. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[15]/elevation-ft</property>
  1933. <factor type="double">5.5556e-05</factor>
  1934. <axis>
  1935. <x type="double">1</x>
  1936. </axis>
  1937. </animation>
  1938. <animation n="144">
  1939. <type type="string">textranslate</type>
  1940. <object-name type="string">Plane.144</object-name>
  1941. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[16]/elevation-ft</property>
  1942. <factor type="double">5.5556e-05</factor>
  1943. <axis>
  1944. <x type="double">1</x>
  1945. </axis>
  1946. </animation>
  1947. <animation n="145">
  1948. <type type="string">textranslate</type>
  1949. <object-name type="string">Plane.145</object-name>
  1950. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[17]/elevation-ft</property>
  1951. <factor type="double">5.5556e-05</factor>
  1952. <axis>
  1953. <x type="double">1</x>
  1954. </axis>
  1955. </animation>
  1956. <animation n="146">
  1957. <type type="string">textranslate</type>
  1958. <object-name type="string">Plane.146</object-name>
  1959. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[18]/elevation-ft</property>
  1960. <factor type="double">5.5556e-05</factor>
  1961. <axis>
  1962. <x type="double">1</x>
  1963. </axis>
  1964. </animation>
  1965. <animation n="147">
  1966. <type type="string">textranslate</type>
  1967. <object-name type="string">Plane.147</object-name>
  1968. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[19]/elevation-ft</property>
  1969. <factor type="double">5.5556e-05</factor>
  1970. <axis>
  1971. <x type="double">1</x>
  1972. </axis>
  1973. </animation>
  1974. <animation n="148">
  1975. <type type="string">textranslate</type>
  1976. <object-name type="string">Plane.148</object-name>
  1977. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[20]/elevation-ft</property>
  1978. <factor type="double">5.5556e-05</factor>
  1979. <axis>
  1980. <x type="double">1</x>
  1981. </axis>
  1982. </animation>
  1983. <animation n="149">
  1984. <type type="string">textranslate</type>
  1985. <object-name type="string">Plane.149</object-name>
  1986. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[21]/elevation-ft</property>
  1987. <factor type="double">5.5556e-05</factor>
  1988. <axis>
  1989. <x type="double">1</x>
  1990. </axis>
  1991. </animation>
  1992. <animation n="150">
  1993. <type type="string">textranslate</type>
  1994. <object-name type="string">Plane.150</object-name>
  1995. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[22]/elevation-ft</property>
  1996. <factor type="double">5.5556e-05</factor>
  1997. <axis>
  1998. <x type="double">1</x>
  1999. </axis>
  2000. </animation>
  2001. <animation n="151">
  2002. <type type="string">textranslate</type>
  2003. <object-name type="string">Plane.151</object-name>
  2004. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[23]/elevation-ft</property>
  2005. <factor type="double">5.5556e-05</factor>
  2006. <axis>
  2007. <x type="double">1</x>
  2008. </axis>
  2009. </animation>
  2010. <animation n="152">
  2011. <type type="string">textranslate</type>
  2012. <object-name type="string">Plane.152</object-name>
  2013. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[24]/elevation-ft</property>
  2014. <factor type="double">5.5556e-05</factor>
  2015. <axis>
  2016. <x type="double">1</x>
  2017. </axis>
  2018. </animation>
  2019. <animation n="153">
  2020. <type type="string">textranslate</type>
  2021. <object-name type="string">Plane.153</object-name>
  2022. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[25]/elevation-ft</property>
  2023. <factor type="double">5.5556e-05</factor>
  2024. <axis>
  2025. <x type="double">1</x>
  2026. </axis>
  2027. </animation>
  2028. <animation n="154">
  2029. <type type="string">textranslate</type>
  2030. <object-name type="string">Plane.154</object-name>
  2031. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[26]/elevation-ft</property>
  2032. <factor type="double">5.5556e-05</factor>
  2033. <axis>
  2034. <x type="double">1</x>
  2035. </axis>
  2036. </animation>
  2037. <animation n="155">
  2038. <type type="string">textranslate</type>
  2039. <object-name type="string">Plane.155</object-name>
  2040. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[27]/elevation-ft</property>
  2041. <factor type="double">5.5556e-05</factor>
  2042. <axis>
  2043. <x type="double">1</x>
  2044. </axis>
  2045. </animation>
  2046. <animation n="156">
  2047. <type type="string">textranslate</type>
  2048. <object-name type="string">Plane.156</object-name>
  2049. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[28]/elevation-ft</property>
  2050. <factor type="double">5.5556e-05</factor>
  2051. <axis>
  2052. <x type="double">1</x>
  2053. </axis>
  2054. </animation>
  2055. <animation n="157">
  2056. <type type="string">textranslate</type>
  2057. <object-name type="string">Plane.157</object-name>
  2058. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[29]/elevation-ft</property>
  2059. <factor type="double">5.5556e-05</factor>
  2060. <axis>
  2061. <x type="double">1</x>
  2062. </axis>
  2063. </animation>
  2064. <animation n="158">
  2065. <type type="string">textranslate</type>
  2066. <object-name type="string">Plane.158</object-name>
  2067. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[30]/elevation-ft</property>
  2068. <factor type="double">5.5556e-05</factor>
  2069. <axis>
  2070. <x type="double">1</x>
  2071. </axis>
  2072. </animation>
  2073. <animation n="159">
  2074. <type type="string">textranslate</type>
  2075. <object-name type="string">Plane.159</object-name>
  2076. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[31]/elevation-ft</property>
  2077. <factor type="double">5.5556e-05</factor>
  2078. <axis>
  2079. <x type="double">1</x>
  2080. </axis>
  2081. </animation>
  2082. <animation n="161">
  2083. <type type="string">textranslate</type>
  2084. <object-name type="string">Plane.161</object-name>
  2085. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[1]/elevation-ft</property>
  2086. <factor type="double">5.5556e-05</factor>
  2087. <axis>
  2088. <x type="double">1</x>
  2089. </axis>
  2090. </animation>
  2091. <animation n="162">
  2092. <type type="string">textranslate</type>
  2093. <object-name type="string">Plane.162</object-name>
  2094. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[2]/elevation-ft</property>
  2095. <factor type="double">5.5556e-05</factor>
  2096. <axis>
  2097. <x type="double">1</x>
  2098. </axis>
  2099. </animation>
  2100. <animation n="163">
  2101. <type type="string">textranslate</type>
  2102. <object-name type="string">Plane.163</object-name>
  2103. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[3]/elevation-ft</property>
  2104. <factor type="double">5.5556e-05</factor>
  2105. <axis>
  2106. <x type="double">1</x>
  2107. </axis>
  2108. </animation>
  2109. <animation n="164">
  2110. <type type="string">textranslate</type>
  2111. <object-name type="string">Plane.164</object-name>
  2112. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[4]/elevation-ft</property>
  2113. <factor type="double">5.5556e-05</factor>
  2114. <axis>
  2115. <x type="double">1</x>
  2116. </axis>
  2117. </animation>
  2118. <animation n="165">
  2119. <type type="string">textranslate</type>
  2120. <object-name type="string">Plane.165</object-name>
  2121. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[5]/elevation-ft</property>
  2122. <factor type="double">5.5556e-05</factor>
  2123. <axis>
  2124. <x type="double">1</x>
  2125. </axis>
  2126. </animation>
  2127. <animation n="166">
  2128. <type type="string">textranslate</type>
  2129. <object-name type="string">Plane.166</object-name>
  2130. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[6]/elevation-ft</property>
  2131. <factor type="double">5.5556e-05</factor>
  2132. <axis>
  2133. <x type="double">1</x>
  2134. </axis>
  2135. </animation>
  2136. <animation n="167">
  2137. <type type="string">textranslate</type>
  2138. <object-name type="string">Plane.167</object-name>
  2139. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[7]/elevation-ft</property>
  2140. <factor type="double">5.5556e-05</factor>
  2141. <axis>
  2142. <x type="double">1</x>
  2143. </axis>
  2144. </animation>
  2145. <animation n="168">
  2146. <type type="string">textranslate</type>
  2147. <object-name type="string">Plane.168</object-name>
  2148. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[8]/elevation-ft</property>
  2149. <factor type="double">5.5556e-05</factor>
  2150. <axis>
  2151. <x type="double">1</x>
  2152. </axis>
  2153. </animation>
  2154. <animation n="169">
  2155. <type type="string">textranslate</type>
  2156. <object-name type="string">Plane.169</object-name>
  2157. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[9]/elevation-ft</property>
  2158. <factor type="double">5.5556e-05</factor>
  2159. <axis>
  2160. <x type="double">1</x>
  2161. </axis>
  2162. </animation>
  2163. <animation n="170">
  2164. <type type="string">textranslate</type>
  2165. <object-name type="string">Plane.170</object-name>
  2166. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[10]/elevation-ft</property>
  2167. <factor type="double">5.5556e-05</factor>
  2168. <axis>
  2169. <x type="double">1</x>
  2170. </axis>
  2171. </animation>
  2172. <animation n="171">
  2173. <type type="string">textranslate</type>
  2174. <object-name type="string">Plane.171</object-name>
  2175. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[11]/elevation-ft</property>
  2176. <factor type="double">5.5556e-05</factor>
  2177. <axis>
  2178. <x type="double">1</x>
  2179. </axis>
  2180. </animation>
  2181. <animation n="172">
  2182. <type type="string">textranslate</type>
  2183. <object-name type="string">Plane.172</object-name>
  2184. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[12]/elevation-ft</property>
  2185. <factor type="double">5.5556e-05</factor>
  2186. <axis>
  2187. <x type="double">1</x>
  2188. </axis>
  2189. </animation>
  2190. <animation n="173">
  2191. <type type="string">textranslate</type>
  2192. <object-name type="string">Plane.173</object-name>
  2193. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[13]/elevation-ft</property>
  2194. <factor type="double">5.5556e-05</factor>
  2195. <axis>
  2196. <x type="double">1</x>
  2197. </axis>
  2198. </animation>
  2199. <animation n="174">
  2200. <type type="string">textranslate</type>
  2201. <object-name type="string">Plane.174</object-name>
  2202. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[14]/elevation-ft</property>
  2203. <factor type="double">5.5556e-05</factor>
  2204. <axis>
  2205. <x type="double">1</x>
  2206. </axis>
  2207. </animation>
  2208. <animation n="175">
  2209. <type type="string">textranslate</type>
  2210. <object-name type="string">Plane.175</object-name>
  2211. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[15]/elevation-ft</property>
  2212. <factor type="double">5.5556e-05</factor>
  2213. <axis>
  2214. <x type="double">1</x>
  2215. </axis>
  2216. </animation>
  2217. <animation n="176">
  2218. <type type="string">textranslate</type>
  2219. <object-name type="string">Plane.176</object-name>
  2220. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[16]/elevation-ft</property>
  2221. <factor type="double">5.5556e-05</factor>
  2222. <axis>
  2223. <x type="double">1</x>
  2224. </axis>
  2225. </animation>
  2226. <animation n="177">
  2227. <type type="string">textranslate</type>
  2228. <object-name type="string">Plane.177</object-name>
  2229. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[17]/elevation-ft</property>
  2230. <factor type="double">5.5556e-05</factor>
  2231. <axis>
  2232. <x type="double">1</x>
  2233. </axis>
  2234. </animation>
  2235. <animation n="178">
  2236. <type type="string">textranslate</type>
  2237. <object-name type="string">Plane.178</object-name>
  2238. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[18]/elevation-ft</property>
  2239. <factor type="double">5.5556e-05</factor>
  2240. <axis>
  2241. <x type="double">1</x>
  2242. </axis>
  2243. </animation>
  2244. <animation n="179">
  2245. <type type="string">textranslate</type>
  2246. <object-name type="string">Plane.179</object-name>
  2247. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[19]/elevation-ft</property>
  2248. <factor type="double">5.5556e-05</factor>
  2249. <axis>
  2250. <x type="double">1</x>
  2251. </axis>
  2252. </animation>
  2253. <animation n="180">
  2254. <type type="string">textranslate</type>
  2255. <object-name type="string">Plane.180</object-name>
  2256. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[20]/elevation-ft</property>
  2257. <factor type="double">5.5556e-05</factor>
  2258. <axis>
  2259. <x type="double">1</x>
  2260. </axis>
  2261. </animation>
  2262. <animation n="181">
  2263. <type type="string">textranslate</type>
  2264. <object-name type="string">Plane.181</object-name>
  2265. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[21]/elevation-ft</property>
  2266. <factor type="double">5.5556e-05</factor>
  2267. <axis>
  2268. <x type="double">1</x>
  2269. </axis>
  2270. </animation>
  2271. <animation n="182">
  2272. <type type="string">textranslate</type>
  2273. <object-name type="string">Plane.182</object-name>
  2274. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[22]/elevation-ft</property>
  2275. <factor type="double">5.5556e-05</factor>
  2276. <axis>
  2277. <x type="double">1</x>
  2278. </axis>
  2279. </animation>
  2280. <animation n="183">
  2281. <type type="string">textranslate</type>
  2282. <object-name type="string">Plane.183</object-name>
  2283. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[23]/elevation-ft</property>
  2284. <factor type="double">5.5556e-05</factor>
  2285. <axis>
  2286. <x type="double">1</x>
  2287. </axis>
  2288. </animation>
  2289. <animation n="184">
  2290. <type type="string">textranslate</type>
  2291. <object-name type="string">Plane.184</object-name>
  2292. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[24]/elevation-ft</property>
  2293. <factor type="double">5.5556e-05</factor>
  2294. <axis>
  2295. <x type="double">1</x>
  2296. </axis>
  2297. </animation>
  2298. <animation n="185">
  2299. <type type="string">textranslate</type>
  2300. <object-name type="string">Plane.185</object-name>
  2301. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[25]/elevation-ft</property>
  2302. <factor type="double">5.5556e-05</factor>
  2303. <axis>
  2304. <x type="double">1</x>
  2305. </axis>
  2306. </animation>
  2307. <animation n="186">
  2308. <type type="string">textranslate</type>
  2309. <object-name type="string">Plane.186</object-name>
  2310. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[26]/elevation-ft</property>
  2311. <factor type="double">5.5556e-05</factor>
  2312. <axis>
  2313. <x type="double">1</x>
  2314. </axis>
  2315. </animation>
  2316. <animation n="187">
  2317. <type type="string">textranslate</type>
  2318. <object-name type="string">Plane.187</object-name>
  2319. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[27]/elevation-ft</property>
  2320. <factor type="double">5.5556e-05</factor>
  2321. <axis>
  2322. <x type="double">1</x>
  2323. </axis>
  2324. </animation>
  2325. <animation n="188">
  2326. <type type="string">textranslate</type>
  2327. <object-name type="string">Plane.188</object-name>
  2328. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[28]/elevation-ft</property>
  2329. <factor type="double">5.5556e-05</factor>
  2330. <axis>
  2331. <x type="double">1</x>
  2332. </axis>
  2333. </animation>
  2334. <animation n="189">
  2335. <type type="string">textranslate</type>
  2336. <object-name type="string">Plane.189</object-name>
  2337. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[29]/elevation-ft</property>
  2338. <factor type="double">5.5556e-05</factor>
  2339. <axis>
  2340. <x type="double">1</x>
  2341. </axis>
  2342. </animation>
  2343. <animation n="190">
  2344. <type type="string">textranslate</type>
  2345. <object-name type="string">Plane.190</object-name>
  2346. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[30]/elevation-ft</property>
  2347. <factor type="double">5.5556e-05</factor>
  2348. <axis>
  2349. <x type="double">1</x>
  2350. </axis>
  2351. </animation>
  2352. <animation n="191">
  2353. <type type="string">textranslate</type>
  2354. <object-name type="string">Plane.191</object-name>
  2355. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[31]/elevation-ft</property>
  2356. <factor type="double">5.5556e-05</factor>
  2357. <axis>
  2358. <x type="double">1</x>
  2359. </axis>
  2360. </animation>
  2361. <animation n="193">
  2362. <type type="string">textranslate</type>
  2363. <object-name type="string">Plane.193</object-name>
  2364. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[1]/elevation-ft</property>
  2365. <factor type="double">5.5556e-05</factor>
  2366. <axis>
  2367. <x type="double">1</x>
  2368. </axis>
  2369. </animation>
  2370. <animation n="194">
  2371. <type type="string">textranslate</type>
  2372. <object-name type="string">Plane.194</object-name>
  2373. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[2]/elevation-ft</property>
  2374. <factor type="double">5.5556e-05</factor>
  2375. <axis>
  2376. <x type="double">1</x>
  2377. </axis>
  2378. </animation>
  2379. <animation n="195">
  2380. <type type="string">textranslate</type>
  2381. <object-name type="string">Plane.195</object-name>
  2382. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[3]/elevation-ft</property>
  2383. <factor type="double">5.5556e-05</factor>
  2384. <axis>
  2385. <x type="double">1</x>
  2386. </axis>
  2387. </animation>
  2388. <animation n="196">
  2389. <type type="string">textranslate</type>
  2390. <object-name type="string">Plane.196</object-name>
  2391. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[4]/elevation-ft</property>
  2392. <factor type="double">5.5556e-05</factor>
  2393. <axis>
  2394. <x type="double">1</x>
  2395. </axis>
  2396. </animation>
  2397. <animation n="197">
  2398. <type type="string">textranslate</type>
  2399. <object-name type="string">Plane.197</object-name>
  2400. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[5]/elevation-ft</property>
  2401. <factor type="double">5.5556e-05</factor>
  2402. <axis>
  2403. <x type="double">1</x>
  2404. </axis>
  2405. </animation>
  2406. <animation n="198">
  2407. <type type="string">textranslate</type>
  2408. <object-name type="string">Plane.198</object-name>
  2409. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[6]/elevation-ft</property>
  2410. <factor type="double">5.5556e-05</factor>
  2411. <axis>
  2412. <x type="double">1</x>
  2413. </axis>
  2414. </animation>
  2415. <animation n="199">
  2416. <type type="string">textranslate</type>
  2417. <object-name type="string">Plane.199</object-name>
  2418. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[7]/elevation-ft</property>
  2419. <factor type="double">5.5556e-05</factor>
  2420. <axis>
  2421. <x type="double">1</x>
  2422. </axis>
  2423. </animation>
  2424. <animation n="200">
  2425. <type type="string">textranslate</type>
  2426. <object-name type="string">Plane.200</object-name>
  2427. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[8]/elevation-ft</property>
  2428. <factor type="double">5.5556e-05</factor>
  2429. <axis>
  2430. <x type="double">1</x>
  2431. </axis>
  2432. </animation>
  2433. <animation n="201">
  2434. <type type="string">textranslate</type>
  2435. <object-name type="string">Plane.201</object-name>
  2436. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[9]/elevation-ft</property>
  2437. <factor type="double">5.5556e-05</factor>
  2438. <axis>
  2439. <x type="double">1</x>
  2440. </axis>
  2441. </animation>
  2442. <animation n="202">
  2443. <type type="string">textranslate</type>
  2444. <object-name type="string">Plane.202</object-name>
  2445. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[10]/elevation-ft</property>
  2446. <factor type="double">5.5556e-05</factor>
  2447. <axis>
  2448. <x type="double">1</x>
  2449. </axis>
  2450. </animation>
  2451. <animation n="203">
  2452. <type type="string">textranslate</type>
  2453. <object-name type="string">Plane.203</object-name>
  2454. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[11]/elevation-ft</property>
  2455. <factor type="double">5.5556e-05</factor>
  2456. <axis>
  2457. <x type="double">1</x>
  2458. </axis>
  2459. </animation>
  2460. <animation n="204">
  2461. <type type="string">textranslate</type>
  2462. <object-name type="string">Plane.204</object-name>
  2463. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[12]/elevation-ft</property>
  2464. <factor type="double">5.5556e-05</factor>
  2465. <axis>
  2466. <x type="double">1</x>
  2467. </axis>
  2468. </animation>
  2469. <animation n="205">
  2470. <type type="string">textranslate</type>
  2471. <object-name type="string">Plane.205</object-name>
  2472. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[13]/elevation-ft</property>
  2473. <factor type="double">5.5556e-05</factor>
  2474. <axis>
  2475. <x type="double">1</x>
  2476. </axis>
  2477. </animation>
  2478. <animation n="206">
  2479. <type type="string">textranslate</type>
  2480. <object-name type="string">Plane.206</object-name>
  2481. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[14]/elevation-ft</property>
  2482. <factor type="double">5.5556e-05</factor>
  2483. <axis>
  2484. <x type="double">1</x>
  2485. </axis>
  2486. </animation>
  2487. <animation n="207">
  2488. <type type="string">textranslate</type>
  2489. <object-name type="string">Plane.207</object-name>
  2490. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[15]/elevation-ft</property>
  2491. <factor type="double">5.5556e-05</factor>
  2492. <axis>
  2493. <x type="double">1</x>
  2494. </axis>
  2495. </animation>
  2496. <animation n="208">
  2497. <type type="string">textranslate</type>
  2498. <object-name type="string">Plane.208</object-name>
  2499. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[16]/elevation-ft</property>
  2500. <factor type="double">5.5556e-05</factor>
  2501. <axis>
  2502. <x type="double">1</x>
  2503. </axis>
  2504. </animation>
  2505. <animation n="209">
  2506. <type type="string">textranslate</type>
  2507. <object-name type="string">Plane.209</object-name>
  2508. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[17]/elevation-ft</property>
  2509. <factor type="double">5.5556e-05</factor>
  2510. <axis>
  2511. <x type="double">1</x>
  2512. </axis>
  2513. </animation>
  2514. <animation n="210">
  2515. <type type="string">textranslate</type>
  2516. <object-name type="string">Plane.210</object-name>
  2517. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[18]/elevation-ft</property>
  2518. <factor type="double">5.5556e-05</factor>
  2519. <axis>
  2520. <x type="double">1</x>
  2521. </axis>
  2522. </animation>
  2523. <animation n="211">
  2524. <type type="string">textranslate</type>
  2525. <object-name type="string">Plane.211</object-name>
  2526. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[19]/elevation-ft</property>
  2527. <factor type="double">5.5556e-05</factor>
  2528. <axis>
  2529. <x type="double">1</x>
  2530. </axis>
  2531. </animation>
  2532. <animation n="212">
  2533. <type type="string">textranslate</type>
  2534. <object-name type="string">Plane.212</object-name>
  2535. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[20]/elevation-ft</property>
  2536. <factor type="double">5.5556e-05</factor>
  2537. <axis>
  2538. <x type="double">1</x>
  2539. </axis>
  2540. </animation>
  2541. <animation n="213">
  2542. <type type="string">textranslate</type>
  2543. <object-name type="string">Plane.213</object-name>
  2544. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[21]/elevation-ft</property>
  2545. <factor type="double">5.5556e-05</factor>
  2546. <axis>
  2547. <x type="double">1</x>
  2548. </axis>
  2549. </animation>
  2550. <animation n="214">
  2551. <type type="string">textranslate</type>
  2552. <object-name type="string">Plane.214</object-name>
  2553. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[22]/elevation-ft</property>
  2554. <factor type="double">5.5556e-05</factor>
  2555. <axis>
  2556. <x type="double">1</x>
  2557. </axis>
  2558. </animation>
  2559. <animation n="215">
  2560. <type type="string">textranslate</type>
  2561. <object-name type="string">Plane.215</object-name>
  2562. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[23]/elevation-ft</property>
  2563. <factor type="double">5.5556e-05</factor>
  2564. <axis>
  2565. <x type="double">1</x>
  2566. </axis>
  2567. </animation>
  2568. <animation n="216">
  2569. <type type="string">textranslate</type>
  2570. <object-name type="string">Plane.216</object-name>
  2571. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[24]/elevation-ft</property>
  2572. <factor type="double">5.5556e-05</factor>
  2573. <axis>
  2574. <x type="double">1</x>
  2575. </axis>
  2576. </animation>
  2577. <animation n="217">
  2578. <type type="string">textranslate</type>
  2579. <object-name type="string">Plane.217</object-name>
  2580. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[25]/elevation-ft</property>
  2581. <factor type="double">5.5556e-05</factor>
  2582. <axis>
  2583. <x type="double">1</x>
  2584. </axis>
  2585. </animation>
  2586. <animation n="218">
  2587. <type type="string">textranslate</type>
  2588. <object-name type="string">Plane.218</object-name>
  2589. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[26]/elevation-ft</property>
  2590. <factor type="double">5.5556e-05</factor>
  2591. <axis>
  2592. <x type="double">1</x>
  2593. </axis>
  2594. </animation>
  2595. <animation n="219">
  2596. <type type="string">textranslate</type>
  2597. <object-name type="string">Plane.219</object-name>
  2598. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[27]/elevation-ft</property>
  2599. <factor type="double">5.5556e-05</factor>
  2600. <axis>
  2601. <x type="double">1</x>
  2602. </axis>
  2603. </animation>
  2604. <animation n="220">
  2605. <type type="string">textranslate</type>
  2606. <object-name type="string">Plane.220</object-name>
  2607. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[28]/elevation-ft</property>
  2608. <factor type="double">5.5556e-05</factor>
  2609. <axis>
  2610. <x type="double">1</x>
  2611. </axis>
  2612. </animation>
  2613. <animation n="221">
  2614. <type type="string">textranslate</type>
  2615. <object-name type="string">Plane.221</object-name>
  2616. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[29]/elevation-ft</property>
  2617. <factor type="double">5.5556e-05</factor>
  2618. <axis>
  2619. <x type="double">1</x>
  2620. </axis>
  2621. </animation>
  2622. <animation n="222">
  2623. <type type="string">textranslate</type>
  2624. <object-name type="string">Plane.222</object-name>
  2625. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[30]/elevation-ft</property>
  2626. <factor type="double">5.5556e-05</factor>
  2627. <axis>
  2628. <x type="double">1</x>
  2629. </axis>
  2630. </animation>
  2631. <animation n="223">
  2632. <type type="string">textranslate</type>
  2633. <object-name type="string">Plane.223</object-name>
  2634. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[31]/elevation-ft</property>
  2635. <factor type="double">5.5556e-05</factor>
  2636. <axis>
  2637. <x type="double">1</x>
  2638. </axis>
  2639. </animation>
  2640. <animation n="225">
  2641. <type type="string">textranslate</type>
  2642. <object-name type="string">Plane.225</object-name>
  2643. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[1]/elevation-ft</property>
  2644. <factor type="double">5.5556e-05</factor>
  2645. <axis>
  2646. <x type="double">1</x>
  2647. </axis>
  2648. </animation>
  2649. <animation n="226">
  2650. <type type="string">textranslate</type>
  2651. <object-name type="string">Plane.226</object-name>
  2652. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[2]/elevation-ft</property>
  2653. <factor type="double">5.5556e-05</factor>
  2654. <axis>
  2655. <x type="double">1</x>
  2656. </axis>
  2657. </animation>
  2658. <animation n="227">
  2659. <type type="string">textranslate</type>
  2660. <object-name type="string">Plane.227</object-name>
  2661. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[3]/elevation-ft</property>
  2662. <factor type="double">5.5556e-05</factor>
  2663. <axis>
  2664. <x type="double">1</x>
  2665. </axis>
  2666. </animation>
  2667. <animation n="228">
  2668. <type type="string">textranslate</type>
  2669. <object-name type="string">Plane.228</object-name>
  2670. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[4]/elevation-ft</property>
  2671. <factor type="double">5.5556e-05</factor>
  2672. <axis>
  2673. <x type="double">1</x>
  2674. </axis>
  2675. </animation>
  2676. <animation n="229">
  2677. <type type="string">textranslate</type>
  2678. <object-name type="string">Plane.229</object-name>
  2679. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[5]/elevation-ft</property>
  2680. <factor type="double">5.5556e-05</factor>
  2681. <axis>
  2682. <x type="double">1</x>
  2683. </axis>
  2684. </animation>
  2685. <animation n="230">
  2686. <type type="string">textranslate</type>
  2687. <object-name type="string">Plane.230</object-name>
  2688. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[6]/elevation-ft</property>
  2689. <factor type="double">5.5556e-05</factor>
  2690. <axis>
  2691. <x type="double">1</x>
  2692. </axis>
  2693. </animation>
  2694. <animation n="231">
  2695. <type type="string">textranslate</type>
  2696. <object-name type="string">Plane.231</object-name>
  2697. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[7]/elevation-ft</property>
  2698. <factor type="double">5.5556e-05</factor>
  2699. <axis>
  2700. <x type="double">1</x>
  2701. </axis>
  2702. </animation>
  2703. <animation n="232">
  2704. <type type="string">textranslate</type>
  2705. <object-name type="string">Plane.232</object-name>
  2706. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[8]/elevation-ft</property>
  2707. <factor type="double">5.5556e-05</factor>
  2708. <axis>
  2709. <x type="double">1</x>
  2710. </axis>
  2711. </animation>
  2712. <animation n="233">
  2713. <type type="string">textranslate</type>
  2714. <object-name type="string">Plane.233</object-name>
  2715. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[9]/elevation-ft</property>
  2716. <factor type="double">5.5556e-05</factor>
  2717. <axis>
  2718. <x type="double">1</x>
  2719. </axis>
  2720. </animation>
  2721. <animation n="234">
  2722. <type type="string">textranslate</type>
  2723. <object-name type="string">Plane.234</object-name>
  2724. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[10]/elevation-ft</property>
  2725. <factor type="double">5.5556e-05</factor>
  2726. <axis>
  2727. <x type="double">1</x>
  2728. </axis>
  2729. </animation>
  2730. <animation n="235">
  2731. <type type="string">textranslate</type>
  2732. <object-name type="string">Plane.235</object-name>
  2733. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[11]/elevation-ft</property>
  2734. <factor type="double">5.5556e-05</factor>
  2735. <axis>
  2736. <x type="double">1</x>
  2737. </axis>
  2738. </animation>
  2739. <animation n="236">
  2740. <type type="string">textranslate</type>
  2741. <object-name type="string">Plane.236</object-name>
  2742. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[12]/elevation-ft</property>
  2743. <factor type="double">5.5556e-05</factor>
  2744. <axis>
  2745. <x type="double">1</x>
  2746. </axis>
  2747. </animation>
  2748. <animation n="237">
  2749. <type type="string">textranslate</type>
  2750. <object-name type="string">Plane.237</object-name>
  2751. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[13]/elevation-ft</property>
  2752. <factor type="double">5.5556e-05</factor>
  2753. <axis>
  2754. <x type="double">1</x>
  2755. </axis>
  2756. </animation>
  2757. <animation n="238">
  2758. <type type="string">textranslate</type>
  2759. <object-name type="string">Plane.238</object-name>
  2760. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[14]/elevation-ft</property>
  2761. <factor type="double">5.5556e-05</factor>
  2762. <axis>
  2763. <x type="double">1</x>
  2764. </axis>
  2765. </animation>
  2766. <animation n="239">
  2767. <type type="string">textranslate</type>
  2768. <object-name type="string">Plane.239</object-name>
  2769. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[15]/elevation-ft</property>
  2770. <factor type="double">5.5556e-05</factor>
  2771. <axis>
  2772. <x type="double">1</x>
  2773. </axis>
  2774. </animation>
  2775. <animation n="240">
  2776. <type type="string">textranslate</type>
  2777. <object-name type="string">Plane.240</object-name>
  2778. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[16]/elevation-ft</property>
  2779. <factor type="double">5.5556e-05</factor>
  2780. <axis>
  2781. <x type="double">1</x>
  2782. </axis>
  2783. </animation>
  2784. <animation n="241">
  2785. <type type="string">textranslate</type>
  2786. <object-name type="string">Plane.241</object-name>
  2787. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[17]/elevation-ft</property>
  2788. <factor type="double">5.5556e-05</factor>
  2789. <axis>
  2790. <x type="double">1</x>
  2791. </axis>
  2792. </animation>
  2793. <animation n="242">
  2794. <type type="string">textranslate</type>
  2795. <object-name type="string">Plane.242</object-name>
  2796. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[18]/elevation-ft</property>
  2797. <factor type="double">5.5556e-05</factor>
  2798. <axis>
  2799. <x type="double">1</x>
  2800. </axis>
  2801. </animation>
  2802. <animation n="243">
  2803. <type type="string">textranslate</type>
  2804. <object-name type="string">Plane.243</object-name>
  2805. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[19]/elevation-ft</property>
  2806. <factor type="double">5.5556e-05</factor>
  2807. <axis>
  2808. <x type="double">1</x>
  2809. </axis>
  2810. </animation>
  2811. <animation n="244">
  2812. <type type="string">textranslate</type>
  2813. <object-name type="string">Plane.244</object-name>
  2814. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[20]/elevation-ft</property>
  2815. <factor type="double">5.5556e-05</factor>
  2816. <axis>
  2817. <x type="double">1</x>
  2818. </axis>
  2819. </animation>
  2820. <animation n="245">
  2821. <type type="string">textranslate</type>
  2822. <object-name type="string">Plane.245</object-name>
  2823. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[21]/elevation-ft</property>
  2824. <factor type="double">5.5556e-05</factor>
  2825. <axis>
  2826. <x type="double">1</x>
  2827. </axis>
  2828. </animation>
  2829. <animation n="246">
  2830. <type type="string">textranslate</type>
  2831. <object-name type="string">Plane.246</object-name>
  2832. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[22]/elevation-ft</property>
  2833. <factor type="double">5.5556e-05</factor>
  2834. <axis>
  2835. <x type="double">1</x>
  2836. </axis>
  2837. </animation>
  2838. <animation n="247">
  2839. <type type="string">textranslate</type>
  2840. <object-name type="string">Plane.247</object-name>
  2841. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[23]/elevation-ft</property>
  2842. <factor type="double">5.5556e-05</factor>
  2843. <axis>
  2844. <x type="double">1</x>
  2845. </axis>
  2846. </animation>
  2847. <animation n="248">
  2848. <type type="string">textranslate</type>
  2849. <object-name type="string">Plane.248</object-name>
  2850. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[24]/elevation-ft</property>
  2851. <factor type="double">5.5556e-05</factor>
  2852. <axis>
  2853. <x type="double">1</x>
  2854. </axis>
  2855. </animation>
  2856. <animation n="249">
  2857. <type type="string">textranslate</type>
  2858. <object-name type="string">Plane.249</object-name>
  2859. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[25]/elevation-ft</property>
  2860. <factor type="double">5.5556e-05</factor>
  2861. <axis>
  2862. <x type="double">1</x>
  2863. </axis>
  2864. </animation>
  2865. <animation n="250">
  2866. <type type="string">textranslate</type>
  2867. <object-name type="string">Plane.250</object-name>
  2868. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[26]/elevation-ft</property>
  2869. <factor type="double">5.5556e-05</factor>
  2870. <axis>
  2871. <x type="double">1</x>
  2872. </axis>
  2873. </animation>
  2874. <animation n="251">
  2875. <type type="string">textranslate</type>
  2876. <object-name type="string">Plane.251</object-name>
  2877. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[27]/elevation-ft</property>
  2878. <factor type="double">5.5556e-05</factor>
  2879. <axis>
  2880. <x type="double">1</x>
  2881. </axis>
  2882. </animation>
  2883. <animation n="252">
  2884. <type type="string">textranslate</type>
  2885. <object-name type="string">Plane.252</object-name>
  2886. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[28]/elevation-ft</property>
  2887. <factor type="double">5.5556e-05</factor>
  2888. <axis>
  2889. <x type="double">1</x>
  2890. </axis>
  2891. </animation>
  2892. <animation n="253">
  2893. <type type="string">textranslate</type>
  2894. <object-name type="string">Plane.253</object-name>
  2895. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[29]/elevation-ft</property>
  2896. <factor type="double">5.5556e-05</factor>
  2897. <axis>
  2898. <x type="double">1</x>
  2899. </axis>
  2900. </animation>
  2901. <animation n="254">
  2902. <type type="string">textranslate</type>
  2903. <object-name type="string">Plane.254</object-name>
  2904. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[30]/elevation-ft</property>
  2905. <factor type="double">5.5556e-05</factor>
  2906. <axis>
  2907. <x type="double">1</x>
  2908. </axis>
  2909. </animation>
  2910. <animation n="255">
  2911. <type type="string">textranslate</type>
  2912. <object-name type="string">Plane.255</object-name>
  2913. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[31]/elevation-ft</property>
  2914. <factor type="double">5.5556e-05</factor>
  2915. <axis>
  2916. <x type="double">1</x>
  2917. </axis>
  2918. </animation>
  2919. <animation n="257">
  2920. <type type="string">textranslate</type>
  2921. <object-name type="string">Plane.257</object-name>
  2922. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[1]/elevation-ft</property>
  2923. <factor type="double">5.5556e-05</factor>
  2924. <axis>
  2925. <x type="double">1</x>
  2926. </axis>
  2927. </animation>
  2928. <animation n="258">
  2929. <type type="string">textranslate</type>
  2930. <object-name type="string">Plane.258</object-name>
  2931. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[2]/elevation-ft</property>
  2932. <factor type="double">5.5556e-05</factor>
  2933. <axis>
  2934. <x type="double">1</x>
  2935. </axis>
  2936. </animation>
  2937. <animation n="259">
  2938. <type type="string">textranslate</type>
  2939. <object-name type="string">Plane.259</object-name>
  2940. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[3]/elevation-ft</property>
  2941. <factor type="double">5.5556e-05</factor>
  2942. <axis>
  2943. <x type="double">1</x>
  2944. </axis>
  2945. </animation>
  2946. <animation n="260">
  2947. <type type="string">textranslate</type>
  2948. <object-name type="string">Plane.260</object-name>
  2949. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[4]/elevation-ft</property>
  2950. <factor type="double">5.5556e-05</factor>
  2951. <axis>
  2952. <x type="double">1</x>
  2953. </axis>
  2954. </animation>
  2955. <animation n="261">
  2956. <type type="string">textranslate</type>
  2957. <object-name type="string">Plane.261</object-name>
  2958. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[5]/elevation-ft</property>
  2959. <factor type="double">5.5556e-05</factor>
  2960. <axis>
  2961. <x type="double">1</x>
  2962. </axis>
  2963. </animation>
  2964. <animation n="262">
  2965. <type type="string">textranslate</type>
  2966. <object-name type="string">Plane.262</object-name>
  2967. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[6]/elevation-ft</property>
  2968. <factor type="double">5.5556e-05</factor>
  2969. <axis>
  2970. <x type="double">1</x>
  2971. </axis>
  2972. </animation>
  2973. <animation n="263">
  2974. <type type="string">textranslate</type>
  2975. <object-name type="string">Plane.263</object-name>
  2976. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[7]/elevation-ft</property>
  2977. <factor type="double">5.5556e-05</factor>
  2978. <axis>
  2979. <x type="double">1</x>
  2980. </axis>
  2981. </animation>
  2982. <animation n="264">
  2983. <type type="string">textranslate</type>
  2984. <object-name type="string">Plane.264</object-name>
  2985. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[8]/elevation-ft</property>
  2986. <factor type="double">5.5556e-05</factor>
  2987. <axis>
  2988. <x type="double">1</x>
  2989. </axis>
  2990. </animation>
  2991. <animation n="265">
  2992. <type type="string">textranslate</type>
  2993. <object-name type="string">Plane.265</object-name>
  2994. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[9]/elevation-ft</property>
  2995. <factor type="double">5.5556e-05</factor>
  2996. <axis>
  2997. <x type="double">1</x>
  2998. </axis>
  2999. </animation>
  3000. <animation n="266">
  3001. <type type="string">textranslate</type>
  3002. <object-name type="string">Plane.266</object-name>
  3003. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[10]/elevation-ft</property>
  3004. <factor type="double">5.5556e-05</factor>
  3005. <axis>
  3006. <x type="double">1</x>
  3007. </axis>
  3008. </animation>
  3009. <animation n="267">
  3010. <type type="string">textranslate</type>
  3011. <object-name type="string">Plane.267</object-name>
  3012. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[11]/elevation-ft</property>
  3013. <factor type="double">5.5556e-05</factor>
  3014. <axis>
  3015. <x type="double">1</x>
  3016. </axis>
  3017. </animation>
  3018. <animation n="268">
  3019. <type type="string">textranslate</type>
  3020. <object-name type="string">Plane.268</object-name>
  3021. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[12]/elevation-ft</property>
  3022. <factor type="double">5.5556e-05</factor>
  3023. <axis>
  3024. <x type="double">1</x>
  3025. </axis>
  3026. </animation>
  3027. <animation n="269">
  3028. <type type="string">textranslate</type>
  3029. <object-name type="string">Plane.269</object-name>
  3030. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[13]/elevation-ft</property>
  3031. <factor type="double">5.5556e-05</factor>
  3032. <axis>
  3033. <x type="double">1</x>
  3034. </axis>
  3035. </animation>
  3036. <animation n="270">
  3037. <type type="string">textranslate</type>
  3038. <object-name type="string">Plane.270</object-name>
  3039. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[14]/elevation-ft</property>
  3040. <factor type="double">5.5556e-05</factor>
  3041. <axis>
  3042. <x type="double">1</x>
  3043. </axis>
  3044. </animation>
  3045. <animation n="271">
  3046. <type type="string">textranslate</type>
  3047. <object-name type="string">Plane.271</object-name>
  3048. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[15]/elevation-ft</property>
  3049. <factor type="double">5.5556e-05</factor>
  3050. <axis>
  3051. <x type="double">1</x>
  3052. </axis>
  3053. </animation>
  3054. <animation n="272">
  3055. <type type="string">textranslate</type>
  3056. <object-name type="string">Plane.272</object-name>
  3057. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[16]/elevation-ft</property>
  3058. <factor type="double">5.5556e-05</factor>
  3059. <axis>
  3060. <x type="double">1</x>
  3061. </axis>
  3062. </animation>
  3063. <animation n="273">
  3064. <type type="string">textranslate</type>
  3065. <object-name type="string">Plane.273</object-name>
  3066. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[17]/elevation-ft</property>
  3067. <factor type="double">5.5556e-05</factor>
  3068. <axis>
  3069. <x type="double">1</x>
  3070. </axis>
  3071. </animation>
  3072. <animation n="274">
  3073. <type type="string">textranslate</type>
  3074. <object-name type="string">Plane.274</object-name>
  3075. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[18]/elevation-ft</property>
  3076. <factor type="double">5.5556e-05</factor>
  3077. <axis>
  3078. <x type="double">1</x>
  3079. </axis>
  3080. </animation>
  3081. <animation n="275">
  3082. <type type="string">textranslate</type>
  3083. <object-name type="string">Plane.275</object-name>
  3084. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[19]/elevation-ft</property>
  3085. <factor type="double">5.5556e-05</factor>
  3086. <axis>
  3087. <x type="double">1</x>
  3088. </axis>
  3089. </animation>
  3090. <animation n="276">
  3091. <type type="string">textranslate</type>
  3092. <object-name type="string">Plane.276</object-name>
  3093. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[20]/elevation-ft</property>
  3094. <factor type="double">5.5556e-05</factor>
  3095. <axis>
  3096. <x type="double">1</x>
  3097. </axis>
  3098. </animation>
  3099. <animation n="277">
  3100. <type type="string">textranslate</type>
  3101. <object-name type="string">Plane.277</object-name>
  3102. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[21]/elevation-ft</property>
  3103. <factor type="double">5.5556e-05</factor>
  3104. <axis>
  3105. <x type="double">1</x>
  3106. </axis>
  3107. </animation>
  3108. <animation n="278">
  3109. <type type="string">textranslate</type>
  3110. <object-name type="string">Plane.278</object-name>
  3111. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[22]/elevation-ft</property>
  3112. <factor type="double">5.5556e-05</factor>
  3113. <axis>
  3114. <x type="double">1</x>
  3115. </axis>
  3116. </animation>
  3117. <animation n="279">
  3118. <type type="string">textranslate</type>
  3119. <object-name type="string">Plane.279</object-name>
  3120. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[23]/elevation-ft</property>
  3121. <factor type="double">5.5556e-05</factor>
  3122. <axis>
  3123. <x type="double">1</x>
  3124. </axis>
  3125. </animation>
  3126. <animation n="280">
  3127. <type type="string">textranslate</type>
  3128. <object-name type="string">Plane.280</object-name>
  3129. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[24]/elevation-ft</property>
  3130. <factor type="double">5.5556e-05</factor>
  3131. <axis>
  3132. <x type="double">1</x>
  3133. </axis>
  3134. </animation>
  3135. <animation n="281">
  3136. <type type="string">textranslate</type>
  3137. <object-name type="string">Plane.281</object-name>
  3138. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[25]/elevation-ft</property>
  3139. <factor type="double">5.5556e-05</factor>
  3140. <axis>
  3141. <x type="double">1</x>
  3142. </axis>
  3143. </animation>
  3144. <animation n="282">
  3145. <type type="string">textranslate</type>
  3146. <object-name type="string">Plane.282</object-name>
  3147. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[26]/elevation-ft</property>
  3148. <factor type="double">5.5556e-05</factor>
  3149. <axis>
  3150. <x type="double">1</x>
  3151. </axis>
  3152. </animation>
  3153. <animation n="283">
  3154. <type type="string">textranslate</type>
  3155. <object-name type="string">Plane.283</object-name>
  3156. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[27]/elevation-ft</property>
  3157. <factor type="double">5.5556e-05</factor>
  3158. <axis>
  3159. <x type="double">1</x>
  3160. </axis>
  3161. </animation>
  3162. <animation n="284">
  3163. <type type="string">textranslate</type>
  3164. <object-name type="string">Plane.284</object-name>
  3165. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[28]/elevation-ft</property>
  3166. <factor type="double">5.5556e-05</factor>
  3167. <axis>
  3168. <x type="double">1</x>
  3169. </axis>
  3170. </animation>
  3171. <animation n="285">
  3172. <type type="string">textranslate</type>
  3173. <object-name type="string">Plane.285</object-name>
  3174. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[29]/elevation-ft</property>
  3175. <factor type="double">5.5556e-05</factor>
  3176. <axis>
  3177. <x type="double">1</x>
  3178. </axis>
  3179. </animation>
  3180. <animation n="286">
  3181. <type type="string">textranslate</type>
  3182. <object-name type="string">Plane.286</object-name>
  3183. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[30]/elevation-ft</property>
  3184. <factor type="double">5.5556e-05</factor>
  3185. <axis>
  3186. <x type="double">1</x>
  3187. </axis>
  3188. </animation>
  3189. <animation n="287">
  3190. <type type="string">textranslate</type>
  3191. <object-name type="string">Plane.287</object-name>
  3192. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[31]/elevation-ft</property>
  3193. <factor type="double">5.5556e-05</factor>
  3194. <axis>
  3195. <x type="double">1</x>
  3196. </axis>
  3197. </animation>
  3198. <animation n="289">
  3199. <type type="string">textranslate</type>
  3200. <object-name type="string">Plane.289</object-name>
  3201. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[1]/elevation-ft</property>
  3202. <factor type="double">5.5556e-05</factor>
  3203. <axis>
  3204. <x type="double">1</x>
  3205. </axis>
  3206. </animation>
  3207. <animation n="290">
  3208. <type type="string">textranslate</type>
  3209. <object-name type="string">Plane.290</object-name>
  3210. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[2]/elevation-ft</property>
  3211. <factor type="double">5.5556e-05</factor>
  3212. <axis>
  3213. <x type="double">1</x>
  3214. </axis>
  3215. </animation>
  3216. <animation n="291">
  3217. <type type="string">textranslate</type>
  3218. <object-name type="string">Plane.291</object-name>
  3219. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[3]/elevation-ft</property>
  3220. <factor type="double">5.5556e-05</factor>
  3221. <axis>
  3222. <x type="double">1</x>
  3223. </axis>
  3224. </animation>
  3225. <animation n="292">
  3226. <type type="string">textranslate</type>
  3227. <object-name type="string">Plane.292</object-name>
  3228. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[4]/elevation-ft</property>
  3229. <factor type="double">5.5556e-05</factor>
  3230. <axis>
  3231. <x type="double">1</x>
  3232. </axis>
  3233. </animation>
  3234. <animation n="293">
  3235. <type type="string">textranslate</type>
  3236. <object-name type="string">Plane.293</object-name>
  3237. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[5]/elevation-ft</property>
  3238. <factor type="double">5.5556e-05</factor>
  3239. <axis>
  3240. <x type="double">1</x>
  3241. </axis>
  3242. </animation>
  3243. <animation n="294">
  3244. <type type="string">textranslate</type>
  3245. <object-name type="string">Plane.294</object-name>
  3246. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[6]/elevation-ft</property>
  3247. <factor type="double">5.5556e-05</factor>
  3248. <axis>
  3249. <x type="double">1</x>
  3250. </axis>
  3251. </animation>
  3252. <animation n="295">
  3253. <type type="string">textranslate</type>
  3254. <object-name type="string">Plane.295</object-name>
  3255. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[7]/elevation-ft</property>
  3256. <factor type="double">5.5556e-05</factor>
  3257. <axis>
  3258. <x type="double">1</x>
  3259. </axis>
  3260. </animation>
  3261. <animation n="296">
  3262. <type type="string">textranslate</type>
  3263. <object-name type="string">Plane.296</object-name>
  3264. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[8]/elevation-ft</property>
  3265. <factor type="double">5.5556e-05</factor>
  3266. <axis>
  3267. <x type="double">1</x>
  3268. </axis>
  3269. </animation>
  3270. <animation n="297">
  3271. <type type="string">textranslate</type>
  3272. <object-name type="string">Plane.297</object-name>
  3273. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[9]/elevation-ft</property>
  3274. <factor type="double">5.5556e-05</factor>
  3275. <axis>
  3276. <x type="double">1</x>
  3277. </axis>
  3278. </animation>
  3279. <animation n="298">
  3280. <type type="string">textranslate</type>
  3281. <object-name type="string">Plane.298</object-name>
  3282. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[10]/elevation-ft</property>
  3283. <factor type="double">5.5556e-05</factor>
  3284. <axis>
  3285. <x type="double">1</x>
  3286. </axis>
  3287. </animation>
  3288. <animation n="299">
  3289. <type type="string">textranslate</type>
  3290. <object-name type="string">Plane.299</object-name>
  3291. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[11]/elevation-ft</property>
  3292. <factor type="double">5.5556e-05</factor>
  3293. <axis>
  3294. <x type="double">1</x>
  3295. </axis>
  3296. </animation>
  3297. <animation n="300">
  3298. <type type="string">textranslate</type>
  3299. <object-name type="string">Plane.300</object-name>
  3300. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[12]/elevation-ft</property>
  3301. <factor type="double">5.5556e-05</factor>
  3302. <axis>
  3303. <x type="double">1</x>
  3304. </axis>
  3305. </animation>
  3306. <animation n="301">
  3307. <type type="string">textranslate</type>
  3308. <object-name type="string">Plane.301</object-name>
  3309. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[13]/elevation-ft</property>
  3310. <factor type="double">5.5556e-05</factor>
  3311. <axis>
  3312. <x type="double">1</x>
  3313. </axis>
  3314. </animation>
  3315. <animation n="302">
  3316. <type type="string">textranslate</type>
  3317. <object-name type="string">Plane.302</object-name>
  3318. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[14]/elevation-ft</property>
  3319. <factor type="double">5.5556e-05</factor>
  3320. <axis>
  3321. <x type="double">1</x>
  3322. </axis>
  3323. </animation>
  3324. <animation n="303">
  3325. <type type="string">textranslate</type>
  3326. <object-name type="string">Plane.303</object-name>
  3327. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[15]/elevation-ft</property>
  3328. <factor type="double">5.5556e-05</factor>
  3329. <axis>
  3330. <x type="double">1</x>
  3331. </axis>
  3332. </animation>
  3333. <animation n="304">
  3334. <type type="string">textranslate</type>
  3335. <object-name type="string">Plane.304</object-name>
  3336. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[16]/elevation-ft</property>
  3337. <factor type="double">5.5556e-05</factor>
  3338. <axis>
  3339. <x type="double">1</x>
  3340. </axis>
  3341. </animation>
  3342. <animation n="305">
  3343. <type type="string">textranslate</type>
  3344. <object-name type="string">Plane.305</object-name>
  3345. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[17]/elevation-ft</property>
  3346. <factor type="double">5.5556e-05</factor>
  3347. <axis>
  3348. <x type="double">1</x>
  3349. </axis>
  3350. </animation>
  3351. <animation n="306">
  3352. <type type="string">textranslate</type>
  3353. <object-name type="string">Plane.306</object-name>
  3354. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[18]/elevation-ft</property>
  3355. <factor type="double">5.5556e-05</factor>
  3356. <axis>
  3357. <x type="double">1</x>
  3358. </axis>
  3359. </animation>
  3360. <animation n="307">
  3361. <type type="string">textranslate</type>
  3362. <object-name type="string">Plane.307</object-name>
  3363. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[19]/elevation-ft</property>
  3364. <factor type="double">5.5556e-05</factor>
  3365. <axis>
  3366. <x type="double">1</x>
  3367. </axis>
  3368. </animation>
  3369. <animation n="308">
  3370. <type type="string">textranslate</type>
  3371. <object-name type="string">Plane.308</object-name>
  3372. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[20]/elevation-ft</property>
  3373. <factor type="double">5.5556e-05</factor>
  3374. <axis>
  3375. <x type="double">1</x>
  3376. </axis>
  3377. </animation>
  3378. <animation n="309">
  3379. <type type="string">textranslate</type>
  3380. <object-name type="string">Plane.309</object-name>
  3381. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[21]/elevation-ft</property>
  3382. <factor type="double">5.5556e-05</factor>
  3383. <axis>
  3384. <x type="double">1</x>
  3385. </axis>
  3386. </animation>
  3387. <animation n="310">
  3388. <type type="string">textranslate</type>
  3389. <object-name type="string">Plane.310</object-name>
  3390. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[22]/elevation-ft</property>
  3391. <factor type="double">5.5556e-05</factor>
  3392. <axis>
  3393. <x type="double">1</x>
  3394. </axis>
  3395. </animation>
  3396. <animation n="311">
  3397. <type type="string">textranslate</type>
  3398. <object-name type="string">Plane.311</object-name>
  3399. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[23]/elevation-ft</property>
  3400. <factor type="double">5.5556e-05</factor>
  3401. <axis>
  3402. <x type="double">1</x>
  3403. </axis>
  3404. </animation>
  3405. <animation n="312">
  3406. <type type="string">textranslate</type>
  3407. <object-name type="string">Plane.312</object-name>
  3408. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[24]/elevation-ft</property>
  3409. <factor type="double">5.5556e-05</factor>
  3410. <axis>
  3411. <x type="double">1</x>
  3412. </axis>
  3413. </animation>
  3414. <animation n="313">
  3415. <type type="string">textranslate</type>
  3416. <object-name type="string">Plane.313</object-name>
  3417. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[25]/elevation-ft</property>
  3418. <factor type="double">5.5556e-05</factor>
  3419. <axis>
  3420. <x type="double">1</x>
  3421. </axis>
  3422. </animation>
  3423. <animation n="314">
  3424. <type type="string">textranslate</type>
  3425. <object-name type="string">Plane.314</object-name>
  3426. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[26]/elevation-ft</property>
  3427. <factor type="double">5.5556e-05</factor>
  3428. <axis>
  3429. <x type="double">1</x>
  3430. </axis>
  3431. </animation>
  3432. <animation n="315">
  3433. <type type="string">textranslate</type>
  3434. <object-name type="string">Plane.315</object-name>
  3435. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[27]/elevation-ft</property>
  3436. <factor type="double">5.5556e-05</factor>
  3437. <axis>
  3438. <x type="double">1</x>
  3439. </axis>
  3440. </animation>
  3441. <animation n="316">
  3442. <type type="string">textranslate</type>
  3443. <object-name type="string">Plane.316</object-name>
  3444. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[28]/elevation-ft</property>
  3445. <factor type="double">5.5556e-05</factor>
  3446. <axis>
  3447. <x type="double">1</x>
  3448. </axis>
  3449. </animation>
  3450. <animation n="317">
  3451. <type type="string">textranslate</type>
  3452. <object-name type="string">Plane.317</object-name>
  3453. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[29]/elevation-ft</property>
  3454. <factor type="double">5.5556e-05</factor>
  3455. <axis>
  3456. <x type="double">1</x>
  3457. </axis>
  3458. </animation>
  3459. <animation n="318">
  3460. <type type="string">textranslate</type>
  3461. <object-name type="string">Plane.318</object-name>
  3462. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[30]/elevation-ft</property>
  3463. <factor type="double">5.5556e-05</factor>
  3464. <axis>
  3465. <x type="double">1</x>
  3466. </axis>
  3467. </animation>
  3468. <animation n="319">
  3469. <type type="string">textranslate</type>
  3470. <object-name type="string">Plane.319</object-name>
  3471. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[31]/elevation-ft</property>
  3472. <factor type="double">5.5556e-05</factor>
  3473. <axis>
  3474. <x type="double">1</x>
  3475. </axis>
  3476. </animation>
  3477. <animation n="321">
  3478. <type type="string">textranslate</type>
  3479. <object-name type="string">Plane.321</object-name>
  3480. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[1]/elevation-ft</property>
  3481. <factor type="double">5.5556e-05</factor>
  3482. <axis>
  3483. <x type="double">1</x>
  3484. </axis>
  3485. </animation>
  3486. <animation n="322">
  3487. <type type="string">textranslate</type>
  3488. <object-name type="string">Plane.322</object-name>
  3489. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[2]/elevation-ft</property>
  3490. <factor type="double">5.5556e-05</factor>
  3491. <axis>
  3492. <x type="double">1</x>
  3493. </axis>
  3494. </animation>
  3495. <animation n="323">
  3496. <type type="string">textranslate</type>
  3497. <object-name type="string">Plane.323</object-name>
  3498. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[3]/elevation-ft</property>
  3499. <factor type="double">5.5556e-05</factor>
  3500. <axis>
  3501. <x type="double">1</x>
  3502. </axis>
  3503. </animation>
  3504. <animation n="324">
  3505. <type type="string">textranslate</type>
  3506. <object-name type="string">Plane.324</object-name>
  3507. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[4]/elevation-ft</property>
  3508. <factor type="double">5.5556e-05</factor>
  3509. <axis>
  3510. <x type="double">1</x>
  3511. </axis>
  3512. </animation>
  3513. <animation n="325">
  3514. <type type="string">textranslate</type>
  3515. <object-name type="string">Plane.325</object-name>
  3516. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[5]/elevation-ft</property>
  3517. <factor type="double">5.5556e-05</factor>
  3518. <axis>
  3519. <x type="double">1</x>
  3520. </axis>
  3521. </animation>
  3522. <animation n="326">
  3523. <type type="string">textranslate</type>
  3524. <object-name type="string">Plane.326</object-name>
  3525. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[6]/elevation-ft</property>
  3526. <factor type="double">5.5556e-05</factor>
  3527. <axis>
  3528. <x type="double">1</x>
  3529. </axis>
  3530. </animation>
  3531. <animation n="327">
  3532. <type type="string">textranslate</type>
  3533. <object-name type="string">Plane.327</object-name>
  3534. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[7]/elevation-ft</property>
  3535. <factor type="double">5.5556e-05</factor>
  3536. <axis>
  3537. <x type="double">1</x>
  3538. </axis>
  3539. </animation>
  3540. <animation n="328">
  3541. <type type="string">textranslate</type>
  3542. <object-name type="string">Plane.328</object-name>
  3543. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[8]/elevation-ft</property>
  3544. <factor type="double">5.5556e-05</factor>
  3545. <axis>
  3546. <x type="double">1</x>
  3547. </axis>
  3548. </animation>
  3549. <animation n="329">
  3550. <type type="string">textranslate</type>
  3551. <object-name type="string">Plane.329</object-name>
  3552. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[9]/elevation-ft</property>
  3553. <factor type="double">5.5556e-05</factor>
  3554. <axis>
  3555. <x type="double">1</x>
  3556. </axis>
  3557. </animation>
  3558. <animation n="330">
  3559. <type type="string">textranslate</type>
  3560. <object-name type="string">Plane.330</object-name>
  3561. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[10]/elevation-ft</property>
  3562. <factor type="double">5.5556e-05</factor>
  3563. <axis>
  3564. <x type="double">1</x>
  3565. </axis>
  3566. </animation>
  3567. <animation n="331">
  3568. <type type="string">textranslate</type>
  3569. <object-name type="string">Plane.331</object-name>
  3570. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[11]/elevation-ft</property>
  3571. <factor type="double">5.5556e-05</factor>
  3572. <axis>
  3573. <x type="double">1</x>
  3574. </axis>
  3575. </animation>
  3576. <animation n="332">
  3577. <type type="string">textranslate</type>
  3578. <object-name type="string">Plane.332</object-name>
  3579. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[12]/elevation-ft</property>
  3580. <factor type="double">5.5556e-05</factor>
  3581. <axis>
  3582. <x type="double">1</x>
  3583. </axis>
  3584. </animation>
  3585. <animation n="333">
  3586. <type type="string">textranslate</type>
  3587. <object-name type="string">Plane.333</object-name>
  3588. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[13]/elevation-ft</property>
  3589. <factor type="double">5.5556e-05</factor>
  3590. <axis>
  3591. <x type="double">1</x>
  3592. </axis>
  3593. </animation>
  3594. <animation n="334">
  3595. <type type="string">textranslate</type>
  3596. <object-name type="string">Plane.334</object-name>
  3597. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[14]/elevation-ft</property>
  3598. <factor type="double">5.5556e-05</factor>
  3599. <axis>
  3600. <x type="double">1</x>
  3601. </axis>
  3602. </animation>
  3603. <animation n="335">
  3604. <type type="string">textranslate</type>
  3605. <object-name type="string">Plane.335</object-name>
  3606. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[15]/elevation-ft</property>
  3607. <factor type="double">5.5556e-05</factor>
  3608. <axis>
  3609. <x type="double">1</x>
  3610. </axis>
  3611. </animation>
  3612. <animation n="336">
  3613. <type type="string">textranslate</type>
  3614. <object-name type="string">Plane.336</object-name>
  3615. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[16]/elevation-ft</property>
  3616. <factor type="double">5.5556e-05</factor>
  3617. <axis>
  3618. <x type="double">1</x>
  3619. </axis>
  3620. </animation>
  3621. <animation n="337">
  3622. <type type="string">textranslate</type>
  3623. <object-name type="string">Plane.337</object-name>
  3624. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[17]/elevation-ft</property>
  3625. <factor type="double">5.5556e-05</factor>
  3626. <axis>
  3627. <x type="double">1</x>
  3628. </axis>
  3629. </animation>
  3630. <animation n="338">
  3631. <type type="string">textranslate</type>
  3632. <object-name type="string">Plane.338</object-name>
  3633. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[18]/elevation-ft</property>
  3634. <factor type="double">5.5556e-05</factor>
  3635. <axis>
  3636. <x type="double">1</x>
  3637. </axis>
  3638. </animation>
  3639. <animation n="339">
  3640. <type type="string">textranslate</type>
  3641. <object-name type="string">Plane.339</object-name>
  3642. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[19]/elevation-ft</property>
  3643. <factor type="double">5.5556e-05</factor>
  3644. <axis>
  3645. <x type="double">1</x>
  3646. </axis>
  3647. </animation>
  3648. <animation n="340">
  3649. <type type="string">textranslate</type>
  3650. <object-name type="string">Plane.340</object-name>
  3651. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[20]/elevation-ft</property>
  3652. <factor type="double">5.5556e-05</factor>
  3653. <axis>
  3654. <x type="double">1</x>
  3655. </axis>
  3656. </animation>
  3657. <animation n="341">
  3658. <type type="string">textranslate</type>
  3659. <object-name type="string">Plane.341</object-name>
  3660. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[21]/elevation-ft</property>
  3661. <factor type="double">5.5556e-05</factor>
  3662. <axis>
  3663. <x type="double">1</x>
  3664. </axis>
  3665. </animation>
  3666. <animation n="342">
  3667. <type type="string">textranslate</type>
  3668. <object-name type="string">Plane.342</object-name>
  3669. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[22]/elevation-ft</property>
  3670. <factor type="double">5.5556e-05</factor>
  3671. <axis>
  3672. <x type="double">1</x>
  3673. </axis>
  3674. </animation>
  3675. <animation n="343">
  3676. <type type="string">textranslate</type>
  3677. <object-name type="string">Plane.343</object-name>
  3678. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[23]/elevation-ft</property>
  3679. <factor type="double">5.5556e-05</factor>
  3680. <axis>
  3681. <x type="double">1</x>
  3682. </axis>
  3683. </animation>
  3684. <animation n="344">
  3685. <type type="string">textranslate</type>
  3686. <object-name type="string">Plane.344</object-name>
  3687. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[24]/elevation-ft</property>
  3688. <factor type="double">5.5556e-05</factor>
  3689. <axis>
  3690. <x type="double">1</x>
  3691. </axis>
  3692. </animation>
  3693. <animation n="345">
  3694. <type type="string">textranslate</type>
  3695. <object-name type="string">Plane.345</object-name>
  3696. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[25]/elevation-ft</property>
  3697. <factor type="double">5.5556e-05</factor>
  3698. <axis>
  3699. <x type="double">1</x>
  3700. </axis>
  3701. </animation>
  3702. <animation n="346">
  3703. <type type="string">textranslate</type>
  3704. <object-name type="string">Plane.346</object-name>
  3705. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[26]/elevation-ft</property>
  3706. <factor type="double">5.5556e-05</factor>
  3707. <axis>
  3708. <x type="double">1</x>
  3709. </axis>
  3710. </animation>
  3711. <animation n="347">
  3712. <type type="string">textranslate</type>
  3713. <object-name type="string">Plane.347</object-name>
  3714. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[27]/elevation-ft</property>
  3715. <factor type="double">5.5556e-05</factor>
  3716. <axis>
  3717. <x type="double">1</x>
  3718. </axis>
  3719. </animation>
  3720. <animation n="348">
  3721. <type type="string">textranslate</type>
  3722. <object-name type="string">Plane.348</object-name>
  3723. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[28]/elevation-ft</property>
  3724. <factor type="double">5.5556e-05</factor>
  3725. <axis>
  3726. <x type="double">1</x>
  3727. </axis>
  3728. </animation>
  3729. <animation n="349">
  3730. <type type="string">textranslate</type>
  3731. <object-name type="string">Plane.349</object-name>
  3732. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[29]/elevation-ft</property>
  3733. <factor type="double">5.5556e-05</factor>
  3734. <axis>
  3735. <x type="double">1</x>
  3736. </axis>
  3737. </animation>
  3738. <animation n="350">
  3739. <type type="string">textranslate</type>
  3740. <object-name type="string">Plane.350</object-name>
  3741. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[30]/elevation-ft</property>
  3742. <factor type="double">5.5556e-05</factor>
  3743. <axis>
  3744. <x type="double">1</x>
  3745. </axis>
  3746. </animation>
  3747. <animation n="351">
  3748. <type type="string">textranslate</type>
  3749. <object-name type="string">Plane.351</object-name>
  3750. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[31]/elevation-ft</property>
  3751. <factor type="double">5.5556e-05</factor>
  3752. <axis>
  3753. <x type="double">1</x>
  3754. </axis>
  3755. </animation>
  3756. <animation n="353">
  3757. <type type="string">textranslate</type>
  3758. <object-name type="string">Plane.353</object-name>
  3759. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[1]/elevation-ft</property>
  3760. <factor type="double">5.5556e-05</factor>
  3761. <axis>
  3762. <x type="double">1</x>
  3763. </axis>
  3764. </animation>
  3765. <animation n="354">
  3766. <type type="string">textranslate</type>
  3767. <object-name type="string">Plane.354</object-name>
  3768. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[2]/elevation-ft</property>
  3769. <factor type="double">5.5556e-05</factor>
  3770. <axis>
  3771. <x type="double">1</x>
  3772. </axis>
  3773. </animation>
  3774. <animation n="355">
  3775. <type type="string">textranslate</type>
  3776. <object-name type="string">Plane.355</object-name>
  3777. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[3]/elevation-ft</property>
  3778. <factor type="double">5.5556e-05</factor>
  3779. <axis>
  3780. <x type="double">1</x>
  3781. </axis>
  3782. </animation>
  3783. <animation n="356">
  3784. <type type="string">textranslate</type>
  3785. <object-name type="string">Plane.356</object-name>
  3786. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[4]/elevation-ft</property>
  3787. <factor type="double">5.5556e-05</factor>
  3788. <axis>
  3789. <x type="double">1</x>
  3790. </axis>
  3791. </animation>
  3792. <animation n="357">
  3793. <type type="string">textranslate</type>
  3794. <object-name type="string">Plane.357</object-name>
  3795. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[5]/elevation-ft</property>
  3796. <factor type="double">5.5556e-05</factor>
  3797. <axis>
  3798. <x type="double">1</x>
  3799. </axis>
  3800. </animation>
  3801. <animation n="358">
  3802. <type type="string">textranslate</type>
  3803. <object-name type="string">Plane.358</object-name>
  3804. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[6]/elevation-ft</property>
  3805. <factor type="double">5.5556e-05</factor>
  3806. <axis>
  3807. <x type="double">1</x>
  3808. </axis>
  3809. </animation>
  3810. <animation n="359">
  3811. <type type="string">textranslate</type>
  3812. <object-name type="string">Plane.359</object-name>
  3813. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[7]/elevation-ft</property>
  3814. <factor type="double">5.5556e-05</factor>
  3815. <axis>
  3816. <x type="double">1</x>
  3817. </axis>
  3818. </animation>
  3819. <animation n="360">
  3820. <type type="string">textranslate</type>
  3821. <object-name type="string">Plane.360</object-name>
  3822. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[8]/elevation-ft</property>
  3823. <factor type="double">5.5556e-05</factor>
  3824. <axis>
  3825. <x type="double">1</x>
  3826. </axis>
  3827. </animation>
  3828. <animation n="361">
  3829. <type type="string">textranslate</type>
  3830. <object-name type="string">Plane.361</object-name>
  3831. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[9]/elevation-ft</property>
  3832. <factor type="double">5.5556e-05</factor>
  3833. <axis>
  3834. <x type="double">1</x>
  3835. </axis>
  3836. </animation>
  3837. <animation n="362">
  3838. <type type="string">textranslate</type>
  3839. <object-name type="string">Plane.362</object-name>
  3840. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[10]/elevation-ft</property>
  3841. <factor type="double">5.5556e-05</factor>
  3842. <axis>
  3843. <x type="double">1</x>
  3844. </axis>
  3845. </animation>
  3846. <animation n="363">
  3847. <type type="string">textranslate</type>
  3848. <object-name type="string">Plane.363</object-name>
  3849. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[11]/elevation-ft</property>
  3850. <factor type="double">5.5556e-05</factor>
  3851. <axis>
  3852. <x type="double">1</x>
  3853. </axis>
  3854. </animation>
  3855. <animation n="364">
  3856. <type type="string">textranslate</type>
  3857. <object-name type="string">Plane.364</object-name>
  3858. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[12]/elevation-ft</property>
  3859. <factor type="double">5.5556e-05</factor>
  3860. <axis>
  3861. <x type="double">1</x>
  3862. </axis>
  3863. </animation>
  3864. <animation n="365">
  3865. <type type="string">textranslate</type>
  3866. <object-name type="string">Plane.365</object-name>
  3867. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[13]/elevation-ft</property>
  3868. <factor type="double">5.5556e-05</factor>
  3869. <axis>
  3870. <x type="double">1</x>
  3871. </axis>
  3872. </animation>
  3873. <animation n="366">
  3874. <type type="string">textranslate</type>
  3875. <object-name type="string">Plane.366</object-name>
  3876. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[14]/elevation-ft</property>
  3877. <factor type="double">5.5556e-05</factor>
  3878. <axis>
  3879. <x type="double">1</x>
  3880. </axis>
  3881. </animation>
  3882. <animation n="367">
  3883. <type type="string">textranslate</type>
  3884. <object-name type="string">Plane.367</object-name>
  3885. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[15]/elevation-ft</property>
  3886. <factor type="double">5.5556e-05</factor>
  3887. <axis>
  3888. <x type="double">1</x>
  3889. </axis>
  3890. </animation>
  3891. <animation n="368">
  3892. <type type="string">textranslate</type>
  3893. <object-name type="string">Plane.368</object-name>
  3894. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[16]/elevation-ft</property>
  3895. <factor type="double">5.5556e-05</factor>
  3896. <axis>
  3897. <x type="double">1</x>
  3898. </axis>
  3899. </animation>
  3900. <animation n="369">
  3901. <type type="string">textranslate</type>
  3902. <object-name type="string">Plane.369</object-name>
  3903. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[17]/elevation-ft</property>
  3904. <factor type="double">5.5556e-05</factor>
  3905. <axis>
  3906. <x type="double">1</x>
  3907. </axis>
  3908. </animation>
  3909. <animation n="370">
  3910. <type type="string">textranslate</type>
  3911. <object-name type="string">Plane.370</object-name>
  3912. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[18]/elevation-ft</property>
  3913. <factor type="double">5.5556e-05</factor>
  3914. <axis>
  3915. <x type="double">1</x>
  3916. </axis>
  3917. </animation>
  3918. <animation n="371">
  3919. <type type="string">textranslate</type>
  3920. <object-name type="string">Plane.371</object-name>
  3921. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[19]/elevation-ft</property>
  3922. <factor type="double">5.5556e-05</factor>
  3923. <axis>
  3924. <x type="double">1</x>
  3925. </axis>
  3926. </animation>
  3927. <animation n="372">
  3928. <type type="string">textranslate</type>
  3929. <object-name type="string">Plane.372</object-name>
  3930. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[20]/elevation-ft</property>
  3931. <factor type="double">5.5556e-05</factor>
  3932. <axis>
  3933. <x type="double">1</x>
  3934. </axis>
  3935. </animation>
  3936. <animation n="373">
  3937. <type type="string">textranslate</type>
  3938. <object-name type="string">Plane.373</object-name>
  3939. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[21]/elevation-ft</property>
  3940. <factor type="double">5.5556e-05</factor>
  3941. <axis>
  3942. <x type="double">1</x>
  3943. </axis>
  3944. </animation>
  3945. <animation n="374">
  3946. <type type="string">textranslate</type>
  3947. <object-name type="string">Plane.374</object-name>
  3948. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[22]/elevation-ft</property>
  3949. <factor type="double">5.5556e-05</factor>
  3950. <axis>
  3951. <x type="double">1</x>
  3952. </axis>
  3953. </animation>
  3954. <animation n="375">
  3955. <type type="string">textranslate</type>
  3956. <object-name type="string">Plane.375</object-name>
  3957. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[23]/elevation-ft</property>
  3958. <factor type="double">5.5556e-05</factor>
  3959. <axis>
  3960. <x type="double">1</x>
  3961. </axis>
  3962. </animation>
  3963. <animation n="376">
  3964. <type type="string">textranslate</type>
  3965. <object-name type="string">Plane.376</object-name>
  3966. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[24]/elevation-ft</property>
  3967. <factor type="double">5.5556e-05</factor>
  3968. <axis>
  3969. <x type="double">1</x>
  3970. </axis>
  3971. </animation>
  3972. <animation n="377">
  3973. <type type="string">textranslate</type>
  3974. <object-name type="string">Plane.377</object-name>
  3975. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[25]/elevation-ft</property>
  3976. <factor type="double">5.5556e-05</factor>
  3977. <axis>
  3978. <x type="double">1</x>
  3979. </axis>
  3980. </animation>
  3981. <animation n="378">
  3982. <type type="string">textranslate</type>
  3983. <object-name type="string">Plane.378</object-name>
  3984. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[26]/elevation-ft</property>
  3985. <factor type="double">5.5556e-05</factor>
  3986. <axis>
  3987. <x type="double">1</x>
  3988. </axis>
  3989. </animation>
  3990. <animation n="379">
  3991. <type type="string">textranslate</type>
  3992. <object-name type="string">Plane.379</object-name>
  3993. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[27]/elevation-ft</property>
  3994. <factor type="double">5.5556e-05</factor>
  3995. <axis>
  3996. <x type="double">1</x>
  3997. </axis>
  3998. </animation>
  3999. <animation n="380">
  4000. <type type="string">textranslate</type>
  4001. <object-name type="string">Plane.380</object-name>
  4002. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[28]/elevation-ft</property>
  4003. <factor type="double">5.5556e-05</factor>
  4004. <axis>
  4005. <x type="double">1</x>
  4006. </axis>
  4007. </animation>
  4008. <animation n="381">
  4009. <type type="string">textranslate</type>
  4010. <object-name type="string">Plane.381</object-name>
  4011. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[29]/elevation-ft</property>
  4012. <factor type="double">5.5556e-05</factor>
  4013. <axis>
  4014. <x type="double">1</x>
  4015. </axis>
  4016. </animation>
  4017. <animation n="382">
  4018. <type type="string">textranslate</type>
  4019. <object-name type="string">Plane.382</object-name>
  4020. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[30]/elevation-ft</property>
  4021. <factor type="double">5.5556e-05</factor>
  4022. <axis>
  4023. <x type="double">1</x>
  4024. </axis>
  4025. </animation>
  4026. <animation n="383">
  4027. <type type="string">textranslate</type>
  4028. <object-name type="string">Plane.383</object-name>
  4029. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[31]/elevation-ft</property>
  4030. <factor type="double">5.5556e-05</factor>
  4031. <axis>
  4032. <x type="double">1</x>
  4033. </axis>
  4034. </animation>
  4035. <animation n="385">
  4036. <type type="string">textranslate</type>
  4037. <object-name type="string">Plane.385</object-name>
  4038. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[1]/elevation-ft</property>
  4039. <factor type="double">5.5556e-05</factor>
  4040. <axis>
  4041. <x type="double">1</x>
  4042. </axis>
  4043. </animation>
  4044. <animation n="386">
  4045. <type type="string">textranslate</type>
  4046. <object-name type="string">Plane.386</object-name>
  4047. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[2]/elevation-ft</property>
  4048. <factor type="double">5.5556e-05</factor>
  4049. <axis>
  4050. <x type="double">1</x>
  4051. </axis>
  4052. </animation>
  4053. <animation n="387">
  4054. <type type="string">textranslate</type>
  4055. <object-name type="string">Plane.387</object-name>
  4056. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[3]/elevation-ft</property>
  4057. <factor type="double">5.5556e-05</factor>
  4058. <axis>
  4059. <x type="double">1</x>
  4060. </axis>
  4061. </animation>
  4062. <animation n="388">
  4063. <type type="string">textranslate</type>
  4064. <object-name type="string">Plane.388</object-name>
  4065. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[4]/elevation-ft</property>
  4066. <factor type="double">5.5556e-05</factor>
  4067. <axis>
  4068. <x type="double">1</x>
  4069. </axis>
  4070. </animation>
  4071. <animation n="389">
  4072. <type type="string">textranslate</type>
  4073. <object-name type="string">Plane.389</object-name>
  4074. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[5]/elevation-ft</property>
  4075. <factor type="double">5.5556e-05</factor>
  4076. <axis>
  4077. <x type="double">1</x>
  4078. </axis>
  4079. </animation>
  4080. <animation n="390">
  4081. <type type="string">textranslate</type>
  4082. <object-name type="string">Plane.390</object-name>
  4083. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[6]/elevation-ft</property>
  4084. <factor type="double">5.5556e-05</factor>
  4085. <axis>
  4086. <x type="double">1</x>
  4087. </axis>
  4088. </animation>
  4089. <animation n="391">
  4090. <type type="string">textranslate</type>
  4091. <object-name type="string">Plane.391</object-name>
  4092. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[7]/elevation-ft</property>
  4093. <factor type="double">5.5556e-05</factor>
  4094. <axis>
  4095. <x type="double">1</x>
  4096. </axis>
  4097. </animation>
  4098. <animation n="392">
  4099. <type type="string">textranslate</type>
  4100. <object-name type="string">Plane.392</object-name>
  4101. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[8]/elevation-ft</property>
  4102. <factor type="double">5.5556e-05</factor>
  4103. <axis>
  4104. <x type="double">1</x>
  4105. </axis>
  4106. </animation>
  4107. <animation n="393">
  4108. <type type="string">textranslate</type>
  4109. <object-name type="string">Plane.393</object-name>
  4110. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[9]/elevation-ft</property>
  4111. <factor type="double">5.5556e-05</factor>
  4112. <axis>
  4113. <x type="double">1</x>
  4114. </axis>
  4115. </animation>
  4116. <animation n="394">
  4117. <type type="string">textranslate</type>
  4118. <object-name type="string">Plane.394</object-name>
  4119. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[10]/elevation-ft</property>
  4120. <factor type="double">5.5556e-05</factor>
  4121. <axis>
  4122. <x type="double">1</x>
  4123. </axis>
  4124. </animation>
  4125. <animation n="395">
  4126. <type type="string">textranslate</type>
  4127. <object-name type="string">Plane.395</object-name>
  4128. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[11]/elevation-ft</property>
  4129. <factor type="double">5.5556e-05</factor>
  4130. <axis>
  4131. <x type="double">1</x>
  4132. </axis>
  4133. </animation>
  4134. <animation n="396">
  4135. <type type="string">textranslate</type>
  4136. <object-name type="string">Plane.396</object-name>
  4137. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[12]/elevation-ft</property>
  4138. <factor type="double">5.5556e-05</factor>
  4139. <axis>
  4140. <x type="double">1</x>
  4141. </axis>
  4142. </animation>
  4143. <animation n="397">
  4144. <type type="string">textranslate</type>
  4145. <object-name type="string">Plane.397</object-name>
  4146. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[13]/elevation-ft</property>
  4147. <factor type="double">5.5556e-05</factor>
  4148. <axis>
  4149. <x type="double">1</x>
  4150. </axis>
  4151. </animation>
  4152. <animation n="398">
  4153. <type type="string">textranslate</type>
  4154. <object-name type="string">Plane.398</object-name>
  4155. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[14]/elevation-ft</property>
  4156. <factor type="double">5.5556e-05</factor>
  4157. <axis>
  4158. <x type="double">1</x>
  4159. </axis>
  4160. </animation>
  4161. <animation n="399">
  4162. <type type="string">textranslate</type>
  4163. <object-name type="string">Plane.399</object-name>
  4164. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[15]/elevation-ft</property>
  4165. <factor type="double">5.5556e-05</factor>
  4166. <axis>
  4167. <x type="double">1</x>
  4168. </axis>
  4169. </animation>
  4170. <animation n="400">
  4171. <type type="string">textranslate</type>
  4172. <object-name type="string">Plane.400</object-name>
  4173. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[16]/elevation-ft</property>
  4174. <factor type="double">5.5556e-05</factor>
  4175. <axis>
  4176. <x type="double">1</x>
  4177. </axis>
  4178. </animation>
  4179. <animation n="401">
  4180. <type type="string">textranslate</type>
  4181. <object-name type="string">Plane.401</object-name>
  4182. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[17]/elevation-ft</property>
  4183. <factor type="double">5.5556e-05</factor>
  4184. <axis>
  4185. <x type="double">1</x>
  4186. </axis>
  4187. </animation>
  4188. <animation n="402">
  4189. <type type="string">textranslate</type>
  4190. <object-name type="string">Plane.402</object-name>
  4191. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[18]/elevation-ft</property>
  4192. <factor type="double">5.5556e-05</factor>
  4193. <axis>
  4194. <x type="double">1</x>
  4195. </axis>
  4196. </animation>
  4197. <animation n="403">
  4198. <type type="string">textranslate</type>
  4199. <object-name type="string">Plane.403</object-name>
  4200. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[19]/elevation-ft</property>
  4201. <factor type="double">5.5556e-05</factor>
  4202. <axis>
  4203. <x type="double">1</x>
  4204. </axis>
  4205. </animation>
  4206. <animation n="404">
  4207. <type type="string">textranslate</type>
  4208. <object-name type="string">Plane.404</object-name>
  4209. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[20]/elevation-ft</property>
  4210. <factor type="double">5.5556e-05</factor>
  4211. <axis>
  4212. <x type="double">1</x>
  4213. </axis>
  4214. </animation>
  4215. <animation n="405">
  4216. <type type="string">textranslate</type>
  4217. <object-name type="string">Plane.405</object-name>
  4218. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[21]/elevation-ft</property>
  4219. <factor type="double">5.5556e-05</factor>
  4220. <axis>
  4221. <x type="double">1</x>
  4222. </axis>
  4223. </animation>
  4224. <animation n="406">
  4225. <type type="string">textranslate</type>
  4226. <object-name type="string">Plane.406</object-name>
  4227. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[22]/elevation-ft</property>
  4228. <factor type="double">5.5556e-05</factor>
  4229. <axis>
  4230. <x type="double">1</x>
  4231. </axis>
  4232. </animation>
  4233. <animation n="407">
  4234. <type type="string">textranslate</type>
  4235. <object-name type="string">Plane.407</object-name>
  4236. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[23]/elevation-ft</property>
  4237. <factor type="double">5.5556e-05</factor>
  4238. <axis>
  4239. <x type="double">1</x>
  4240. </axis>
  4241. </animation>
  4242. <animation n="408">
  4243. <type type="string">textranslate</type>
  4244. <object-name type="string">Plane.408</object-name>
  4245. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[24]/elevation-ft</property>
  4246. <factor type="double">5.5556e-05</factor>
  4247. <axis>
  4248. <x type="double">1</x>
  4249. </axis>
  4250. </animation>
  4251. <animation n="409">
  4252. <type type="string">textranslate</type>
  4253. <object-name type="string">Plane.409</object-name>
  4254. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[25]/elevation-ft</property>
  4255. <factor type="double">5.5556e-05</factor>
  4256. <axis>
  4257. <x type="double">1</x>
  4258. </axis>
  4259. </animation>
  4260. <animation n="410">
  4261. <type type="string">textranslate</type>
  4262. <object-name type="string">Plane.410</object-name>
  4263. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[26]/elevation-ft</property>
  4264. <factor type="double">5.5556e-05</factor>
  4265. <axis>
  4266. <x type="double">1</x>
  4267. </axis>
  4268. </animation>
  4269. <animation n="411">
  4270. <type type="string">textranslate</type>
  4271. <object-name type="string">Plane.411</object-name>
  4272. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[27]/elevation-ft</property>
  4273. <factor type="double">5.5556e-05</factor>
  4274. <axis>
  4275. <x type="double">1</x>
  4276. </axis>
  4277. </animation>
  4278. <animation n="412">
  4279. <type type="string">textranslate</type>
  4280. <object-name type="string">Plane.412</object-name>
  4281. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[28]/elevation-ft</property>
  4282. <factor type="double">5.5556e-05</factor>
  4283. <axis>
  4284. <x type="double">1</x>
  4285. </axis>
  4286. </animation>
  4287. <animation n="413">
  4288. <type type="string">textranslate</type>
  4289. <object-name type="string">Plane.413</object-name>
  4290. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[29]/elevation-ft</property>
  4291. <factor type="double">5.5556e-05</factor>
  4292. <axis>
  4293. <x type="double">1</x>
  4294. </axis>
  4295. </animation>
  4296. <animation n="414">
  4297. <type type="string">textranslate</type>
  4298. <object-name type="string">Plane.414</object-name>
  4299. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[30]/elevation-ft</property>
  4300. <factor type="double">5.5556e-05</factor>
  4301. <axis>
  4302. <x type="double">1</x>
  4303. </axis>
  4304. </animation>
  4305. <animation n="415">
  4306. <type type="string">textranslate</type>
  4307. <object-name type="string">Plane.415</object-name>
  4308. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[31]/elevation-ft</property>
  4309. <factor type="double">5.5556e-05</factor>
  4310. <axis>
  4311. <x type="double">1</x>
  4312. </axis>
  4313. </animation>
  4314. <animation n="417">
  4315. <type type="string">textranslate</type>
  4316. <object-name type="string">Plane.417</object-name>
  4317. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[1]/elevation-ft</property>
  4318. <factor type="double">5.5556e-05</factor>
  4319. <axis>
  4320. <x type="double">1</x>
  4321. </axis>
  4322. </animation>
  4323. <animation n="418">
  4324. <type type="string">textranslate</type>
  4325. <object-name type="string">Plane.418</object-name>
  4326. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[2]/elevation-ft</property>
  4327. <factor type="double">5.5556e-05</factor>
  4328. <axis>
  4329. <x type="double">1</x>
  4330. </axis>
  4331. </animation>
  4332. <animation n="419">
  4333. <type type="string">textranslate</type>
  4334. <object-name type="string">Plane.419</object-name>
  4335. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[3]/elevation-ft</property>
  4336. <factor type="double">5.5556e-05</factor>
  4337. <axis>
  4338. <x type="double">1</x>
  4339. </axis>
  4340. </animation>
  4341. <animation n="420">
  4342. <type type="string">textranslate</type>
  4343. <object-name type="string">Plane.420</object-name>
  4344. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[4]/elevation-ft</property>
  4345. <factor type="double">5.5556e-05</factor>
  4346. <axis>
  4347. <x type="double">1</x>
  4348. </axis>
  4349. </animation>
  4350. <animation n="421">
  4351. <type type="string">textranslate</type>
  4352. <object-name type="string">Plane.421</object-name>
  4353. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[5]/elevation-ft</property>
  4354. <factor type="double">5.5556e-05</factor>
  4355. <axis>
  4356. <x type="double">1</x>
  4357. </axis>
  4358. </animation>
  4359. <animation n="422">
  4360. <type type="string">textranslate</type>
  4361. <object-name type="string">Plane.422</object-name>
  4362. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[6]/elevation-ft</property>
  4363. <factor type="double">5.5556e-05</factor>
  4364. <axis>
  4365. <x type="double">1</x>
  4366. </axis>
  4367. </animation>
  4368. <animation n="423">
  4369. <type type="string">textranslate</type>
  4370. <object-name type="string">Plane.423</object-name>
  4371. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[7]/elevation-ft</property>
  4372. <factor type="double">5.5556e-05</factor>
  4373. <axis>
  4374. <x type="double">1</x>
  4375. </axis>
  4376. </animation>
  4377. <animation n="424">
  4378. <type type="string">textranslate</type>
  4379. <object-name type="string">Plane.424</object-name>
  4380. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[8]/elevation-ft</property>
  4381. <factor type="double">5.5556e-05</factor>
  4382. <axis>
  4383. <x type="double">1</x>
  4384. </axis>
  4385. </animation>
  4386. <animation n="425">
  4387. <type type="string">textranslate</type>
  4388. <object-name type="string">Plane.425</object-name>
  4389. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[9]/elevation-ft</property>
  4390. <factor type="double">5.5556e-05</factor>
  4391. <axis>
  4392. <x type="double">1</x>
  4393. </axis>
  4394. </animation>
  4395. <animation n="426">
  4396. <type type="string">textranslate</type>
  4397. <object-name type="string">Plane.426</object-name>
  4398. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[10]/elevation-ft</property>
  4399. <factor type="double">5.5556e-05</factor>
  4400. <axis>
  4401. <x type="double">1</x>
  4402. </axis>
  4403. </animation>
  4404. <animation n="427">
  4405. <type type="string">textranslate</type>
  4406. <object-name type="string">Plane.427</object-name>
  4407. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[11]/elevation-ft</property>
  4408. <factor type="double">5.5556e-05</factor>
  4409. <axis>
  4410. <x type="double">1</x>
  4411. </axis>
  4412. </animation>
  4413. <animation n="428">
  4414. <type type="string">textranslate</type>
  4415. <object-name type="string">Plane.428</object-name>
  4416. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[12]/elevation-ft</property>
  4417. <factor type="double">5.5556e-05</factor>
  4418. <axis>
  4419. <x type="double">1</x>
  4420. </axis>
  4421. </animation>
  4422. <animation n="429">
  4423. <type type="string">textranslate</type>
  4424. <object-name type="string">Plane.429</object-name>
  4425. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[13]/elevation-ft</property>
  4426. <factor type="double">5.5556e-05</factor>
  4427. <axis>
  4428. <x type="double">1</x>
  4429. </axis>
  4430. </animation>
  4431. <animation n="430">
  4432. <type type="string">textranslate</type>
  4433. <object-name type="string">Plane.430</object-name>
  4434. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[14]/elevation-ft</property>
  4435. <factor type="double">5.5556e-05</factor>
  4436. <axis>
  4437. <x type="double">1</x>
  4438. </axis>
  4439. </animation>
  4440. <animation n="431">
  4441. <type type="string">textranslate</type>
  4442. <object-name type="string">Plane.431</object-name>
  4443. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[15]/elevation-ft</property>
  4444. <factor type="double">5.5556e-05</factor>
  4445. <axis>
  4446. <x type="double">1</x>
  4447. </axis>
  4448. </animation>
  4449. <animation n="432">
  4450. <type type="string">textranslate</type>
  4451. <object-name type="string">Plane.432</object-name>
  4452. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[16]/elevation-ft</property>
  4453. <factor type="double">5.5556e-05</factor>
  4454. <axis>
  4455. <x type="double">1</x>
  4456. </axis>
  4457. </animation>
  4458. <animation n="433">
  4459. <type type="string">textranslate</type>
  4460. <object-name type="string">Plane.433</object-name>
  4461. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[17]/elevation-ft</property>
  4462. <factor type="double">5.5556e-05</factor>
  4463. <axis>
  4464. <x type="double">1</x>
  4465. </axis>
  4466. </animation>
  4467. <animation n="434">
  4468. <type type="string">textranslate</type>
  4469. <object-name type="string">Plane.434</object-name>
  4470. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[18]/elevation-ft</property>
  4471. <factor type="double">5.5556e-05</factor>
  4472. <axis>
  4473. <x type="double">1</x>
  4474. </axis>
  4475. </animation>
  4476. <animation n="435">
  4477. <type type="string">textranslate</type>
  4478. <object-name type="string">Plane.435</object-name>
  4479. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[19]/elevation-ft</property>
  4480. <factor type="double">5.5556e-05</factor>
  4481. <axis>
  4482. <x type="double">1</x>
  4483. </axis>
  4484. </animation>
  4485. <animation n="436">
  4486. <type type="string">textranslate</type>
  4487. <object-name type="string">Plane.436</object-name>
  4488. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[20]/elevation-ft</property>
  4489. <factor type="double">5.5556e-05</factor>
  4490. <axis>
  4491. <x type="double">1</x>
  4492. </axis>
  4493. </animation>
  4494. <animation n="437">
  4495. <type type="string">textranslate</type>
  4496. <object-name type="string">Plane.437</object-name>
  4497. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[21]/elevation-ft</property>
  4498. <factor type="double">5.5556e-05</factor>
  4499. <axis>
  4500. <x type="double">1</x>
  4501. </axis>
  4502. </animation>
  4503. <animation n="438">
  4504. <type type="string">textranslate</type>
  4505. <object-name type="string">Plane.438</object-name>
  4506. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[22]/elevation-ft</property>
  4507. <factor type="double">5.5556e-05</factor>
  4508. <axis>
  4509. <x type="double">1</x>
  4510. </axis>
  4511. </animation>
  4512. <animation n="439">
  4513. <type type="string">textranslate</type>
  4514. <object-name type="string">Plane.439</object-name>
  4515. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[23]/elevation-ft</property>
  4516. <factor type="double">5.5556e-05</factor>
  4517. <axis>
  4518. <x type="double">1</x>
  4519. </axis>
  4520. </animation>
  4521. <animation n="440">
  4522. <type type="string">textranslate</type>
  4523. <object-name type="string">Plane.440</object-name>
  4524. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[24]/elevation-ft</property>
  4525. <factor type="double">5.5556e-05</factor>
  4526. <axis>
  4527. <x type="double">1</x>
  4528. </axis>
  4529. </animation>
  4530. <animation n="441">
  4531. <type type="string">textranslate</type>
  4532. <object-name type="string">Plane.441</object-name>
  4533. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[25]/elevation-ft</property>
  4534. <factor type="double">5.5556e-05</factor>
  4535. <axis>
  4536. <x type="double">1</x>
  4537. </axis>
  4538. </animation>
  4539. <animation n="442">
  4540. <type type="string">textranslate</type>
  4541. <object-name type="string">Plane.442</object-name>
  4542. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[26]/elevation-ft</property>
  4543. <factor type="double">5.5556e-05</factor>
  4544. <axis>
  4545. <x type="double">1</x>
  4546. </axis>
  4547. </animation>
  4548. <animation n="443">
  4549. <type type="string">textranslate</type>
  4550. <object-name type="string">Plane.443</object-name>
  4551. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[27]/elevation-ft</property>
  4552. <factor type="double">5.5556e-05</factor>
  4553. <axis>
  4554. <x type="double">1</x>
  4555. </axis>
  4556. </animation>
  4557. <animation n="444">
  4558. <type type="string">textranslate</type>
  4559. <object-name type="string">Plane.444</object-name>
  4560. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[28]/elevation-ft</property>
  4561. <factor type="double">5.5556e-05</factor>
  4562. <axis>
  4563. <x type="double">1</x>
  4564. </axis>
  4565. </animation>
  4566. <animation n="445">
  4567. <type type="string">textranslate</type>
  4568. <object-name type="string">Plane.445</object-name>
  4569. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[29]/elevation-ft</property>
  4570. <factor type="double">5.5556e-05</factor>
  4571. <axis>
  4572. <x type="double">1</x>
  4573. </axis>
  4574. </animation>
  4575. <animation n="446">
  4576. <type type="string">textranslate</type>
  4577. <object-name type="string">Plane.446</object-name>
  4578. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[30]/elevation-ft</property>
  4579. <factor type="double">5.5556e-05</factor>
  4580. <axis>
  4581. <x type="double">1</x>
  4582. </axis>
  4583. </animation>
  4584. <animation n="447">
  4585. <type type="string">textranslate</type>
  4586. <object-name type="string">Plane.447</object-name>
  4587. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[31]/elevation-ft</property>
  4588. <factor type="double">5.5556e-05</factor>
  4589. <axis>
  4590. <x type="double">1</x>
  4591. </axis>
  4592. </animation>
  4593. <animation n="449">
  4594. <type type="string">textranslate</type>
  4595. <object-name type="string">Plane.449</object-name>
  4596. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[1]/elevation-ft</property>
  4597. <factor type="double">5.5556e-05</factor>
  4598. <axis>
  4599. <x type="double">1</x>
  4600. </axis>
  4601. </animation>
  4602. <animation n="450">
  4603. <type type="string">textranslate</type>
  4604. <object-name type="string">Plane.450</object-name>
  4605. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[2]/elevation-ft</property>
  4606. <factor type="double">5.5556e-05</factor>
  4607. <axis>
  4608. <x type="double">1</x>
  4609. </axis>
  4610. </animation>
  4611. <animation n="451">
  4612. <type type="string">textranslate</type>
  4613. <object-name type="string">Plane.451</object-name>
  4614. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[3]/elevation-ft</property>
  4615. <factor type="double">5.5556e-05</factor>
  4616. <axis>
  4617. <x type="double">1</x>
  4618. </axis>
  4619. </animation>
  4620. <animation n="452">
  4621. <type type="string">textranslate</type>
  4622. <object-name type="string">Plane.452</object-name>
  4623. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[4]/elevation-ft</property>
  4624. <factor type="double">5.5556e-05</factor>
  4625. <axis>
  4626. <x type="double">1</x>
  4627. </axis>
  4628. </animation>
  4629. <animation n="453">
  4630. <type type="string">textranslate</type>
  4631. <object-name type="string">Plane.453</object-name>
  4632. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[5]/elevation-ft</property>
  4633. <factor type="double">5.5556e-05</factor>
  4634. <axis>
  4635. <x type="double">1</x>
  4636. </axis>
  4637. </animation>
  4638. <animation n="454">
  4639. <type type="string">textranslate</type>
  4640. <object-name type="string">Plane.454</object-name>
  4641. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[6]/elevation-ft</property>
  4642. <factor type="double">5.5556e-05</factor>
  4643. <axis>
  4644. <x type="double">1</x>
  4645. </axis>
  4646. </animation>
  4647. <animation n="455">
  4648. <type type="string">textranslate</type>
  4649. <object-name type="string">Plane.455</object-name>
  4650. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[7]/elevation-ft</property>
  4651. <factor type="double">5.5556e-05</factor>
  4652. <axis>
  4653. <x type="double">1</x>
  4654. </axis>
  4655. </animation>
  4656. <animation n="456">
  4657. <type type="string">textranslate</type>
  4658. <object-name type="string">Plane.456</object-name>
  4659. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[8]/elevation-ft</property>
  4660. <factor type="double">5.5556e-05</factor>
  4661. <axis>
  4662. <x type="double">1</x>
  4663. </axis>
  4664. </animation>
  4665. <animation n="457">
  4666. <type type="string">textranslate</type>
  4667. <object-name type="string">Plane.457</object-name>
  4668. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[9]/elevation-ft</property>
  4669. <factor type="double">5.5556e-05</factor>
  4670. <axis>
  4671. <x type="double">1</x>
  4672. </axis>
  4673. </animation>
  4674. <animation n="458">
  4675. <type type="string">textranslate</type>
  4676. <object-name type="string">Plane.458</object-name>
  4677. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[10]/elevation-ft</property>
  4678. <factor type="double">5.5556e-05</factor>
  4679. <axis>
  4680. <x type="double">1</x>
  4681. </axis>
  4682. </animation>
  4683. <animation n="459">
  4684. <type type="string">textranslate</type>
  4685. <object-name type="string">Plane.459</object-name>
  4686. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[11]/elevation-ft</property>
  4687. <factor type="double">5.5556e-05</factor>
  4688. <axis>
  4689. <x type="double">1</x>
  4690. </axis>
  4691. </animation>
  4692. <animation n="460">
  4693. <type type="string">textranslate</type>
  4694. <object-name type="string">Plane.460</object-name>
  4695. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[12]/elevation-ft</property>
  4696. <factor type="double">5.5556e-05</factor>
  4697. <axis>
  4698. <x type="double">1</x>
  4699. </axis>
  4700. </animation>
  4701. <animation n="461">
  4702. <type type="string">textranslate</type>
  4703. <object-name type="string">Plane.461</object-name>
  4704. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[13]/elevation-ft</property>
  4705. <factor type="double">5.5556e-05</factor>
  4706. <axis>
  4707. <x type="double">1</x>
  4708. </axis>
  4709. </animation>
  4710. <animation n="462">
  4711. <type type="string">textranslate</type>
  4712. <object-name type="string">Plane.462</object-name>
  4713. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[14]/elevation-ft</property>
  4714. <factor type="double">5.5556e-05</factor>
  4715. <axis>
  4716. <x type="double">1</x>
  4717. </axis>
  4718. </animation>
  4719. <animation n="463">
  4720. <type type="string">textranslate</type>
  4721. <object-name type="string">Plane.463</object-name>
  4722. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[15]/elevation-ft</property>
  4723. <factor type="double">5.5556e-05</factor>
  4724. <axis>
  4725. <x type="double">1</x>
  4726. </axis>
  4727. </animation>
  4728. <animation n="464">
  4729. <type type="string">textranslate</type>
  4730. <object-name type="string">Plane.464</object-name>
  4731. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[16]/elevation-ft</property>
  4732. <factor type="double">5.5556e-05</factor>
  4733. <axis>
  4734. <x type="double">1</x>
  4735. </axis>
  4736. </animation>
  4737. <animation n="465">
  4738. <type type="string">textranslate</type>
  4739. <object-name type="string">Plane.465</object-name>
  4740. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[17]/elevation-ft</property>
  4741. <factor type="double">5.5556e-05</factor>
  4742. <axis>
  4743. <x type="double">1</x>
  4744. </axis>
  4745. </animation>
  4746. <animation n="466">
  4747. <type type="string">textranslate</type>
  4748. <object-name type="string">Plane.466</object-name>
  4749. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[18]/elevation-ft</property>
  4750. <factor type="double">5.5556e-05</factor>
  4751. <axis>
  4752. <x type="double">1</x>
  4753. </axis>
  4754. </animation>
  4755. <animation n="467">
  4756. <type type="string">textranslate</type>
  4757. <object-name type="string">Plane.467</object-name>
  4758. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[19]/elevation-ft</property>
  4759. <factor type="double">5.5556e-05</factor>
  4760. <axis>
  4761. <x type="double">1</x>
  4762. </axis>
  4763. </animation>
  4764. <animation n="468">
  4765. <type type="string">textranslate</type>
  4766. <object-name type="string">Plane.468</object-name>
  4767. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[20]/elevation-ft</property>
  4768. <factor type="double">5.5556e-05</factor>
  4769. <axis>
  4770. <x type="double">1</x>
  4771. </axis>
  4772. </animation>
  4773. <animation n="469">
  4774. <type type="string">textranslate</type>
  4775. <object-name type="string">Plane.469</object-name>
  4776. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[21]/elevation-ft</property>
  4777. <factor type="double">5.5556e-05</factor>
  4778. <axis>
  4779. <x type="double">1</x>
  4780. </axis>
  4781. </animation>
  4782. <animation n="470">
  4783. <type type="string">textranslate</type>
  4784. <object-name type="string">Plane.470</object-name>
  4785. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[22]/elevation-ft</property>
  4786. <factor type="double">5.5556e-05</factor>
  4787. <axis>
  4788. <x type="double">1</x>
  4789. </axis>
  4790. </animation>
  4791. <animation n="471">
  4792. <type type="string">textranslate</type>
  4793. <object-name type="string">Plane.471</object-name>
  4794. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[23]/elevation-ft</property>
  4795. <factor type="double">5.5556e-05</factor>
  4796. <axis>
  4797. <x type="double">1</x>
  4798. </axis>
  4799. </animation>
  4800. <animation n="472">
  4801. <type type="string">textranslate</type>
  4802. <object-name type="string">Plane.472</object-name>
  4803. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[24]/elevation-ft</property>
  4804. <factor type="double">5.5556e-05</factor>
  4805. <axis>
  4806. <x type="double">1</x>
  4807. </axis>
  4808. </animation>
  4809. <animation n="473">
  4810. <type type="string">textranslate</type>
  4811. <object-name type="string">Plane.473</object-name>
  4812. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[25]/elevation-ft</property>
  4813. <factor type="double">5.5556e-05</factor>
  4814. <axis>
  4815. <x type="double">1</x>
  4816. </axis>
  4817. </animation>
  4818. <animation n="474">
  4819. <type type="string">textranslate</type>
  4820. <object-name type="string">Plane.474</object-name>
  4821. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[26]/elevation-ft</property>
  4822. <factor type="double">5.5556e-05</factor>
  4823. <axis>
  4824. <x type="double">1</x>
  4825. </axis>
  4826. </animation>
  4827. <animation n="475">
  4828. <type type="string">textranslate</type>
  4829. <object-name type="string">Plane.475</object-name>
  4830. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[27]/elevation-ft</property>
  4831. <factor type="double">5.5556e-05</factor>
  4832. <axis>
  4833. <x type="double">1</x>
  4834. </axis>
  4835. </animation>
  4836. <animation n="476">
  4837. <type type="string">textranslate</type>
  4838. <object-name type="string">Plane.476</object-name>
  4839. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[28]/elevation-ft</property>
  4840. <factor type="double">5.5556e-05</factor>
  4841. <axis>
  4842. <x type="double">1</x>
  4843. </axis>
  4844. </animation>
  4845. <animation n="477">
  4846. <type type="string">textranslate</type>
  4847. <object-name type="string">Plane.477</object-name>
  4848. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[29]/elevation-ft</property>
  4849. <factor type="double">5.5556e-05</factor>
  4850. <axis>
  4851. <x type="double">1</x>
  4852. </axis>
  4853. </animation>
  4854. <animation n="478">
  4855. <type type="string">textranslate</type>
  4856. <object-name type="string">Plane.478</object-name>
  4857. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[30]/elevation-ft</property>
  4858. <factor type="double">5.5556e-05</factor>
  4859. <axis>
  4860. <x type="double">1</x>
  4861. </axis>
  4862. </animation>
  4863. <animation n="479">
  4864. <type type="string">textranslate</type>
  4865. <object-name type="string">Plane.479</object-name>
  4866. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[31]/elevation-ft</property>
  4867. <factor type="double">5.5556e-05</factor>
  4868. <axis>
  4869. <x type="double">1</x>
  4870. </axis>
  4871. </animation>
  4872. <animation n="481">
  4873. <type type="string">textranslate</type>
  4874. <object-name type="string">Plane.481</object-name>
  4875. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[1]/elevation-ft</property>
  4876. <factor type="double">5.5556e-05</factor>
  4877. <axis>
  4878. <x type="double">1</x>
  4879. </axis>
  4880. </animation>
  4881. <animation n="482">
  4882. <type type="string">textranslate</type>
  4883. <object-name type="string">Plane.482</object-name>
  4884. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[2]/elevation-ft</property>
  4885. <factor type="double">5.5556e-05</factor>
  4886. <axis>
  4887. <x type="double">1</x>
  4888. </axis>
  4889. </animation>
  4890. <animation n="483">
  4891. <type type="string">textranslate</type>
  4892. <object-name type="string">Plane.483</object-name>
  4893. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[3]/elevation-ft</property>
  4894. <factor type="double">5.5556e-05</factor>
  4895. <axis>
  4896. <x type="double">1</x>
  4897. </axis>
  4898. </animation>
  4899. <animation n="484">
  4900. <type type="string">textranslate</type>
  4901. <object-name type="string">Plane.484</object-name>
  4902. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[4]/elevation-ft</property>
  4903. <factor type="double">5.5556e-05</factor>
  4904. <axis>
  4905. <x type="double">1</x>
  4906. </axis>
  4907. </animation>
  4908. <animation n="485">
  4909. <type type="string">textranslate</type>
  4910. <object-name type="string">Plane.485</object-name>
  4911. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[5]/elevation-ft</property>
  4912. <factor type="double">5.5556e-05</factor>
  4913. <axis>
  4914. <x type="double">1</x>
  4915. </axis>
  4916. </animation>
  4917. <animation n="486">
  4918. <type type="string">textranslate</type>
  4919. <object-name type="string">Plane.486</object-name>
  4920. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[6]/elevation-ft</property>
  4921. <factor type="double">5.5556e-05</factor>
  4922. <axis>
  4923. <x type="double">1</x>
  4924. </axis>
  4925. </animation>
  4926. <animation n="487">
  4927. <type type="string">textranslate</type>
  4928. <object-name type="string">Plane.487</object-name>
  4929. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[7]/elevation-ft</property>
  4930. <factor type="double">5.5556e-05</factor>
  4931. <axis>
  4932. <x type="double">1</x>
  4933. </axis>
  4934. </animation>
  4935. <animation n="488">
  4936. <type type="string">textranslate</type>
  4937. <object-name type="string">Plane.488</object-name>
  4938. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[8]/elevation-ft</property>
  4939. <factor type="double">5.5556e-05</factor>
  4940. <axis>
  4941. <x type="double">1</x>
  4942. </axis>
  4943. </animation>
  4944. <animation n="489">
  4945. <type type="string">textranslate</type>
  4946. <object-name type="string">Plane.489</object-name>
  4947. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[9]/elevation-ft</property>
  4948. <factor type="double">5.5556e-05</factor>
  4949. <axis>
  4950. <x type="double">1</x>
  4951. </axis>
  4952. </animation>
  4953. <animation n="490">
  4954. <type type="string">textranslate</type>
  4955. <object-name type="string">Plane.490</object-name>
  4956. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[10]/elevation-ft</property>
  4957. <factor type="double">5.5556e-05</factor>
  4958. <axis>
  4959. <x type="double">1</x>
  4960. </axis>
  4961. </animation>
  4962. <animation n="491">
  4963. <type type="string">textranslate</type>
  4964. <object-name type="string">Plane.491</object-name>
  4965. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[11]/elevation-ft</property>
  4966. <factor type="double">5.5556e-05</factor>
  4967. <axis>
  4968. <x type="double">1</x>
  4969. </axis>
  4970. </animation>
  4971. <animation n="492">
  4972. <type type="string">textranslate</type>
  4973. <object-name type="string">Plane.492</object-name>
  4974. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[12]/elevation-ft</property>
  4975. <factor type="double">5.5556e-05</factor>
  4976. <axis>
  4977. <x type="double">1</x>
  4978. </axis>
  4979. </animation>
  4980. <animation n="493">
  4981. <type type="string">textranslate</type>
  4982. <object-name type="string">Plane.493</object-name>
  4983. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[13]/elevation-ft</property>
  4984. <factor type="double">5.5556e-05</factor>
  4985. <axis>
  4986. <x type="double">1</x>
  4987. </axis>
  4988. </animation>
  4989. <animation n="494">
  4990. <type type="string">textranslate</type>
  4991. <object-name type="string">Plane.494</object-name>
  4992. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[14]/elevation-ft</property>
  4993. <factor type="double">5.5556e-05</factor>
  4994. <axis>
  4995. <x type="double">1</x>
  4996. </axis>
  4997. </animation>
  4998. <animation n="495">
  4999. <type type="string">textranslate</type>
  5000. <object-name type="string">Plane.495</object-name>
  5001. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[15]/elevation-ft</property>
  5002. <factor type="double">5.5556e-05</factor>
  5003. <axis>
  5004. <x type="double">1</x>
  5005. </axis>
  5006. </animation>
  5007. <animation n="496">
  5008. <type type="string">textranslate</type>
  5009. <object-name type="string">Plane.496</object-name>
  5010. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[16]/elevation-ft</property>
  5011. <factor type="double">5.5556e-05</factor>
  5012. <axis>
  5013. <x type="double">1</x>
  5014. </axis>
  5015. </animation>
  5016. <animation n="497">
  5017. <type type="string">textranslate</type>
  5018. <object-name type="string">Plane.497</object-name>
  5019. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[17]/elevation-ft</property>
  5020. <factor type="double">5.5556e-05</factor>
  5021. <axis>
  5022. <x type="double">1</x>
  5023. </axis>
  5024. </animation>
  5025. <animation n="498">
  5026. <type type="string">textranslate</type>
  5027. <object-name type="string">Plane.498</object-name>
  5028. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[18]/elevation-ft</property>
  5029. <factor type="double">5.5556e-05</factor>
  5030. <axis>
  5031. <x type="double">1</x>
  5032. </axis>
  5033. </animation>
  5034. <animation n="499">
  5035. <type type="string">textranslate</type>
  5036. <object-name type="string">Plane.499</object-name>
  5037. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[19]/elevation-ft</property>
  5038. <factor type="double">5.5556e-05</factor>
  5039. <axis>
  5040. <x type="double">1</x>
  5041. </axis>
  5042. </animation>
  5043. <animation n="500">
  5044. <type type="string">textranslate</type>
  5045. <object-name type="string">Plane.500</object-name>
  5046. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[20]/elevation-ft</property>
  5047. <factor type="double">5.5556e-05</factor>
  5048. <axis>
  5049. <x type="double">1</x>
  5050. </axis>
  5051. </animation>
  5052. <animation n="501">
  5053. <type type="string">textranslate</type>
  5054. <object-name type="string">Plane.501</object-name>
  5055. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[21]/elevation-ft</property>
  5056. <factor type="double">5.5556e-05</factor>
  5057. <axis>
  5058. <x type="double">1</x>
  5059. </axis>
  5060. </animation>
  5061. <animation n="502">
  5062. <type type="string">textranslate</type>
  5063. <object-name type="string">Plane.502</object-name>
  5064. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[22]/elevation-ft</property>
  5065. <factor type="double">5.5556e-05</factor>
  5066. <axis>
  5067. <x type="double">1</x>
  5068. </axis>
  5069. </animation>
  5070. <animation n="503">
  5071. <type type="string">textranslate</type>
  5072. <object-name type="string">Plane.503</object-name>
  5073. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[23]/elevation-ft</property>
  5074. <factor type="double">5.5556e-05</factor>
  5075. <axis>
  5076. <x type="double">1</x>
  5077. </axis>
  5078. </animation>
  5079. <animation n="504">
  5080. <type type="string">textranslate</type>
  5081. <object-name type="string">Plane.504</object-name>
  5082. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[24]/elevation-ft</property>
  5083. <factor type="double">5.5556e-05</factor>
  5084. <axis>
  5085. <x type="double">1</x>
  5086. </axis>
  5087. </animation>
  5088. <animation n="505">
  5089. <type type="string">textranslate</type>
  5090. <object-name type="string">Plane.505</object-name>
  5091. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[25]/elevation-ft</property>
  5092. <factor type="double">5.5556e-05</factor>
  5093. <axis>
  5094. <x type="double">1</x>
  5095. </axis>
  5096. </animation>
  5097. <animation n="506">
  5098. <type type="string">textranslate</type>
  5099. <object-name type="string">Plane.506</object-name>
  5100. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[26]/elevation-ft</property>
  5101. <factor type="double">5.5556e-05</factor>
  5102. <axis>
  5103. <x type="double">1</x>
  5104. </axis>
  5105. </animation>
  5106. <animation n="507">
  5107. <type type="string">textranslate</type>
  5108. <object-name type="string">Plane.507</object-name>
  5109. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[27]/elevation-ft</property>
  5110. <factor type="double">5.5556e-05</factor>
  5111. <axis>
  5112. <x type="double">1</x>
  5113. </axis>
  5114. </animation>
  5115. <animation n="508">
  5116. <type type="string">textranslate</type>
  5117. <object-name type="string">Plane.508</object-name>
  5118. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[28]/elevation-ft</property>
  5119. <factor type="double">5.5556e-05</factor>
  5120. <axis>
  5121. <x type="double">1</x>
  5122. </axis>
  5123. </animation>
  5124. <animation n="509">
  5125. <type type="string">textranslate</type>
  5126. <object-name type="string">Plane.509</object-name>
  5127. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[29]/elevation-ft</property>
  5128. <factor type="double">5.5556e-05</factor>
  5129. <axis>
  5130. <x type="double">1</x>
  5131. </axis>
  5132. </animation>
  5133. <animation n="510">
  5134. <type type="string">textranslate</type>
  5135. <object-name type="string">Plane.510</object-name>
  5136. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[30]/elevation-ft</property>
  5137. <factor type="double">5.5556e-05</factor>
  5138. <axis>
  5139. <x type="double">1</x>
  5140. </axis>
  5141. </animation>
  5142. <animation n="511">
  5143. <type type="string">textranslate</type>
  5144. <object-name type="string">Plane.511</object-name>
  5145. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[31]/elevation-ft</property>
  5146. <factor type="double">5.5556e-05</factor>
  5147. <axis>
  5148. <x type="double">1</x>
  5149. </axis>
  5150. </animation>
  5151. <animation n="513">
  5152. <type type="string">textranslate</type>
  5153. <object-name type="string">Plane.513</object-name>
  5154. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[1]/elevation-ft</property>
  5155. <factor type="double">5.5556e-05</factor>
  5156. <axis>
  5157. <x type="double">1</x>
  5158. </axis>
  5159. </animation>
  5160. <animation n="514">
  5161. <type type="string">textranslate</type>
  5162. <object-name type="string">Plane.514</object-name>
  5163. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[2]/elevation-ft</property>
  5164. <factor type="double">5.5556e-05</factor>
  5165. <axis>
  5166. <x type="double">1</x>
  5167. </axis>
  5168. </animation>
  5169. <animation n="515">
  5170. <type type="string">textranslate</type>
  5171. <object-name type="string">Plane.515</object-name>
  5172. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[3]/elevation-ft</property>
  5173. <factor type="double">5.5556e-05</factor>
  5174. <axis>
  5175. <x type="double">1</x>
  5176. </axis>
  5177. </animation>
  5178. <animation n="516">
  5179. <type type="string">textranslate</type>
  5180. <object-name type="string">Plane.516</object-name>
  5181. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[4]/elevation-ft</property>
  5182. <factor type="double">5.5556e-05</factor>
  5183. <axis>
  5184. <x type="double">1</x>
  5185. </axis>
  5186. </animation>
  5187. <animation n="517">
  5188. <type type="string">textranslate</type>
  5189. <object-name type="string">Plane.517</object-name>
  5190. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[5]/elevation-ft</property>
  5191. <factor type="double">5.5556e-05</factor>
  5192. <axis>
  5193. <x type="double">1</x>
  5194. </axis>
  5195. </animation>
  5196. <animation n="518">
  5197. <type type="string">textranslate</type>
  5198. <object-name type="string">Plane.518</object-name>
  5199. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[6]/elevation-ft</property>
  5200. <factor type="double">5.5556e-05</factor>
  5201. <axis>
  5202. <x type="double">1</x>
  5203. </axis>
  5204. </animation>
  5205. <animation n="519">
  5206. <type type="string">textranslate</type>
  5207. <object-name type="string">Plane.519</object-name>
  5208. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[7]/elevation-ft</property>
  5209. <factor type="double">5.5556e-05</factor>
  5210. <axis>
  5211. <x type="double">1</x>
  5212. </axis>
  5213. </animation>
  5214. <animation n="520">
  5215. <type type="string">textranslate</type>
  5216. <object-name type="string">Plane.520</object-name>
  5217. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[8]/elevation-ft</property>
  5218. <factor type="double">5.5556e-05</factor>
  5219. <axis>
  5220. <x type="double">1</x>
  5221. </axis>
  5222. </animation>
  5223. <animation n="521">
  5224. <type type="string">textranslate</type>
  5225. <object-name type="string">Plane.521</object-name>
  5226. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[9]/elevation-ft</property>
  5227. <factor type="double">5.5556e-05</factor>
  5228. <axis>
  5229. <x type="double">1</x>
  5230. </axis>
  5231. </animation>
  5232. <animation n="522">
  5233. <type type="string">textranslate</type>
  5234. <object-name type="string">Plane.522</object-name>
  5235. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[10]/elevation-ft</property>
  5236. <factor type="double">5.5556e-05</factor>
  5237. <axis>
  5238. <x type="double">1</x>
  5239. </axis>
  5240. </animation>
  5241. <animation n="523">
  5242. <type type="string">textranslate</type>
  5243. <object-name type="string">Plane.523</object-name>
  5244. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[11]/elevation-ft</property>
  5245. <factor type="double">5.5556e-05</factor>
  5246. <axis>
  5247. <x type="double">1</x>
  5248. </axis>
  5249. </animation>
  5250. <animation n="524">
  5251. <type type="string">textranslate</type>
  5252. <object-name type="string">Plane.524</object-name>
  5253. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[12]/elevation-ft</property>
  5254. <factor type="double">5.5556e-05</factor>
  5255. <axis>
  5256. <x type="double">1</x>
  5257. </axis>
  5258. </animation>
  5259. <animation n="525">
  5260. <type type="string">textranslate</type>
  5261. <object-name type="string">Plane.525</object-name>
  5262. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[13]/elevation-ft</property>
  5263. <factor type="double">5.5556e-05</factor>
  5264. <axis>
  5265. <x type="double">1</x>
  5266. </axis>
  5267. </animation>
  5268. <animation n="526">
  5269. <type type="string">textranslate</type>
  5270. <object-name type="string">Plane.526</object-name>
  5271. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[14]/elevation-ft</property>
  5272. <factor type="double">5.5556e-05</factor>
  5273. <axis>
  5274. <x type="double">1</x>
  5275. </axis>
  5276. </animation>
  5277. <animation n="527">
  5278. <type type="string">textranslate</type>
  5279. <object-name type="string">Plane.527</object-name>
  5280. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[15]/elevation-ft</property>
  5281. <factor type="double">5.5556e-05</factor>
  5282. <axis>
  5283. <x type="double">1</x>
  5284. </axis>
  5285. </animation>
  5286. <animation n="528">
  5287. <type type="string">textranslate</type>
  5288. <object-name type="string">Plane.528</object-name>
  5289. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[16]/elevation-ft</property>
  5290. <factor type="double">5.5556e-05</factor>
  5291. <axis>
  5292. <x type="double">1</x>
  5293. </axis>
  5294. </animation>
  5295. <animation n="529">
  5296. <type type="string">textranslate</type>
  5297. <object-name type="string">Plane.529</object-name>
  5298. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[17]/elevation-ft</property>
  5299. <factor type="double">5.5556e-05</factor>
  5300. <axis>
  5301. <x type="double">1</x>
  5302. </axis>
  5303. </animation>
  5304. <animation n="530">
  5305. <type type="string">textranslate</type>
  5306. <object-name type="string">Plane.530</object-name>
  5307. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[18]/elevation-ft</property>
  5308. <factor type="double">5.5556e-05</factor>
  5309. <axis>
  5310. <x type="double">1</x>
  5311. </axis>
  5312. </animation>
  5313. <animation n="531">
  5314. <type type="string">textranslate</type>
  5315. <object-name type="string">Plane.531</object-name>
  5316. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[19]/elevation-ft</property>
  5317. <factor type="double">5.5556e-05</factor>
  5318. <axis>
  5319. <x type="double">1</x>
  5320. </axis>
  5321. </animation>
  5322. <animation n="532">
  5323. <type type="string">textranslate</type>
  5324. <object-name type="string">Plane.532</object-name>
  5325. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[20]/elevation-ft</property>
  5326. <factor type="double">5.5556e-05</factor>
  5327. <axis>
  5328. <x type="double">1</x>
  5329. </axis>
  5330. </animation>
  5331. <animation n="533">
  5332. <type type="string">textranslate</type>
  5333. <object-name type="string">Plane.533</object-name>
  5334. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[21]/elevation-ft</property>
  5335. <factor type="double">5.5556e-05</factor>
  5336. <axis>
  5337. <x type="double">1</x>
  5338. </axis>
  5339. </animation>
  5340. <animation n="534">
  5341. <type type="string">textranslate</type>
  5342. <object-name type="string">Plane.534</object-name>
  5343. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[22]/elevation-ft</property>
  5344. <factor type="double">5.5556e-05</factor>
  5345. <axis>
  5346. <x type="double">1</x>
  5347. </axis>
  5348. </animation>
  5349. <animation n="535">
  5350. <type type="string">textranslate</type>
  5351. <object-name type="string">Plane.535</object-name>
  5352. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[23]/elevation-ft</property>
  5353. <factor type="double">5.5556e-05</factor>
  5354. <axis>
  5355. <x type="double">1</x>
  5356. </axis>
  5357. </animation>
  5358. <animation n="536">
  5359. <type type="string">textranslate</type>
  5360. <object-name type="string">Plane.536</object-name>
  5361. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[24]/elevation-ft</property>
  5362. <factor type="double">5.5556e-05</factor>
  5363. <axis>
  5364. <x type="double">1</x>
  5365. </axis>
  5366. </animation>
  5367. <animation n="537">
  5368. <type type="string">textranslate</type>
  5369. <object-name type="string">Plane.537</object-name>
  5370. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[25]/elevation-ft</property>
  5371. <factor type="double">5.5556e-05</factor>
  5372. <axis>
  5373. <x type="double">1</x>
  5374. </axis>
  5375. </animation>
  5376. <animation n="538">
  5377. <type type="string">textranslate</type>
  5378. <object-name type="string">Plane.538</object-name>
  5379. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[26]/elevation-ft</property>
  5380. <factor type="double">5.5556e-05</factor>
  5381. <axis>
  5382. <x type="double">1</x>
  5383. </axis>
  5384. </animation>
  5385. <animation n="539">
  5386. <type type="string">textranslate</type>
  5387. <object-name type="string">Plane.539</object-name>
  5388. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[27]/elevation-ft</property>
  5389. <factor type="double">5.5556e-05</factor>
  5390. <axis>
  5391. <x type="double">1</x>
  5392. </axis>
  5393. </animation>
  5394. <animation n="540">
  5395. <type type="string">textranslate</type>
  5396. <object-name type="string">Plane.540</object-name>
  5397. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[28]/elevation-ft</property>
  5398. <factor type="double">5.5556e-05</factor>
  5399. <axis>
  5400. <x type="double">1</x>
  5401. </axis>
  5402. </animation>
  5403. <animation n="541">
  5404. <type type="string">textranslate</type>
  5405. <object-name type="string">Plane.541</object-name>
  5406. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[29]/elevation-ft</property>
  5407. <factor type="double">5.5556e-05</factor>
  5408. <axis>
  5409. <x type="double">1</x>
  5410. </axis>
  5411. </animation>
  5412. <animation n="542">
  5413. <type type="string">textranslate</type>
  5414. <object-name type="string">Plane.542</object-name>
  5415. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[30]/elevation-ft</property>
  5416. <factor type="double">5.5556e-05</factor>
  5417. <axis>
  5418. <x type="double">1</x>
  5419. </axis>
  5420. </animation>
  5421. <animation n="543">
  5422. <type type="string">textranslate</type>
  5423. <object-name type="string">Plane.543</object-name>
  5424. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[31]/elevation-ft</property>
  5425. <factor type="double">5.5556e-05</factor>
  5426. <axis>
  5427. <x type="double">1</x>
  5428. </axis>
  5429. </animation>
  5430. <animation n="545">
  5431. <type type="string">textranslate</type>
  5432. <object-name type="string">Plane.545</object-name>
  5433. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[1]/elevation-ft</property>
  5434. <factor type="double">5.5556e-05</factor>
  5435. <axis>
  5436. <x type="double">1</x>
  5437. </axis>
  5438. </animation>
  5439. <animation n="546">
  5440. <type type="string">textranslate</type>
  5441. <object-name type="string">Plane.546</object-name>
  5442. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[2]/elevation-ft</property>
  5443. <factor type="double">5.5556e-05</factor>
  5444. <axis>
  5445. <x type="double">1</x>
  5446. </axis>
  5447. </animation>
  5448. <animation n="547">
  5449. <type type="string">textranslate</type>
  5450. <object-name type="string">Plane.547</object-name>
  5451. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[3]/elevation-ft</property>
  5452. <factor type="double">5.5556e-05</factor>
  5453. <axis>
  5454. <x type="double">1</x>
  5455. </axis>
  5456. </animation>
  5457. <animation n="548">
  5458. <type type="string">textranslate</type>
  5459. <object-name type="string">Plane.548</object-name>
  5460. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[4]/elevation-ft</property>
  5461. <factor type="double">5.5556e-05</factor>
  5462. <axis>
  5463. <x type="double">1</x>
  5464. </axis>
  5465. </animation>
  5466. <animation n="549">
  5467. <type type="string">textranslate</type>
  5468. <object-name type="string">Plane.549</object-name>
  5469. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[5]/elevation-ft</property>
  5470. <factor type="double">5.5556e-05</factor>
  5471. <axis>
  5472. <x type="double">1</x>
  5473. </axis>
  5474. </animation>
  5475. <animation n="550">
  5476. <type type="string">textranslate</type>
  5477. <object-name type="string">Plane.550</object-name>
  5478. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[6]/elevation-ft</property>
  5479. <factor type="double">5.5556e-05</factor>
  5480. <axis>
  5481. <x type="double">1</x>
  5482. </axis>
  5483. </animation>
  5484. <animation n="551">
  5485. <type type="string">textranslate</type>
  5486. <object-name type="string">Plane.551</object-name>
  5487. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[7]/elevation-ft</property>
  5488. <factor type="double">5.5556e-05</factor>
  5489. <axis>
  5490. <x type="double">1</x>
  5491. </axis>
  5492. </animation>
  5493. <animation n="552">
  5494. <type type="string">textranslate</type>
  5495. <object-name type="string">Plane.552</object-name>
  5496. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[8]/elevation-ft</property>
  5497. <factor type="double">5.5556e-05</factor>
  5498. <axis>
  5499. <x type="double">1</x>
  5500. </axis>
  5501. </animation>
  5502. <animation n="553">
  5503. <type type="string">textranslate</type>
  5504. <object-name type="string">Plane.553</object-name>
  5505. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[9]/elevation-ft</property>
  5506. <factor type="double">5.5556e-05</factor>
  5507. <axis>
  5508. <x type="double">1</x>
  5509. </axis>
  5510. </animation>
  5511. <animation n="554">
  5512. <type type="string">textranslate</type>
  5513. <object-name type="string">Plane.554</object-name>
  5514. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[10]/elevation-ft</property>
  5515. <factor type="double">5.5556e-05</factor>
  5516. <axis>
  5517. <x type="double">1</x>
  5518. </axis>
  5519. </animation>
  5520. <animation n="555">
  5521. <type type="string">textranslate</type>
  5522. <object-name type="string">Plane.555</object-name>
  5523. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[11]/elevation-ft</property>
  5524. <factor type="double">5.5556e-05</factor>
  5525. <axis>
  5526. <x type="double">1</x>
  5527. </axis>
  5528. </animation>
  5529. <animation n="556">
  5530. <type type="string">textranslate</type>
  5531. <object-name type="string">Plane.556</object-name>
  5532. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[12]/elevation-ft</property>
  5533. <factor type="double">5.5556e-05</factor>
  5534. <axis>
  5535. <x type="double">1</x>
  5536. </axis>
  5537. </animation>
  5538. <animation n="557">
  5539. <type type="string">textranslate</type>
  5540. <object-name type="string">Plane.557</object-name>
  5541. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[13]/elevation-ft</property>
  5542. <factor type="double">5.5556e-05</factor>
  5543. <axis>
  5544. <x type="double">1</x>
  5545. </axis>
  5546. </animation>
  5547. <animation n="558">
  5548. <type type="string">textranslate</type>
  5549. <object-name type="string">Plane.558</object-name>
  5550. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[14]/elevation-ft</property>
  5551. <factor type="double">5.5556e-05</factor>
  5552. <axis>
  5553. <x type="double">1</x>
  5554. </axis>
  5555. </animation>
  5556. <animation n="559">
  5557. <type type="string">textranslate</type>
  5558. <object-name type="string">Plane.559</object-name>
  5559. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[15]/elevation-ft</property>
  5560. <factor type="double">5.5556e-05</factor>
  5561. <axis>
  5562. <x type="double">1</x>
  5563. </axis>
  5564. </animation>
  5565. <animation n="560">
  5566. <type type="string">textranslate</type>
  5567. <object-name type="string">Plane.560</object-name>
  5568. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[16]/elevation-ft</property>
  5569. <factor type="double">5.5556e-05</factor>
  5570. <axis>
  5571. <x type="double">1</x>
  5572. </axis>
  5573. </animation>
  5574. <animation n="561">
  5575. <type type="string">textranslate</type>
  5576. <object-name type="string">Plane.561</object-name>
  5577. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[17]/elevation-ft</property>
  5578. <factor type="double">5.5556e-05</factor>
  5579. <axis>
  5580. <x type="double">1</x>
  5581. </axis>
  5582. </animation>
  5583. <animation n="562">
  5584. <type type="string">textranslate</type>
  5585. <object-name type="string">Plane.562</object-name>
  5586. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[18]/elevation-ft</property>
  5587. <factor type="double">5.5556e-05</factor>
  5588. <axis>
  5589. <x type="double">1</x>
  5590. </axis>
  5591. </animation>
  5592. <animation n="563">
  5593. <type type="string">textranslate</type>
  5594. <object-name type="string">Plane.563</object-name>
  5595. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[19]/elevation-ft</property>
  5596. <factor type="double">5.5556e-05</factor>
  5597. <axis>
  5598. <x type="double">1</x>
  5599. </axis>
  5600. </animation>
  5601. <animation n="564">
  5602. <type type="string">textranslate</type>
  5603. <object-name type="string">Plane.564</object-name>
  5604. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[20]/elevation-ft</property>
  5605. <factor type="double">5.5556e-05</factor>
  5606. <axis>
  5607. <x type="double">1</x>
  5608. </axis>
  5609. </animation>
  5610. <animation n="565">
  5611. <type type="string">textranslate</type>
  5612. <object-name type="string">Plane.565</object-name>
  5613. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[21]/elevation-ft</property>
  5614. <factor type="double">5.5556e-05</factor>
  5615. <axis>
  5616. <x type="double">1</x>
  5617. </axis>
  5618. </animation>
  5619. <animation n="566">
  5620. <type type="string">textranslate</type>
  5621. <object-name type="string">Plane.566</object-name>
  5622. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[22]/elevation-ft</property>
  5623. <factor type="double">5.5556e-05</factor>
  5624. <axis>
  5625. <x type="double">1</x>
  5626. </axis>
  5627. </animation>
  5628. <animation n="567">
  5629. <type type="string">textranslate</type>
  5630. <object-name type="string">Plane.567</object-name>
  5631. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[23]/elevation-ft</property>
  5632. <factor type="double">5.5556e-05</factor>
  5633. <axis>
  5634. <x type="double">1</x>
  5635. </axis>
  5636. </animation>
  5637. <animation n="568">
  5638. <type type="string">textranslate</type>
  5639. <object-name type="string">Plane.568</object-name>
  5640. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[24]/elevation-ft</property>
  5641. <factor type="double">5.5556e-05</factor>
  5642. <axis>
  5643. <x type="double">1</x>
  5644. </axis>
  5645. </animation>
  5646. <animation n="569">
  5647. <type type="string">textranslate</type>
  5648. <object-name type="string">Plane.569</object-name>
  5649. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[25]/elevation-ft</property>
  5650. <factor type="double">5.5556e-05</factor>
  5651. <axis>
  5652. <x type="double">1</x>
  5653. </axis>
  5654. </animation>
  5655. <animation n="570">
  5656. <type type="string">textranslate</type>
  5657. <object-name type="string">Plane.570</object-name>
  5658. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[26]/elevation-ft</property>
  5659. <factor type="double">5.5556e-05</factor>
  5660. <axis>
  5661. <x type="double">1</x>
  5662. </axis>
  5663. </animation>
  5664. <animation n="571">
  5665. <type type="string">textranslate</type>
  5666. <object-name type="string">Plane.571</object-name>
  5667. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[27]/elevation-ft</property>
  5668. <factor type="double">5.5556e-05</factor>
  5669. <axis>
  5670. <x type="double">1</x>
  5671. </axis>
  5672. </animation>
  5673. <animation n="572">
  5674. <type type="string">textranslate</type>
  5675. <object-name type="string">Plane.572</object-name>
  5676. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[28]/elevation-ft</property>
  5677. <factor type="double">5.5556e-05</factor>
  5678. <axis>
  5679. <x type="double">1</x>
  5680. </axis>
  5681. </animation>
  5682. <animation n="573">
  5683. <type type="string">textranslate</type>
  5684. <object-name type="string">Plane.573</object-name>
  5685. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[29]/elevation-ft</property>
  5686. <factor type="double">5.5556e-05</factor>
  5687. <axis>
  5688. <x type="double">1</x>
  5689. </axis>
  5690. </animation>
  5691. <animation n="574">
  5692. <type type="string">textranslate</type>
  5693. <object-name type="string">Plane.574</object-name>
  5694. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[30]/elevation-ft</property>
  5695. <factor type="double">5.5556e-05</factor>
  5696. <axis>
  5697. <x type="double">1</x>
  5698. </axis>
  5699. </animation>
  5700. <animation n="575">
  5701. <type type="string">textranslate</type>
  5702. <object-name type="string">Plane.575</object-name>
  5703. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[31]/elevation-ft</property>
  5704. <factor type="double">5.5556e-05</factor>
  5705. <axis>
  5706. <x type="double">1</x>
  5707. </axis>
  5708. </animation>
  5709. <animation n="577">
  5710. <type type="string">textranslate</type>
  5711. <object-name type="string">Plane.577</object-name>
  5712. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[1]/elevation-ft</property>
  5713. <factor type="double">5.5556e-05</factor>
  5714. <axis>
  5715. <x type="double">1</x>
  5716. </axis>
  5717. </animation>
  5718. <animation n="578">
  5719. <type type="string">textranslate</type>
  5720. <object-name type="string">Plane.578</object-name>
  5721. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[2]/elevation-ft</property>
  5722. <factor type="double">5.5556e-05</factor>
  5723. <axis>
  5724. <x type="double">1</x>
  5725. </axis>
  5726. </animation>
  5727. <animation n="579">
  5728. <type type="string">textranslate</type>
  5729. <object-name type="string">Plane.579</object-name>
  5730. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[3]/elevation-ft</property>
  5731. <factor type="double">5.5556e-05</factor>
  5732. <axis>
  5733. <x type="double">1</x>
  5734. </axis>
  5735. </animation>
  5736. <animation n="580">
  5737. <type type="string">textranslate</type>
  5738. <object-name type="string">Plane.580</object-name>
  5739. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[4]/elevation-ft</property>
  5740. <factor type="double">5.5556e-05</factor>
  5741. <axis>
  5742. <x type="double">1</x>
  5743. </axis>
  5744. </animation>
  5745. <animation n="581">
  5746. <type type="string">textranslate</type>
  5747. <object-name type="string">Plane.581</object-name>
  5748. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[5]/elevation-ft</property>
  5749. <factor type="double">5.5556e-05</factor>
  5750. <axis>
  5751. <x type="double">1</x>
  5752. </axis>
  5753. </animation>
  5754. <animation n="582">
  5755. <type type="string">textranslate</type>
  5756. <object-name type="string">Plane.582</object-name>
  5757. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[6]/elevation-ft</property>
  5758. <factor type="double">5.5556e-05</factor>
  5759. <axis>
  5760. <x type="double">1</x>
  5761. </axis>
  5762. </animation>
  5763. <animation n="583">
  5764. <type type="string">textranslate</type>
  5765. <object-name type="string">Plane.583</object-name>
  5766. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[7]/elevation-ft</property>
  5767. <factor type="double">5.5556e-05</factor>
  5768. <axis>
  5769. <x type="double">1</x>
  5770. </axis>
  5771. </animation>
  5772. <animation n="584">
  5773. <type type="string">textranslate</type>
  5774. <object-name type="string">Plane.584</object-name>
  5775. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[8]/elevation-ft</property>
  5776. <factor type="double">5.5556e-05</factor>
  5777. <axis>
  5778. <x type="double">1</x>
  5779. </axis>
  5780. </animation>
  5781. <animation n="585">
  5782. <type type="string">textranslate</type>
  5783. <object-name type="string">Plane.585</object-name>
  5784. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[9]/elevation-ft</property>
  5785. <factor type="double">5.5556e-05</factor>
  5786. <axis>
  5787. <x type="double">1</x>
  5788. </axis>
  5789. </animation>
  5790. <animation n="586">
  5791. <type type="string">textranslate</type>
  5792. <object-name type="string">Plane.586</object-name>
  5793. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[10]/elevation-ft</property>
  5794. <factor type="double">5.5556e-05</factor>
  5795. <axis>
  5796. <x type="double">1</x>
  5797. </axis>
  5798. </animation>
  5799. <animation n="587">
  5800. <type type="string">textranslate</type>
  5801. <object-name type="string">Plane.587</object-name>
  5802. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[11]/elevation-ft</property>
  5803. <factor type="double">5.5556e-05</factor>
  5804. <axis>
  5805. <x type="double">1</x>
  5806. </axis>
  5807. </animation>
  5808. <animation n="588">
  5809. <type type="string">textranslate</type>
  5810. <object-name type="string">Plane.588</object-name>
  5811. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[12]/elevation-ft</property>
  5812. <factor type="double">5.5556e-05</factor>
  5813. <axis>
  5814. <x type="double">1</x>
  5815. </axis>
  5816. </animation>
  5817. <animation n="589">
  5818. <type type="string">textranslate</type>
  5819. <object-name type="string">Plane.589</object-name>
  5820. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[13]/elevation-ft</property>
  5821. <factor type="double">5.5556e-05</factor>
  5822. <axis>
  5823. <x type="double">1</x>
  5824. </axis>
  5825. </animation>
  5826. <animation n="590">
  5827. <type type="string">textranslate</type>
  5828. <object-name type="string">Plane.590</object-name>
  5829. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[14]/elevation-ft</property>
  5830. <factor type="double">5.5556e-05</factor>
  5831. <axis>
  5832. <x type="double">1</x>
  5833. </axis>
  5834. </animation>
  5835. <animation n="591">
  5836. <type type="string">textranslate</type>
  5837. <object-name type="string">Plane.591</object-name>
  5838. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[15]/elevation-ft</property>
  5839. <factor type="double">5.5556e-05</factor>
  5840. <axis>
  5841. <x type="double">1</x>
  5842. </axis>
  5843. </animation>
  5844. <animation n="592">
  5845. <type type="string">textranslate</type>
  5846. <object-name type="string">Plane.592</object-name>
  5847. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[16]/elevation-ft</property>
  5848. <factor type="double">5.5556e-05</factor>
  5849. <axis>
  5850. <x type="double">1</x>
  5851. </axis>
  5852. </animation>
  5853. <animation n="593">
  5854. <type type="string">textranslate</type>
  5855. <object-name type="string">Plane.593</object-name>
  5856. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[17]/elevation-ft</property>
  5857. <factor type="double">5.5556e-05</factor>
  5858. <axis>
  5859. <x type="double">1</x>
  5860. </axis>
  5861. </animation>
  5862. <animation n="594">
  5863. <type type="string">textranslate</type>
  5864. <object-name type="string">Plane.594</object-name>
  5865. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[18]/elevation-ft</property>
  5866. <factor type="double">5.5556e-05</factor>
  5867. <axis>
  5868. <x type="double">1</x>
  5869. </axis>
  5870. </animation>
  5871. <animation n="595">
  5872. <type type="string">textranslate</type>
  5873. <object-name type="string">Plane.595</object-name>
  5874. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[19]/elevation-ft</property>
  5875. <factor type="double">5.5556e-05</factor>
  5876. <axis>
  5877. <x type="double">1</x>
  5878. </axis>
  5879. </animation>
  5880. <animation n="596">
  5881. <type type="string">textranslate</type>
  5882. <object-name type="string">Plane.596</object-name>
  5883. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[20]/elevation-ft</property>
  5884. <factor type="double">5.5556e-05</factor>
  5885. <axis>
  5886. <x type="double">1</x>
  5887. </axis>
  5888. </animation>
  5889. <animation n="597">
  5890. <type type="string">textranslate</type>
  5891. <object-name type="string">Plane.597</object-name>
  5892. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[21]/elevation-ft</property>
  5893. <factor type="double">5.5556e-05</factor>
  5894. <axis>
  5895. <x type="double">1</x>
  5896. </axis>
  5897. </animation>
  5898. <animation n="598">
  5899. <type type="string">textranslate</type>
  5900. <object-name type="string">Plane.598</object-name>
  5901. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[22]/elevation-ft</property>
  5902. <factor type="double">5.5556e-05</factor>
  5903. <axis>
  5904. <x type="double">1</x>
  5905. </axis>
  5906. </animation>
  5907. <animation n="599">
  5908. <type type="string">textranslate</type>
  5909. <object-name type="string">Plane.599</object-name>
  5910. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[23]/elevation-ft</property>
  5911. <factor type="double">5.5556e-05</factor>
  5912. <axis>
  5913. <x type="double">1</x>
  5914. </axis>
  5915. </animation>
  5916. <animation n="600">
  5917. <type type="string">textranslate</type>
  5918. <object-name type="string">Plane.600</object-name>
  5919. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[24]/elevation-ft</property>
  5920. <factor type="double">5.5556e-05</factor>
  5921. <axis>
  5922. <x type="double">1</x>
  5923. </axis>
  5924. </animation>
  5925. <animation n="601">
  5926. <type type="string">textranslate</type>
  5927. <object-name type="string">Plane.601</object-name>
  5928. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[25]/elevation-ft</property>
  5929. <factor type="double">5.5556e-05</factor>
  5930. <axis>
  5931. <x type="double">1</x>
  5932. </axis>
  5933. </animation>
  5934. <animation n="602">
  5935. <type type="string">textranslate</type>
  5936. <object-name type="string">Plane.602</object-name>
  5937. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[26]/elevation-ft</property>
  5938. <factor type="double">5.5556e-05</factor>
  5939. <axis>
  5940. <x type="double">1</x>
  5941. </axis>
  5942. </animation>
  5943. <animation n="603">
  5944. <type type="string">textranslate</type>
  5945. <object-name type="string">Plane.603</object-name>
  5946. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[27]/elevation-ft</property>
  5947. <factor type="double">5.5556e-05</factor>
  5948. <axis>
  5949. <x type="double">1</x>
  5950. </axis>
  5951. </animation>
  5952. <animation n="604">
  5953. <type type="string">textranslate</type>
  5954. <object-name type="string">Plane.604</object-name>
  5955. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[28]/elevation-ft</property>
  5956. <factor type="double">5.5556e-05</factor>
  5957. <axis>
  5958. <x type="double">1</x>
  5959. </axis>
  5960. </animation>
  5961. <animation n="605">
  5962. <type type="string">textranslate</type>
  5963. <object-name type="string">Plane.605</object-name>
  5964. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[29]/elevation-ft</property>
  5965. <factor type="double">5.5556e-05</factor>
  5966. <axis>
  5967. <x type="double">1</x>
  5968. </axis>
  5969. </animation>
  5970. <animation n="606">
  5971. <type type="string">textranslate</type>
  5972. <object-name type="string">Plane.606</object-name>
  5973. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[30]/elevation-ft</property>
  5974. <factor type="double">5.5556e-05</factor>
  5975. <axis>
  5976. <x type="double">1</x>
  5977. </axis>
  5978. </animation>
  5979. <animation n="607">
  5980. <type type="string">textranslate</type>
  5981. <object-name type="string">Plane.607</object-name>
  5982. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[31]/elevation-ft</property>
  5983. <factor type="double">5.5556e-05</factor>
  5984. <axis>
  5985. <x type="double">1</x>
  5986. </axis>
  5987. </animation>
  5988. <animation n="609">
  5989. <type type="string">textranslate</type>
  5990. <object-name type="string">Plane.609</object-name>
  5991. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[1]/elevation-ft</property>
  5992. <factor type="double">5.5556e-05</factor>
  5993. <axis>
  5994. <x type="double">1</x>
  5995. </axis>
  5996. </animation>
  5997. <animation n="610">
  5998. <type type="string">textranslate</type>
  5999. <object-name type="string">Plane.610</object-name>
  6000. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[2]/elevation-ft</property>
  6001. <factor type="double">5.5556e-05</factor>
  6002. <axis>
  6003. <x type="double">1</x>
  6004. </axis>
  6005. </animation>
  6006. <animation n="611">
  6007. <type type="string">textranslate</type>
  6008. <object-name type="string">Plane.611</object-name>
  6009. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[3]/elevation-ft</property>
  6010. <factor type="double">5.5556e-05</factor>
  6011. <axis>
  6012. <x type="double">1</x>
  6013. </axis>
  6014. </animation>
  6015. <animation n="612">
  6016. <type type="string">textranslate</type>
  6017. <object-name type="string">Plane.612</object-name>
  6018. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[4]/elevation-ft</property>
  6019. <factor type="double">5.5556e-05</factor>
  6020. <axis>
  6021. <x type="double">1</x>
  6022. </axis>
  6023. </animation>
  6024. <animation n="613">
  6025. <type type="string">textranslate</type>
  6026. <object-name type="string">Plane.613</object-name>
  6027. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[5]/elevation-ft</property>
  6028. <factor type="double">5.5556e-05</factor>
  6029. <axis>
  6030. <x type="double">1</x>
  6031. </axis>
  6032. </animation>
  6033. <animation n="614">
  6034. <type type="string">textranslate</type>
  6035. <object-name type="string">Plane.614</object-name>
  6036. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[6]/elevation-ft</property>
  6037. <factor type="double">5.5556e-05</factor>
  6038. <axis>
  6039. <x type="double">1</x>
  6040. </axis>
  6041. </animation>
  6042. <animation n="615">
  6043. <type type="string">textranslate</type>
  6044. <object-name type="string">Plane.615</object-name>
  6045. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[7]/elevation-ft</property>
  6046. <factor type="double">5.5556e-05</factor>
  6047. <axis>
  6048. <x type="double">1</x>
  6049. </axis>
  6050. </animation>
  6051. <animation n="616">
  6052. <type type="string">textranslate</type>
  6053. <object-name type="string">Plane.616</object-name>
  6054. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[8]/elevation-ft</property>
  6055. <factor type="double">5.5556e-05</factor>
  6056. <axis>
  6057. <x type="double">1</x>
  6058. </axis>
  6059. </animation>
  6060. <animation n="617">
  6061. <type type="string">textranslate</type>
  6062. <object-name type="string">Plane.617</object-name>
  6063. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[9]/elevation-ft</property>
  6064. <factor type="double">5.5556e-05</factor>
  6065. <axis>
  6066. <x type="double">1</x>
  6067. </axis>
  6068. </animation>
  6069. <animation n="618">
  6070. <type type="string">textranslate</type>
  6071. <object-name type="string">Plane.618</object-name>
  6072. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[10]/elevation-ft</property>
  6073. <factor type="double">5.5556e-05</factor>
  6074. <axis>
  6075. <x type="double">1</x>
  6076. </axis>
  6077. </animation>
  6078. <animation n="619">
  6079. <type type="string">textranslate</type>
  6080. <object-name type="string">Plane.619</object-name>
  6081. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[11]/elevation-ft</property>
  6082. <factor type="double">5.5556e-05</factor>
  6083. <axis>
  6084. <x type="double">1</x>
  6085. </axis>
  6086. </animation>
  6087. <animation n="620">
  6088. <type type="string">textranslate</type>
  6089. <object-name type="string">Plane.620</object-name>
  6090. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[12]/elevation-ft</property>
  6091. <factor type="double">5.5556e-05</factor>
  6092. <axis>
  6093. <x type="double">1</x>
  6094. </axis>
  6095. </animation>
  6096. <animation n="621">
  6097. <type type="string">textranslate</type>
  6098. <object-name type="string">Plane.621</object-name>
  6099. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[13]/elevation-ft</property>
  6100. <factor type="double">5.5556e-05</factor>
  6101. <axis>
  6102. <x type="double">1</x>
  6103. </axis>
  6104. </animation>
  6105. <animation n="622">
  6106. <type type="string">textranslate</type>
  6107. <object-name type="string">Plane.622</object-name>
  6108. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[14]/elevation-ft</property>
  6109. <factor type="double">5.5556e-05</factor>
  6110. <axis>
  6111. <x type="double">1</x>
  6112. </axis>
  6113. </animation>
  6114. <animation n="623">
  6115. <type type="string">textranslate</type>
  6116. <object-name type="string">Plane.623</object-name>
  6117. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[15]/elevation-ft</property>
  6118. <factor type="double">5.5556e-05</factor>
  6119. <axis>
  6120. <x type="double">1</x>
  6121. </axis>
  6122. </animation>
  6123. <animation n="624">
  6124. <type type="string">textranslate</type>
  6125. <object-name type="string">Plane.624</object-name>
  6126. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[16]/elevation-ft</property>
  6127. <factor type="double">5.5556e-05</factor>
  6128. <axis>
  6129. <x type="double">1</x>
  6130. </axis>
  6131. </animation>
  6132. <animation n="625">
  6133. <type type="string">textranslate</type>
  6134. <object-name type="string">Plane.625</object-name>
  6135. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[17]/elevation-ft</property>
  6136. <factor type="double">5.5556e-05</factor>
  6137. <axis>
  6138. <x type="double">1</x>
  6139. </axis>
  6140. </animation>
  6141. <animation n="626">
  6142. <type type="string">textranslate</type>
  6143. <object-name type="string">Plane.626</object-name>
  6144. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[18]/elevation-ft</property>
  6145. <factor type="double">5.5556e-05</factor>
  6146. <axis>
  6147. <x type="double">1</x>
  6148. </axis>
  6149. </animation>
  6150. <animation n="627">
  6151. <type type="string">textranslate</type>
  6152. <object-name type="string">Plane.627</object-name>
  6153. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[19]/elevation-ft</property>
  6154. <factor type="double">5.5556e-05</factor>
  6155. <axis>
  6156. <x type="double">1</x>
  6157. </axis>
  6158. </animation>
  6159. <animation n="628">
  6160. <type type="string">textranslate</type>
  6161. <object-name type="string">Plane.628</object-name>
  6162. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[20]/elevation-ft</property>
  6163. <factor type="double">5.5556e-05</factor>
  6164. <axis>
  6165. <x type="double">1</x>
  6166. </axis>
  6167. </animation>
  6168. <animation n="629">
  6169. <type type="string">textranslate</type>
  6170. <object-name type="string">Plane.629</object-name>
  6171. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[21]/elevation-ft</property>
  6172. <factor type="double">5.5556e-05</factor>
  6173. <axis>
  6174. <x type="double">1</x>
  6175. </axis>
  6176. </animation>
  6177. <animation n="630">
  6178. <type type="string">textranslate</type>
  6179. <object-name type="string">Plane.630</object-name>
  6180. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[22]/elevation-ft</property>
  6181. <factor type="double">5.5556e-05</factor>
  6182. <axis>
  6183. <x type="double">1</x>
  6184. </axis>
  6185. </animation>
  6186. <animation n="631">
  6187. <type type="string">textranslate</type>
  6188. <object-name type="string">Plane.631</object-name>
  6189. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[23]/elevation-ft</property>
  6190. <factor type="double">5.5556e-05</factor>
  6191. <axis>
  6192. <x type="double">1</x>
  6193. </axis>
  6194. </animation>
  6195. <animation n="632">
  6196. <type type="string">textranslate</type>
  6197. <object-name type="string">Plane.632</object-name>
  6198. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[24]/elevation-ft</property>
  6199. <factor type="double">5.5556e-05</factor>
  6200. <axis>
  6201. <x type="double">1</x>
  6202. </axis>
  6203. </animation>
  6204. <animation n="633">
  6205. <type type="string">textranslate</type>
  6206. <object-name type="string">Plane.633</object-name>
  6207. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[25]/elevation-ft</property>
  6208. <factor type="double">5.5556e-05</factor>
  6209. <axis>
  6210. <x type="double">1</x>
  6211. </axis>
  6212. </animation>
  6213. <animation n="634">
  6214. <type type="string">textranslate</type>
  6215. <object-name type="string">Plane.634</object-name>
  6216. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[26]/elevation-ft</property>
  6217. <factor type="double">5.5556e-05</factor>
  6218. <axis>
  6219. <x type="double">1</x>
  6220. </axis>
  6221. </animation>
  6222. <animation n="635">
  6223. <type type="string">textranslate</type>
  6224. <object-name type="string">Plane.635</object-name>
  6225. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[27]/elevation-ft</property>
  6226. <factor type="double">5.5556e-05</factor>
  6227. <axis>
  6228. <x type="double">1</x>
  6229. </axis>
  6230. </animation>
  6231. <animation n="636">
  6232. <type type="string">textranslate</type>
  6233. <object-name type="string">Plane.636</object-name>
  6234. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[28]/elevation-ft</property>
  6235. <factor type="double">5.5556e-05</factor>
  6236. <axis>
  6237. <x type="double">1</x>
  6238. </axis>
  6239. </animation>
  6240. <animation n="637">
  6241. <type type="string">textranslate</type>
  6242. <object-name type="string">Plane.637</object-name>
  6243. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[29]/elevation-ft</property>
  6244. <factor type="double">5.5556e-05</factor>
  6245. <axis>
  6246. <x type="double">1</x>
  6247. </axis>
  6248. </animation>
  6249. <animation n="638">
  6250. <type type="string">textranslate</type>
  6251. <object-name type="string">Plane.638</object-name>
  6252. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[30]/elevation-ft</property>
  6253. <factor type="double">5.5556e-05</factor>
  6254. <axis>
  6255. <x type="double">1</x>
  6256. </axis>
  6257. </animation>
  6258. <animation n="639">
  6259. <type type="string">textranslate</type>
  6260. <object-name type="string">Plane.639</object-name>
  6261. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[31]/elevation-ft</property>
  6262. <factor type="double">5.5556e-05</factor>
  6263. <axis>
  6264. <x type="double">1</x>
  6265. </axis>
  6266. </animation>
  6267. <animation n="641">
  6268. <type type="string">textranslate</type>
  6269. <object-name type="string">Plane.641</object-name>
  6270. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[1]/elevation-ft</property>
  6271. <factor type="double">5.5556e-05</factor>
  6272. <axis>
  6273. <x type="double">1</x>
  6274. </axis>
  6275. </animation>
  6276. <animation n="642">
  6277. <type type="string">textranslate</type>
  6278. <object-name type="string">Plane.642</object-name>
  6279. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[2]/elevation-ft</property>
  6280. <factor type="double">5.5556e-05</factor>
  6281. <axis>
  6282. <x type="double">1</x>
  6283. </axis>
  6284. </animation>
  6285. <animation n="643">
  6286. <type type="string">textranslate</type>
  6287. <object-name type="string">Plane.643</object-name>
  6288. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[3]/elevation-ft</property>
  6289. <factor type="double">5.5556e-05</factor>
  6290. <axis>
  6291. <x type="double">1</x>
  6292. </axis>
  6293. </animation>
  6294. <animation n="644">
  6295. <type type="string">textranslate</type>
  6296. <object-name type="string">Plane.644</object-name>
  6297. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[4]/elevation-ft</property>
  6298. <factor type="double">5.5556e-05</factor>
  6299. <axis>
  6300. <x type="double">1</x>
  6301. </axis>
  6302. </animation>
  6303. <animation n="645">
  6304. <type type="string">textranslate</type>
  6305. <object-name type="string">Plane.645</object-name>
  6306. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[5]/elevation-ft</property>
  6307. <factor type="double">5.5556e-05</factor>
  6308. <axis>
  6309. <x type="double">1</x>
  6310. </axis>
  6311. </animation>
  6312. <animation n="646">
  6313. <type type="string">textranslate</type>
  6314. <object-name type="string">Plane.646</object-name>
  6315. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[6]/elevation-ft</property>
  6316. <factor type="double">5.5556e-05</factor>
  6317. <axis>
  6318. <x type="double">1</x>
  6319. </axis>
  6320. </animation>
  6321. <animation n="647">
  6322. <type type="string">textranslate</type>
  6323. <object-name type="string">Plane.647</object-name>
  6324. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[7]/elevation-ft</property>
  6325. <factor type="double">5.5556e-05</factor>
  6326. <axis>
  6327. <x type="double">1</x>
  6328. </axis>
  6329. </animation>
  6330. <animation n="648">
  6331. <type type="string">textranslate</type>
  6332. <object-name type="string">Plane.648</object-name>
  6333. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[8]/elevation-ft</property>
  6334. <factor type="double">5.5556e-05</factor>
  6335. <axis>
  6336. <x type="double">1</x>
  6337. </axis>
  6338. </animation>
  6339. <animation n="649">
  6340. <type type="string">textranslate</type>
  6341. <object-name type="string">Plane.649</object-name>
  6342. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[9]/elevation-ft</property>
  6343. <factor type="double">5.5556e-05</factor>
  6344. <axis>
  6345. <x type="double">1</x>
  6346. </axis>
  6347. </animation>
  6348. <animation n="650">
  6349. <type type="string">textranslate</type>
  6350. <object-name type="string">Plane.650</object-name>
  6351. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[10]/elevation-ft</property>
  6352. <factor type="double">5.5556e-05</factor>
  6353. <axis>
  6354. <x type="double">1</x>
  6355. </axis>
  6356. </animation>
  6357. <animation n="651">
  6358. <type type="string">textranslate</type>
  6359. <object-name type="string">Plane.651</object-name>
  6360. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[11]/elevation-ft</property>
  6361. <factor type="double">5.5556e-05</factor>
  6362. <axis>
  6363. <x type="double">1</x>
  6364. </axis>
  6365. </animation>
  6366. <animation n="652">
  6367. <type type="string">textranslate</type>
  6368. <object-name type="string">Plane.652</object-name>
  6369. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[12]/elevation-ft</property>
  6370. <factor type="double">5.5556e-05</factor>
  6371. <axis>
  6372. <x type="double">1</x>
  6373. </axis>
  6374. </animation>
  6375. <animation n="653">
  6376. <type type="string">textranslate</type>
  6377. <object-name type="string">Plane.653</object-name>
  6378. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[13]/elevation-ft</property>
  6379. <factor type="double">5.5556e-05</factor>
  6380. <axis>
  6381. <x type="double">1</x>
  6382. </axis>
  6383. </animation>
  6384. <animation n="654">
  6385. <type type="string">textranslate</type>
  6386. <object-name type="string">Plane.654</object-name>
  6387. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[14]/elevation-ft</property>
  6388. <factor type="double">5.5556e-05</factor>
  6389. <axis>
  6390. <x type="double">1</x>
  6391. </axis>
  6392. </animation>
  6393. <animation n="655">
  6394. <type type="string">textranslate</type>
  6395. <object-name type="string">Plane.655</object-name>
  6396. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[15]/elevation-ft</property>
  6397. <factor type="double">5.5556e-05</factor>
  6398. <axis>
  6399. <x type="double">1</x>
  6400. </axis>
  6401. </animation>
  6402. <animation n="656">
  6403. <type type="string">textranslate</type>
  6404. <object-name type="string">Plane.656</object-name>
  6405. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[16]/elevation-ft</property>
  6406. <factor type="double">5.5556e-05</factor>
  6407. <axis>
  6408. <x type="double">1</x>
  6409. </axis>
  6410. </animation>
  6411. <animation n="657">
  6412. <type type="string">textranslate</type>
  6413. <object-name type="string">Plane.657</object-name>
  6414. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[17]/elevation-ft</property>
  6415. <factor type="double">5.5556e-05</factor>
  6416. <axis>
  6417. <x type="double">1</x>
  6418. </axis>
  6419. </animation>
  6420. <animation n="658">
  6421. <type type="string">textranslate</type>
  6422. <object-name type="string">Plane.658</object-name>
  6423. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[18]/elevation-ft</property>
  6424. <factor type="double">5.5556e-05</factor>
  6425. <axis>
  6426. <x type="double">1</x>
  6427. </axis>
  6428. </animation>
  6429. <animation n="659">
  6430. <type type="string">textranslate</type>
  6431. <object-name type="string">Plane.659</object-name>
  6432. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[19]/elevation-ft</property>
  6433. <factor type="double">5.5556e-05</factor>
  6434. <axis>
  6435. <x type="double">1</x>
  6436. </axis>
  6437. </animation>
  6438. <animation n="660">
  6439. <type type="string">textranslate</type>
  6440. <object-name type="string">Plane.660</object-name>
  6441. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[20]/elevation-ft</property>
  6442. <factor type="double">5.5556e-05</factor>
  6443. <axis>
  6444. <x type="double">1</x>
  6445. </axis>
  6446. </animation>
  6447. <animation n="661">
  6448. <type type="string">textranslate</type>
  6449. <object-name type="string">Plane.661</object-name>
  6450. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[21]/elevation-ft</property>
  6451. <factor type="double">5.5556e-05</factor>
  6452. <axis>
  6453. <x type="double">1</x>
  6454. </axis>
  6455. </animation>
  6456. <animation n="662">
  6457. <type type="string">textranslate</type>
  6458. <object-name type="string">Plane.662</object-name>
  6459. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[22]/elevation-ft</property>
  6460. <factor type="double">5.5556e-05</factor>
  6461. <axis>
  6462. <x type="double">1</x>
  6463. </axis>
  6464. </animation>
  6465. <animation n="663">
  6466. <type type="string">textranslate</type>
  6467. <object-name type="string">Plane.663</object-name>
  6468. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[23]/elevation-ft</property>
  6469. <factor type="double">5.5556e-05</factor>
  6470. <axis>
  6471. <x type="double">1</x>
  6472. </axis>
  6473. </animation>
  6474. <animation n="664">
  6475. <type type="string">textranslate</type>
  6476. <object-name type="string">Plane.664</object-name>
  6477. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[24]/elevation-ft</property>
  6478. <factor type="double">5.5556e-05</factor>
  6479. <axis>
  6480. <x type="double">1</x>
  6481. </axis>
  6482. </animation>
  6483. <animation n="665">
  6484. <type type="string">textranslate</type>
  6485. <object-name type="string">Plane.665</object-name>
  6486. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[25]/elevation-ft</property>
  6487. <factor type="double">5.5556e-05</factor>
  6488. <axis>
  6489. <x type="double">1</x>
  6490. </axis>
  6491. </animation>
  6492. <animation n="666">
  6493. <type type="string">textranslate</type>
  6494. <object-name type="string">Plane.666</object-name>
  6495. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[26]/elevation-ft</property>
  6496. <factor type="double">5.5556e-05</factor>
  6497. <axis>
  6498. <x type="double">1</x>
  6499. </axis>
  6500. </animation>
  6501. <animation n="667">
  6502. <type type="string">textranslate</type>
  6503. <object-name type="string">Plane.667</object-name>
  6504. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[27]/elevation-ft</property>
  6505. <factor type="double">5.5556e-05</factor>
  6506. <axis>
  6507. <x type="double">1</x>
  6508. </axis>
  6509. </animation>
  6510. <animation n="668">
  6511. <type type="string">textranslate</type>
  6512. <object-name type="string">Plane.668</object-name>
  6513. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[28]/elevation-ft</property>
  6514. <factor type="double">5.5556e-05</factor>
  6515. <axis>
  6516. <x type="double">1</x>
  6517. </axis>
  6518. </animation>
  6519. <animation n="669">
  6520. <type type="string">textranslate</type>
  6521. <object-name type="string">Plane.669</object-name>
  6522. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[29]/elevation-ft</property>
  6523. <factor type="double">5.5556e-05</factor>
  6524. <axis>
  6525. <x type="double">1</x>
  6526. </axis>
  6527. </animation>
  6528. <animation n="670">
  6529. <type type="string">textranslate</type>
  6530. <object-name type="string">Plane.670</object-name>
  6531. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[30]/elevation-ft</property>
  6532. <factor type="double">5.5556e-05</factor>
  6533. <axis>
  6534. <x type="double">1</x>
  6535. </axis>
  6536. </animation>
  6537. <animation n="671">
  6538. <type type="string">textranslate</type>
  6539. <object-name type="string">Plane.671</object-name>
  6540. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[31]/elevation-ft</property>
  6541. <factor type="double">5.5556e-05</factor>
  6542. <axis>
  6543. <x type="double">1</x>
  6544. </axis>
  6545. </animation>
  6546. <animation n="673">
  6547. <type type="string">textranslate</type>
  6548. <object-name type="string">Plane.673</object-name>
  6549. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[1]/elevation-ft</property>
  6550. <factor type="double">5.5556e-05</factor>
  6551. <axis>
  6552. <x type="double">1</x>
  6553. </axis>
  6554. </animation>
  6555. <animation n="674">
  6556. <type type="string">textranslate</type>
  6557. <object-name type="string">Plane.674</object-name>
  6558. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[2]/elevation-ft</property>
  6559. <factor type="double">5.5556e-05</factor>
  6560. <axis>
  6561. <x type="double">1</x>
  6562. </axis>
  6563. </animation>
  6564. <animation n="675">
  6565. <type type="string">textranslate</type>
  6566. <object-name type="string">Plane.675</object-name>
  6567. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[3]/elevation-ft</property>
  6568. <factor type="double">5.5556e-05</factor>
  6569. <axis>
  6570. <x type="double">1</x>
  6571. </axis>
  6572. </animation>
  6573. <animation n="676">
  6574. <type type="string">textranslate</type>
  6575. <object-name type="string">Plane.676</object-name>
  6576. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[4]/elevation-ft</property>
  6577. <factor type="double">5.5556e-05</factor>
  6578. <axis>
  6579. <x type="double">1</x>
  6580. </axis>
  6581. </animation>
  6582. <animation n="677">
  6583. <type type="string">textranslate</type>
  6584. <object-name type="string">Plane.677</object-name>
  6585. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[5]/elevation-ft</property>
  6586. <factor type="double">5.5556e-05</factor>
  6587. <axis>
  6588. <x type="double">1</x>
  6589. </axis>
  6590. </animation>
  6591. <animation n="678">
  6592. <type type="string">textranslate</type>
  6593. <object-name type="string">Plane.678</object-name>
  6594. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[6]/elevation-ft</property>
  6595. <factor type="double">5.5556e-05</factor>
  6596. <axis>
  6597. <x type="double">1</x>
  6598. </axis>
  6599. </animation>
  6600. <animation n="679">
  6601. <type type="string">textranslate</type>
  6602. <object-name type="string">Plane.679</object-name>
  6603. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[7]/elevation-ft</property>
  6604. <factor type="double">5.5556e-05</factor>
  6605. <axis>
  6606. <x type="double">1</x>
  6607. </axis>
  6608. </animation>
  6609. <animation n="680">
  6610. <type type="string">textranslate</type>
  6611. <object-name type="string">Plane.680</object-name>
  6612. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[8]/elevation-ft</property>
  6613. <factor type="double">5.5556e-05</factor>
  6614. <axis>
  6615. <x type="double">1</x>
  6616. </axis>
  6617. </animation>
  6618. <animation n="681">
  6619. <type type="string">textranslate</type>
  6620. <object-name type="string">Plane.681</object-name>
  6621. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[9]/elevation-ft</property>
  6622. <factor type="double">5.5556e-05</factor>
  6623. <axis>
  6624. <x type="double">1</x>
  6625. </axis>
  6626. </animation>
  6627. <animation n="682">
  6628. <type type="string">textranslate</type>
  6629. <object-name type="string">Plane.682</object-name>
  6630. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[10]/elevation-ft</property>
  6631. <factor type="double">5.5556e-05</factor>
  6632. <axis>
  6633. <x type="double">1</x>
  6634. </axis>
  6635. </animation>
  6636. <animation n="683">
  6637. <type type="string">textranslate</type>
  6638. <object-name type="string">Plane.683</object-name>
  6639. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[11]/elevation-ft</property>
  6640. <factor type="double">5.5556e-05</factor>
  6641. <axis>
  6642. <x type="double">1</x>
  6643. </axis>
  6644. </animation>
  6645. <animation n="684">
  6646. <type type="string">textranslate</type>
  6647. <object-name type="string">Plane.684</object-name>
  6648. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[12]/elevation-ft</property>
  6649. <factor type="double">5.5556e-05</factor>
  6650. <axis>
  6651. <x type="double">1</x>
  6652. </axis>
  6653. </animation>
  6654. <animation n="685">
  6655. <type type="string">textranslate</type>
  6656. <object-name type="string">Plane.685</object-name>
  6657. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[13]/elevation-ft</property>
  6658. <factor type="double">5.5556e-05</factor>
  6659. <axis>
  6660. <x type="double">1</x>
  6661. </axis>
  6662. </animation>
  6663. <animation n="686">
  6664. <type type="string">textranslate</type>
  6665. <object-name type="string">Plane.686</object-name>
  6666. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[14]/elevation-ft</property>
  6667. <factor type="double">5.5556e-05</factor>
  6668. <axis>
  6669. <x type="double">1</x>
  6670. </axis>
  6671. </animation>
  6672. <animation n="687">
  6673. <type type="string">textranslate</type>
  6674. <object-name type="string">Plane.687</object-name>
  6675. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[15]/elevation-ft</property>
  6676. <factor type="double">5.5556e-05</factor>
  6677. <axis>
  6678. <x type="double">1</x>
  6679. </axis>
  6680. </animation>
  6681. <animation n="688">
  6682. <type type="string">textranslate</type>
  6683. <object-name type="string">Plane.688</object-name>
  6684. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[16]/elevation-ft</property>
  6685. <factor type="double">5.5556e-05</factor>
  6686. <axis>
  6687. <x type="double">1</x>
  6688. </axis>
  6689. </animation>
  6690. <animation n="689">
  6691. <type type="string">textranslate</type>
  6692. <object-name type="string">Plane.689</object-name>
  6693. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[17]/elevation-ft</property>
  6694. <factor type="double">5.5556e-05</factor>
  6695. <axis>
  6696. <x type="double">1</x>
  6697. </axis>
  6698. </animation>
  6699. <animation n="690">
  6700. <type type="string">textranslate</type>
  6701. <object-name type="string">Plane.690</object-name>
  6702. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[18]/elevation-ft</property>
  6703. <factor type="double">5.5556e-05</factor>
  6704. <axis>
  6705. <x type="double">1</x>
  6706. </axis>
  6707. </animation>
  6708. <animation n="691">
  6709. <type type="string">textranslate</type>
  6710. <object-name type="string">Plane.691</object-name>
  6711. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[19]/elevation-ft</property>
  6712. <factor type="double">5.5556e-05</factor>
  6713. <axis>
  6714. <x type="double">1</x>
  6715. </axis>
  6716. </animation>
  6717. <animation n="692">
  6718. <type type="string">textranslate</type>
  6719. <object-name type="string">Plane.692</object-name>
  6720. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[20]/elevation-ft</property>
  6721. <factor type="double">5.5556e-05</factor>
  6722. <axis>
  6723. <x type="double">1</x>
  6724. </axis>
  6725. </animation>
  6726. <animation n="693">
  6727. <type type="string">textranslate</type>
  6728. <object-name type="string">Plane.693</object-name>
  6729. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[21]/elevation-ft</property>
  6730. <factor type="double">5.5556e-05</factor>
  6731. <axis>
  6732. <x type="double">1</x>
  6733. </axis>
  6734. </animation>
  6735. <animation n="694">
  6736. <type type="string">textranslate</type>
  6737. <object-name type="string">Plane.694</object-name>
  6738. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[22]/elevation-ft</property>
  6739. <factor type="double">5.5556e-05</factor>
  6740. <axis>
  6741. <x type="double">1</x>
  6742. </axis>
  6743. </animation>
  6744. <animation n="695">
  6745. <type type="string">textranslate</type>
  6746. <object-name type="string">Plane.695</object-name>
  6747. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[23]/elevation-ft</property>
  6748. <factor type="double">5.5556e-05</factor>
  6749. <axis>
  6750. <x type="double">1</x>
  6751. </axis>
  6752. </animation>
  6753. <animation n="696">
  6754. <type type="string">textranslate</type>
  6755. <object-name type="string">Plane.696</object-name>
  6756. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[24]/elevation-ft</property>
  6757. <factor type="double">5.5556e-05</factor>
  6758. <axis>
  6759. <x type="double">1</x>
  6760. </axis>
  6761. </animation>
  6762. <animation n="697">
  6763. <type type="string">textranslate</type>
  6764. <object-name type="string">Plane.697</object-name>
  6765. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[25]/elevation-ft</property>
  6766. <factor type="double">5.5556e-05</factor>
  6767. <axis>
  6768. <x type="double">1</x>
  6769. </axis>
  6770. </animation>
  6771. <animation n="698">
  6772. <type type="string">textranslate</type>
  6773. <object-name type="string">Plane.698</object-name>
  6774. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[26]/elevation-ft</property>
  6775. <factor type="double">5.5556e-05</factor>
  6776. <axis>
  6777. <x type="double">1</x>
  6778. </axis>
  6779. </animation>
  6780. <animation n="699">
  6781. <type type="string">textranslate</type>
  6782. <object-name type="string">Plane.699</object-name>
  6783. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[27]/elevation-ft</property>
  6784. <factor type="double">5.5556e-05</factor>
  6785. <axis>
  6786. <x type="double">1</x>
  6787. </axis>
  6788. </animation>
  6789. <animation n="700">
  6790. <type type="string">textranslate</type>
  6791. <object-name type="string">Plane.700</object-name>
  6792. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[28]/elevation-ft</property>
  6793. <factor type="double">5.5556e-05</factor>
  6794. <axis>
  6795. <x type="double">1</x>
  6796. </axis>
  6797. </animation>
  6798. <animation n="701">
  6799. <type type="string">textranslate</type>
  6800. <object-name type="string">Plane.701</object-name>
  6801. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[29]/elevation-ft</property>
  6802. <factor type="double">5.5556e-05</factor>
  6803. <axis>
  6804. <x type="double">1</x>
  6805. </axis>
  6806. </animation>
  6807. <animation n="702">
  6808. <type type="string">textranslate</type>
  6809. <object-name type="string">Plane.702</object-name>
  6810. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[30]/elevation-ft</property>
  6811. <factor type="double">5.5556e-05</factor>
  6812. <axis>
  6813. <x type="double">1</x>
  6814. </axis>
  6815. </animation>
  6816. <animation n="703">
  6817. <type type="string">textranslate</type>
  6818. <object-name type="string">Plane.703</object-name>
  6819. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[31]/elevation-ft</property>
  6820. <factor type="double">5.5556e-05</factor>
  6821. <axis>
  6822. <x type="double">1</x>
  6823. </axis>
  6824. </animation>
  6825. <animation n="705">
  6826. <type type="string">textranslate</type>
  6827. <object-name type="string">Plane.705</object-name>
  6828. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[1]/elevation-ft</property>
  6829. <factor type="double">5.5556e-05</factor>
  6830. <axis>
  6831. <x type="double">1</x>
  6832. </axis>
  6833. </animation>
  6834. <animation n="706">
  6835. <type type="string">textranslate</type>
  6836. <object-name type="string">Plane.706</object-name>
  6837. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[2]/elevation-ft</property>
  6838. <factor type="double">5.5556e-05</factor>
  6839. <axis>
  6840. <x type="double">1</x>
  6841. </axis>
  6842. </animation>
  6843. <animation n="707">
  6844. <type type="string">textranslate</type>
  6845. <object-name type="string">Plane.707</object-name>
  6846. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[3]/elevation-ft</property>
  6847. <factor type="double">5.5556e-05</factor>
  6848. <axis>
  6849. <x type="double">1</x>
  6850. </axis>
  6851. </animation>
  6852. <animation n="708">
  6853. <type type="string">textranslate</type>
  6854. <object-name type="string">Plane.708</object-name>
  6855. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[4]/elevation-ft</property>
  6856. <factor type="double">5.5556e-05</factor>
  6857. <axis>
  6858. <x type="double">1</x>
  6859. </axis>
  6860. </animation>
  6861. <animation n="709">
  6862. <type type="string">textranslate</type>
  6863. <object-name type="string">Plane.709</object-name>
  6864. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[5]/elevation-ft</property>
  6865. <factor type="double">5.5556e-05</factor>
  6866. <axis>
  6867. <x type="double">1</x>
  6868. </axis>
  6869. </animation>
  6870. <animation n="710">
  6871. <type type="string">textranslate</type>
  6872. <object-name type="string">Plane.710</object-name>
  6873. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[6]/elevation-ft</property>
  6874. <factor type="double">5.5556e-05</factor>
  6875. <axis>
  6876. <x type="double">1</x>
  6877. </axis>
  6878. </animation>
  6879. <animation n="711">
  6880. <type type="string">textranslate</type>
  6881. <object-name type="string">Plane.711</object-name>
  6882. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[7]/elevation-ft</property>
  6883. <factor type="double">5.5556e-05</factor>
  6884. <axis>
  6885. <x type="double">1</x>
  6886. </axis>
  6887. </animation>
  6888. <animation n="712">
  6889. <type type="string">textranslate</type>
  6890. <object-name type="string">Plane.712</object-name>
  6891. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[8]/elevation-ft</property>
  6892. <factor type="double">5.5556e-05</factor>
  6893. <axis>
  6894. <x type="double">1</x>
  6895. </axis>
  6896. </animation>
  6897. <animation n="713">
  6898. <type type="string">textranslate</type>
  6899. <object-name type="string">Plane.713</object-name>
  6900. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[9]/elevation-ft</property>
  6901. <factor type="double">5.5556e-05</factor>
  6902. <axis>
  6903. <x type="double">1</x>
  6904. </axis>
  6905. </animation>
  6906. <animation n="714">
  6907. <type type="string">textranslate</type>
  6908. <object-name type="string">Plane.714</object-name>
  6909. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[10]/elevation-ft</property>
  6910. <factor type="double">5.5556e-05</factor>
  6911. <axis>
  6912. <x type="double">1</x>
  6913. </axis>
  6914. </animation>
  6915. <animation n="715">
  6916. <type type="string">textranslate</type>
  6917. <object-name type="string">Plane.715</object-name>
  6918. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[11]/elevation-ft</property>
  6919. <factor type="double">5.5556e-05</factor>
  6920. <axis>
  6921. <x type="double">1</x>
  6922. </axis>
  6923. </animation>
  6924. <animation n="716">
  6925. <type type="string">textranslate</type>
  6926. <object-name type="string">Plane.716</object-name>
  6927. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[12]/elevation-ft</property>
  6928. <factor type="double">5.5556e-05</factor>
  6929. <axis>
  6930. <x type="double">1</x>
  6931. </axis>
  6932. </animation>
  6933. <animation n="717">
  6934. <type type="string">textranslate</type>
  6935. <object-name type="string">Plane.717</object-name>
  6936. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[13]/elevation-ft</property>
  6937. <factor type="double">5.5556e-05</factor>
  6938. <axis>
  6939. <x type="double">1</x>
  6940. </axis>
  6941. </animation>
  6942. <animation n="718">
  6943. <type type="string">textranslate</type>
  6944. <object-name type="string">Plane.718</object-name>
  6945. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[14]/elevation-ft</property>
  6946. <factor type="double">5.5556e-05</factor>
  6947. <axis>
  6948. <x type="double">1</x>
  6949. </axis>
  6950. </animation>
  6951. <animation n="719">
  6952. <type type="string">textranslate</type>
  6953. <object-name type="string">Plane.719</object-name>
  6954. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[15]/elevation-ft</property>
  6955. <factor type="double">5.5556e-05</factor>
  6956. <axis>
  6957. <x type="double">1</x>
  6958. </axis>
  6959. </animation>
  6960. <animation n="720">
  6961. <type type="string">textranslate</type>
  6962. <object-name type="string">Plane.720</object-name>
  6963. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[16]/elevation-ft</property>
  6964. <factor type="double">5.5556e-05</factor>
  6965. <axis>
  6966. <x type="double">1</x>
  6967. </axis>
  6968. </animation>
  6969. <animation n="721">
  6970. <type type="string">textranslate</type>
  6971. <object-name type="string">Plane.721</object-name>
  6972. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[17]/elevation-ft</property>
  6973. <factor type="double">5.5556e-05</factor>
  6974. <axis>
  6975. <x type="double">1</x>
  6976. </axis>
  6977. </animation>
  6978. <animation n="722">
  6979. <type type="string">textranslate</type>
  6980. <object-name type="string">Plane.722</object-name>
  6981. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[18]/elevation-ft</property>
  6982. <factor type="double">5.5556e-05</factor>
  6983. <axis>
  6984. <x type="double">1</x>
  6985. </axis>
  6986. </animation>
  6987. <animation n="723">
  6988. <type type="string">textranslate</type>
  6989. <object-name type="string">Plane.723</object-name>
  6990. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[19]/elevation-ft</property>
  6991. <factor type="double">5.5556e-05</factor>
  6992. <axis>
  6993. <x type="double">1</x>
  6994. </axis>
  6995. </animation>
  6996. <animation n="724">
  6997. <type type="string">textranslate</type>
  6998. <object-name type="string">Plane.724</object-name>
  6999. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[20]/elevation-ft</property>
  7000. <factor type="double">5.5556e-05</factor>
  7001. <axis>
  7002. <x type="double">1</x>
  7003. </axis>
  7004. </animation>
  7005. <animation n="725">
  7006. <type type="string">textranslate</type>
  7007. <object-name type="string">Plane.725</object-name>
  7008. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[21]/elevation-ft</property>
  7009. <factor type="double">5.5556e-05</factor>
  7010. <axis>
  7011. <x type="double">1</x>
  7012. </axis>
  7013. </animation>
  7014. <animation n="726">
  7015. <type type="string">textranslate</type>
  7016. <object-name type="string">Plane.726</object-name>
  7017. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[22]/elevation-ft</property>
  7018. <factor type="double">5.5556e-05</factor>
  7019. <axis>
  7020. <x type="double">1</x>
  7021. </axis>
  7022. </animation>
  7023. <animation n="727">
  7024. <type type="string">textranslate</type>
  7025. <object-name type="string">Plane.727</object-name>
  7026. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[23]/elevation-ft</property>
  7027. <factor type="double">5.5556e-05</factor>
  7028. <axis>
  7029. <x type="double">1</x>
  7030. </axis>
  7031. </animation>
  7032. <animation n="728">
  7033. <type type="string">textranslate</type>
  7034. <object-name type="string">Plane.728</object-name>
  7035. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[24]/elevation-ft</property>
  7036. <factor type="double">5.5556e-05</factor>
  7037. <axis>
  7038. <x type="double">1</x>
  7039. </axis>
  7040. </animation>
  7041. <animation n="729">
  7042. <type type="string">textranslate</type>
  7043. <object-name type="string">Plane.729</object-name>
  7044. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[25]/elevation-ft</property>
  7045. <factor type="double">5.5556e-05</factor>
  7046. <axis>
  7047. <x type="double">1</x>
  7048. </axis>
  7049. </animation>
  7050. <animation n="730">
  7051. <type type="string">textranslate</type>
  7052. <object-name type="string">Plane.730</object-name>
  7053. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[26]/elevation-ft</property>
  7054. <factor type="double">5.5556e-05</factor>
  7055. <axis>
  7056. <x type="double">1</x>
  7057. </axis>
  7058. </animation>
  7059. <animation n="731">
  7060. <type type="string">textranslate</type>
  7061. <object-name type="string">Plane.731</object-name>
  7062. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[27]/elevation-ft</property>
  7063. <factor type="double">5.5556e-05</factor>
  7064. <axis>
  7065. <x type="double">1</x>
  7066. </axis>
  7067. </animation>
  7068. <animation n="732">
  7069. <type type="string">textranslate</type>
  7070. <object-name type="string">Plane.732</object-name>
  7071. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[28]/elevation-ft</property>
  7072. <factor type="double">5.5556e-05</factor>
  7073. <axis>
  7074. <x type="double">1</x>
  7075. </axis>
  7076. </animation>
  7077. <animation n="733">
  7078. <type type="string">textranslate</type>
  7079. <object-name type="string">Plane.733</object-name>
  7080. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[29]/elevation-ft</property>
  7081. <factor type="double">5.5556e-05</factor>
  7082. <axis>
  7083. <x type="double">1</x>
  7084. </axis>
  7085. </animation>
  7086. <animation n="734">
  7087. <type type="string">textranslate</type>
  7088. <object-name type="string">Plane.734</object-name>
  7089. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[30]/elevation-ft</property>
  7090. <factor type="double">5.5556e-05</factor>
  7091. <axis>
  7092. <x type="double">1</x>
  7093. </axis>
  7094. </animation>
  7095. <animation n="735">
  7096. <type type="string">textranslate</type>
  7097. <object-name type="string">Plane.735</object-name>
  7098. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[31]/elevation-ft</property>
  7099. <factor type="double">5.5556e-05</factor>
  7100. <axis>
  7101. <x type="double">1</x>
  7102. </axis>
  7103. </animation>
  7104. <animation n="737">
  7105. <type type="string">textranslate</type>
  7106. <object-name type="string">Plane.737</object-name>
  7107. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[1]/elevation-ft</property>
  7108. <factor type="double">5.5556e-05</factor>
  7109. <axis>
  7110. <x type="double">1</x>
  7111. </axis>
  7112. </animation>
  7113. <animation n="738">
  7114. <type type="string">textranslate</type>
  7115. <object-name type="string">Plane.738</object-name>
  7116. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[2]/elevation-ft</property>
  7117. <factor type="double">5.5556e-05</factor>
  7118. <axis>
  7119. <x type="double">1</x>
  7120. </axis>
  7121. </animation>
  7122. <animation n="739">
  7123. <type type="string">textranslate</type>
  7124. <object-name type="string">Plane.739</object-name>
  7125. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[3]/elevation-ft</property>
  7126. <factor type="double">5.5556e-05</factor>
  7127. <axis>
  7128. <x type="double">1</x>
  7129. </axis>
  7130. </animation>
  7131. <animation n="740">
  7132. <type type="string">textranslate</type>
  7133. <object-name type="string">Plane.740</object-name>
  7134. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[4]/elevation-ft</property>
  7135. <factor type="double">5.5556e-05</factor>
  7136. <axis>
  7137. <x type="double">1</x>
  7138. </axis>
  7139. </animation>
  7140. <animation n="741">
  7141. <type type="string">textranslate</type>
  7142. <object-name type="string">Plane.741</object-name>
  7143. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[5]/elevation-ft</property>
  7144. <factor type="double">5.5556e-05</factor>
  7145. <axis>
  7146. <x type="double">1</x>
  7147. </axis>
  7148. </animation>
  7149. <animation n="742">
  7150. <type type="string">textranslate</type>
  7151. <object-name type="string">Plane.742</object-name>
  7152. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[6]/elevation-ft</property>
  7153. <factor type="double">5.5556e-05</factor>
  7154. <axis>
  7155. <x type="double">1</x>
  7156. </axis>
  7157. </animation>
  7158. <animation n="743">
  7159. <type type="string">textranslate</type>
  7160. <object-name type="string">Plane.743</object-name>
  7161. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[7]/elevation-ft</property>
  7162. <factor type="double">5.5556e-05</factor>
  7163. <axis>
  7164. <x type="double">1</x>
  7165. </axis>
  7166. </animation>
  7167. <animation n="744">
  7168. <type type="string">textranslate</type>
  7169. <object-name type="string">Plane.744</object-name>
  7170. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[8]/elevation-ft</property>
  7171. <factor type="double">5.5556e-05</factor>
  7172. <axis>
  7173. <x type="double">1</x>
  7174. </axis>
  7175. </animation>
  7176. <animation n="745">
  7177. <type type="string">textranslate</type>
  7178. <object-name type="string">Plane.745</object-name>
  7179. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[9]/elevation-ft</property>
  7180. <factor type="double">5.5556e-05</factor>
  7181. <axis>
  7182. <x type="double">1</x>
  7183. </axis>
  7184. </animation>
  7185. <animation n="746">
  7186. <type type="string">textranslate</type>
  7187. <object-name type="string">Plane.746</object-name>
  7188. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[10]/elevation-ft</property>
  7189. <factor type="double">5.5556e-05</factor>
  7190. <axis>
  7191. <x type="double">1</x>
  7192. </axis>
  7193. </animation>
  7194. <animation n="747">
  7195. <type type="string">textranslate</type>
  7196. <object-name type="string">Plane.747</object-name>
  7197. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[11]/elevation-ft</property>
  7198. <factor type="double">5.5556e-05</factor>
  7199. <axis>
  7200. <x type="double">1</x>
  7201. </axis>
  7202. </animation>
  7203. <animation n="748">
  7204. <type type="string">textranslate</type>
  7205. <object-name type="string">Plane.748</object-name>
  7206. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[12]/elevation-ft</property>
  7207. <factor type="double">5.5556e-05</factor>
  7208. <axis>
  7209. <x type="double">1</x>
  7210. </axis>
  7211. </animation>
  7212. <animation n="749">
  7213. <type type="string">textranslate</type>
  7214. <object-name type="string">Plane.749</object-name>
  7215. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[13]/elevation-ft</property>
  7216. <factor type="double">5.5556e-05</factor>
  7217. <axis>
  7218. <x type="double">1</x>
  7219. </axis>
  7220. </animation>
  7221. <animation n="750">
  7222. <type type="string">textranslate</type>
  7223. <object-name type="string">Plane.750</object-name>
  7224. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[14]/elevation-ft</property>
  7225. <factor type="double">5.5556e-05</factor>
  7226. <axis>
  7227. <x type="double">1</x>
  7228. </axis>
  7229. </animation>
  7230. <animation n="751">
  7231. <type type="string">textranslate</type>
  7232. <object-name type="string">Plane.751</object-name>
  7233. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[15]/elevation-ft</property>
  7234. <factor type="double">5.5556e-05</factor>
  7235. <axis>
  7236. <x type="double">1</x>
  7237. </axis>
  7238. </animation>
  7239. <animation n="752">
  7240. <type type="string">textranslate</type>
  7241. <object-name type="string">Plane.752</object-name>
  7242. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[16]/elevation-ft</property>
  7243. <factor type="double">5.5556e-05</factor>
  7244. <axis>
  7245. <x type="double">1</x>
  7246. </axis>
  7247. </animation>
  7248. <animation n="753">
  7249. <type type="string">textranslate</type>
  7250. <object-name type="string">Plane.753</object-name>
  7251. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[17]/elevation-ft</property>
  7252. <factor type="double">5.5556e-05</factor>
  7253. <axis>
  7254. <x type="double">1</x>
  7255. </axis>
  7256. </animation>
  7257. <animation n="754">
  7258. <type type="string">textranslate</type>
  7259. <object-name type="string">Plane.754</object-name>
  7260. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[18]/elevation-ft</property>
  7261. <factor type="double">5.5556e-05</factor>
  7262. <axis>
  7263. <x type="double">1</x>
  7264. </axis>
  7265. </animation>
  7266. <animation n="755">
  7267. <type type="string">textranslate</type>
  7268. <object-name type="string">Plane.755</object-name>
  7269. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[19]/elevation-ft</property>
  7270. <factor type="double">5.5556e-05</factor>
  7271. <axis>
  7272. <x type="double">1</x>
  7273. </axis>
  7274. </animation>
  7275. <animation n="756">
  7276. <type type="string">textranslate</type>
  7277. <object-name type="string">Plane.756</object-name>
  7278. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[20]/elevation-ft</property>
  7279. <factor type="double">5.5556e-05</factor>
  7280. <axis>
  7281. <x type="double">1</x>
  7282. </axis>
  7283. </animation>
  7284. <animation n="757">
  7285. <type type="string">textranslate</type>
  7286. <object-name type="string">Plane.757</object-name>
  7287. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[21]/elevation-ft</property>
  7288. <factor type="double">5.5556e-05</factor>
  7289. <axis>
  7290. <x type="double">1</x>
  7291. </axis>
  7292. </animation>
  7293. <animation n="758">
  7294. <type type="string">textranslate</type>
  7295. <object-name type="string">Plane.758</object-name>
  7296. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[22]/elevation-ft</property>
  7297. <factor type="double">5.5556e-05</factor>
  7298. <axis>
  7299. <x type="double">1</x>
  7300. </axis>
  7301. </animation>
  7302. <animation n="759">
  7303. <type type="string">textranslate</type>
  7304. <object-name type="string">Plane.759</object-name>
  7305. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[23]/elevation-ft</property>
  7306. <factor type="double">5.5556e-05</factor>
  7307. <axis>
  7308. <x type="double">1</x>
  7309. </axis>
  7310. </animation>
  7311. <animation n="760">
  7312. <type type="string">textranslate</type>
  7313. <object-name type="string">Plane.760</object-name>
  7314. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[24]/elevation-ft</property>
  7315. <factor type="double">5.5556e-05</factor>
  7316. <axis>
  7317. <x type="double">1</x>
  7318. </axis>
  7319. </animation>
  7320. <animation n="761">
  7321. <type type="string">textranslate</type>
  7322. <object-name type="string">Plane.761</object-name>
  7323. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[25]/elevation-ft</property>
  7324. <factor type="double">5.5556e-05</factor>
  7325. <axis>
  7326. <x type="double">1</x>
  7327. </axis>
  7328. </animation>
  7329. <animation n="762">
  7330. <type type="string">textranslate</type>
  7331. <object-name type="string">Plane.762</object-name>
  7332. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[26]/elevation-ft</property>
  7333. <factor type="double">5.5556e-05</factor>
  7334. <axis>
  7335. <x type="double">1</x>
  7336. </axis>
  7337. </animation>
  7338. <animation n="763">
  7339. <type type="string">textranslate</type>
  7340. <object-name type="string">Plane.763</object-name>
  7341. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[27]/elevation-ft</property>
  7342. <factor type="double">5.5556e-05</factor>
  7343. <axis>
  7344. <x type="double">1</x>
  7345. </axis>
  7346. </animation>
  7347. <animation n="764">
  7348. <type type="string">textranslate</type>
  7349. <object-name type="string">Plane.764</object-name>
  7350. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[28]/elevation-ft</property>
  7351. <factor type="double">5.5556e-05</factor>
  7352. <axis>
  7353. <x type="double">1</x>
  7354. </axis>
  7355. </animation>
  7356. <animation n="765">
  7357. <type type="string">textranslate</type>
  7358. <object-name type="string">Plane.765</object-name>
  7359. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[29]/elevation-ft</property>
  7360. <factor type="double">5.5556e-05</factor>
  7361. <axis>
  7362. <x type="double">1</x>
  7363. </axis>
  7364. </animation>
  7365. <animation n="766">
  7366. <type type="string">textranslate</type>
  7367. <object-name type="string">Plane.766</object-name>
  7368. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[30]/elevation-ft</property>
  7369. <factor type="double">5.5556e-05</factor>
  7370. <axis>
  7371. <x type="double">1</x>
  7372. </axis>
  7373. </animation>
  7374. <animation n="767">
  7375. <type type="string">textranslate</type>
  7376. <object-name type="string">Plane.767</object-name>
  7377. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[31]/elevation-ft</property>
  7378. <factor type="double">5.5556e-05</factor>
  7379. <axis>
  7380. <x type="double">1</x>
  7381. </axis>
  7382. </animation>
  7383. <animation n="769">
  7384. <type type="string">textranslate</type>
  7385. <object-name type="string">Plane.769</object-name>
  7386. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[1]/elevation-ft</property>
  7387. <factor type="double">5.5556e-05</factor>
  7388. <axis>
  7389. <x type="double">1</x>
  7390. </axis>
  7391. </animation>
  7392. <animation n="770">
  7393. <type type="string">textranslate</type>
  7394. <object-name type="string">Plane.770</object-name>
  7395. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[2]/elevation-ft</property>
  7396. <factor type="double">5.5556e-05</factor>
  7397. <axis>
  7398. <x type="double">1</x>
  7399. </axis>
  7400. </animation>
  7401. <animation n="771">
  7402. <type type="string">textranslate</type>
  7403. <object-name type="string">Plane.771</object-name>
  7404. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[3]/elevation-ft</property>
  7405. <factor type="double">5.5556e-05</factor>
  7406. <axis>
  7407. <x type="double">1</x>
  7408. </axis>
  7409. </animation>
  7410. <animation n="772">
  7411. <type type="string">textranslate</type>
  7412. <object-name type="string">Plane.772</object-name>
  7413. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[4]/elevation-ft</property>
  7414. <factor type="double">5.5556e-05</factor>
  7415. <axis>
  7416. <x type="double">1</x>
  7417. </axis>
  7418. </animation>
  7419. <animation n="773">
  7420. <type type="string">textranslate</type>
  7421. <object-name type="string">Plane.773</object-name>
  7422. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[5]/elevation-ft</property>
  7423. <factor type="double">5.5556e-05</factor>
  7424. <axis>
  7425. <x type="double">1</x>
  7426. </axis>
  7427. </animation>
  7428. <animation n="774">
  7429. <type type="string">textranslate</type>
  7430. <object-name type="string">Plane.774</object-name>
  7431. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[6]/elevation-ft</property>
  7432. <factor type="double">5.5556e-05</factor>
  7433. <axis>
  7434. <x type="double">1</x>
  7435. </axis>
  7436. </animation>
  7437. <animation n="775">
  7438. <type type="string">textranslate</type>
  7439. <object-name type="string">Plane.775</object-name>
  7440. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[7]/elevation-ft</property>
  7441. <factor type="double">5.5556e-05</factor>
  7442. <axis>
  7443. <x type="double">1</x>
  7444. </axis>
  7445. </animation>
  7446. <animation n="776">
  7447. <type type="string">textranslate</type>
  7448. <object-name type="string">Plane.776</object-name>
  7449. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[8]/elevation-ft</property>
  7450. <factor type="double">5.5556e-05</factor>
  7451. <axis>
  7452. <x type="double">1</x>
  7453. </axis>
  7454. </animation>
  7455. <animation n="777">
  7456. <type type="string">textranslate</type>
  7457. <object-name type="string">Plane.777</object-name>
  7458. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[9]/elevation-ft</property>
  7459. <factor type="double">5.5556e-05</factor>
  7460. <axis>
  7461. <x type="double">1</x>
  7462. </axis>
  7463. </animation>
  7464. <animation n="778">
  7465. <type type="string">textranslate</type>
  7466. <object-name type="string">Plane.778</object-name>
  7467. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[10]/elevation-ft</property>
  7468. <factor type="double">5.5556e-05</factor>
  7469. <axis>
  7470. <x type="double">1</x>
  7471. </axis>
  7472. </animation>
  7473. <animation n="779">
  7474. <type type="string">textranslate</type>
  7475. <object-name type="string">Plane.779</object-name>
  7476. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[11]/elevation-ft</property>
  7477. <factor type="double">5.5556e-05</factor>
  7478. <axis>
  7479. <x type="double">1</x>
  7480. </axis>
  7481. </animation>
  7482. <animation n="780">
  7483. <type type="string">textranslate</type>
  7484. <object-name type="string">Plane.780</object-name>
  7485. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[12]/elevation-ft</property>
  7486. <factor type="double">5.5556e-05</factor>
  7487. <axis>
  7488. <x type="double">1</x>
  7489. </axis>
  7490. </animation>
  7491. <animation n="781">
  7492. <type type="string">textranslate</type>
  7493. <object-name type="string">Plane.781</object-name>
  7494. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[13]/elevation-ft</property>
  7495. <factor type="double">5.5556e-05</factor>
  7496. <axis>
  7497. <x type="double">1</x>
  7498. </axis>
  7499. </animation>
  7500. <animation n="782">
  7501. <type type="string">textranslate</type>
  7502. <object-name type="string">Plane.782</object-name>
  7503. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[14]/elevation-ft</property>
  7504. <factor type="double">5.5556e-05</factor>
  7505. <axis>
  7506. <x type="double">1</x>
  7507. </axis>
  7508. </animation>
  7509. <animation n="783">
  7510. <type type="string">textranslate</type>
  7511. <object-name type="string">Plane.783</object-name>
  7512. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[15]/elevation-ft</property>
  7513. <factor type="double">5.5556e-05</factor>
  7514. <axis>
  7515. <x type="double">1</x>
  7516. </axis>
  7517. </animation>
  7518. <animation n="784">
  7519. <type type="string">textranslate</type>
  7520. <object-name type="string">Plane.784</object-name>
  7521. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[16]/elevation-ft</property>
  7522. <factor type="double">5.5556e-05</factor>
  7523. <axis>
  7524. <x type="double">1</x>
  7525. </axis>
  7526. </animation>
  7527. <animation n="785">
  7528. <type type="string">textranslate</type>
  7529. <object-name type="string">Plane.785</object-name>
  7530. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[17]/elevation-ft</property>
  7531. <factor type="double">5.5556e-05</factor>
  7532. <axis>
  7533. <x type="double">1</x>
  7534. </axis>
  7535. </animation>
  7536. <animation n="786">
  7537. <type type="string">textranslate</type>
  7538. <object-name type="string">Plane.786</object-name>
  7539. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[18]/elevation-ft</property>
  7540. <factor type="double">5.5556e-05</factor>
  7541. <axis>
  7542. <x type="double">1</x>
  7543. </axis>
  7544. </animation>
  7545. <animation n="787">
  7546. <type type="string">textranslate</type>
  7547. <object-name type="string">Plane.787</object-name>
  7548. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[19]/elevation-ft</property>
  7549. <factor type="double">5.5556e-05</factor>
  7550. <axis>
  7551. <x type="double">1</x>
  7552. </axis>
  7553. </animation>
  7554. <animation n="788">
  7555. <type type="string">textranslate</type>
  7556. <object-name type="string">Plane.788</object-name>
  7557. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[20]/elevation-ft</property>
  7558. <factor type="double">5.5556e-05</factor>
  7559. <axis>
  7560. <x type="double">1</x>
  7561. </axis>
  7562. </animation>
  7563. <animation n="789">
  7564. <type type="string">textranslate</type>
  7565. <object-name type="string">Plane.789</object-name>
  7566. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[21]/elevation-ft</property>
  7567. <factor type="double">5.5556e-05</factor>
  7568. <axis>
  7569. <x type="double">1</x>
  7570. </axis>
  7571. </animation>
  7572. <animation n="790">
  7573. <type type="string">textranslate</type>
  7574. <object-name type="string">Plane.790</object-name>
  7575. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[22]/elevation-ft</property>
  7576. <factor type="double">5.5556e-05</factor>
  7577. <axis>
  7578. <x type="double">1</x>
  7579. </axis>
  7580. </animation>
  7581. <animation n="791">
  7582. <type type="string">textranslate</type>
  7583. <object-name type="string">Plane.791</object-name>
  7584. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[23]/elevation-ft</property>
  7585. <factor type="double">5.5556e-05</factor>
  7586. <axis>
  7587. <x type="double">1</x>
  7588. </axis>
  7589. </animation>
  7590. <animation n="792">
  7591. <type type="string">textranslate</type>
  7592. <object-name type="string">Plane.792</object-name>
  7593. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[24]/elevation-ft</property>
  7594. <factor type="double">5.5556e-05</factor>
  7595. <axis>
  7596. <x type="double">1</x>
  7597. </axis>
  7598. </animation>
  7599. <animation n="793">
  7600. <type type="string">textranslate</type>
  7601. <object-name type="string">Plane.793</object-name>
  7602. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[25]/elevation-ft</property>
  7603. <factor type="double">5.5556e-05</factor>
  7604. <axis>
  7605. <x type="double">1</x>
  7606. </axis>
  7607. </animation>
  7608. <animation n="794">
  7609. <type type="string">textranslate</type>
  7610. <object-name type="string">Plane.794</object-name>
  7611. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[26]/elevation-ft</property>
  7612. <factor type="double">5.5556e-05</factor>
  7613. <axis>
  7614. <x type="double">1</x>
  7615. </axis>
  7616. </animation>
  7617. <animation n="795">
  7618. <type type="string">textranslate</type>
  7619. <object-name type="string">Plane.795</object-name>
  7620. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[27]/elevation-ft</property>
  7621. <factor type="double">5.5556e-05</factor>
  7622. <axis>
  7623. <x type="double">1</x>
  7624. </axis>
  7625. </animation>
  7626. <animation n="796">
  7627. <type type="string">textranslate</type>
  7628. <object-name type="string">Plane.796</object-name>
  7629. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[28]/elevation-ft</property>
  7630. <factor type="double">5.5556e-05</factor>
  7631. <axis>
  7632. <x type="double">1</x>
  7633. </axis>
  7634. </animation>
  7635. <animation n="797">
  7636. <type type="string">textranslate</type>
  7637. <object-name type="string">Plane.797</object-name>
  7638. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[29]/elevation-ft</property>
  7639. <factor type="double">5.5556e-05</factor>
  7640. <axis>
  7641. <x type="double">1</x>
  7642. </axis>
  7643. </animation>
  7644. <animation n="798">
  7645. <type type="string">textranslate</type>
  7646. <object-name type="string">Plane.798</object-name>
  7647. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[30]/elevation-ft</property>
  7648. <factor type="double">5.5556e-05</factor>
  7649. <axis>
  7650. <x type="double">1</x>
  7651. </axis>
  7652. </animation>
  7653. <animation n="799">
  7654. <type type="string">textranslate</type>
  7655. <object-name type="string">Plane.799</object-name>
  7656. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[31]/elevation-ft</property>
  7657. <factor type="double">5.5556e-05</factor>
  7658. <axis>
  7659. <x type="double">1</x>
  7660. </axis>
  7661. </animation>
  7662. <animation n="801">
  7663. <type type="string">textranslate</type>
  7664. <object-name type="string">Plane.801</object-name>
  7665. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[1]/elevation-ft</property>
  7666. <factor type="double">5.5556e-05</factor>
  7667. <axis>
  7668. <x type="double">1</x>
  7669. </axis>
  7670. </animation>
  7671. <animation n="802">
  7672. <type type="string">textranslate</type>
  7673. <object-name type="string">Plane.802</object-name>
  7674. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[2]/elevation-ft</property>
  7675. <factor type="double">5.5556e-05</factor>
  7676. <axis>
  7677. <x type="double">1</x>
  7678. </axis>
  7679. </animation>
  7680. <animation n="803">
  7681. <type type="string">textranslate</type>
  7682. <object-name type="string">Plane.803</object-name>
  7683. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[3]/elevation-ft</property>
  7684. <factor type="double">5.5556e-05</factor>
  7685. <axis>
  7686. <x type="double">1</x>
  7687. </axis>
  7688. </animation>
  7689. <animation n="804">
  7690. <type type="string">textranslate</type>
  7691. <object-name type="string">Plane.804</object-name>
  7692. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[4]/elevation-ft</property>
  7693. <factor type="double">5.5556e-05</factor>
  7694. <axis>
  7695. <x type="double">1</x>
  7696. </axis>
  7697. </animation>
  7698. <animation n="805">
  7699. <type type="string">textranslate</type>
  7700. <object-name type="string">Plane.805</object-name>
  7701. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[5]/elevation-ft</property>
  7702. <factor type="double">5.5556e-05</factor>
  7703. <axis>
  7704. <x type="double">1</x>
  7705. </axis>
  7706. </animation>
  7707. <animation n="806">
  7708. <type type="string">textranslate</type>
  7709. <object-name type="string">Plane.806</object-name>
  7710. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[6]/elevation-ft</property>
  7711. <factor type="double">5.5556e-05</factor>
  7712. <axis>
  7713. <x type="double">1</x>
  7714. </axis>
  7715. </animation>
  7716. <animation n="807">
  7717. <type type="string">textranslate</type>
  7718. <object-name type="string">Plane.807</object-name>
  7719. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[7]/elevation-ft</property>
  7720. <factor type="double">5.5556e-05</factor>
  7721. <axis>
  7722. <x type="double">1</x>
  7723. </axis>
  7724. </animation>
  7725. <animation n="808">
  7726. <type type="string">textranslate</type>
  7727. <object-name type="string">Plane.808</object-name>
  7728. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[8]/elevation-ft</property>
  7729. <factor type="double">5.5556e-05</factor>
  7730. <axis>
  7731. <x type="double">1</x>
  7732. </axis>
  7733. </animation>
  7734. <animation n="809">
  7735. <type type="string">textranslate</type>
  7736. <object-name type="string">Plane.809</object-name>
  7737. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[9]/elevation-ft</property>
  7738. <factor type="double">5.5556e-05</factor>
  7739. <axis>
  7740. <x type="double">1</x>
  7741. </axis>
  7742. </animation>
  7743. <animation n="810">
  7744. <type type="string">textranslate</type>
  7745. <object-name type="string">Plane.810</object-name>
  7746. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[10]/elevation-ft</property>
  7747. <factor type="double">5.5556e-05</factor>
  7748. <axis>
  7749. <x type="double">1</x>
  7750. </axis>
  7751. </animation>
  7752. <animation n="811">
  7753. <type type="string">textranslate</type>
  7754. <object-name type="string">Plane.811</object-name>
  7755. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[11]/elevation-ft</property>
  7756. <factor type="double">5.5556e-05</factor>
  7757. <axis>
  7758. <x type="double">1</x>
  7759. </axis>
  7760. </animation>
  7761. <animation n="812">
  7762. <type type="string">textranslate</type>
  7763. <object-name type="string">Plane.812</object-name>
  7764. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[12]/elevation-ft</property>
  7765. <factor type="double">5.5556e-05</factor>
  7766. <axis>
  7767. <x type="double">1</x>
  7768. </axis>
  7769. </animation>
  7770. <animation n="813">
  7771. <type type="string">textranslate</type>
  7772. <object-name type="string">Plane.813</object-name>
  7773. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[13]/elevation-ft</property>
  7774. <factor type="double">5.5556e-05</factor>
  7775. <axis>
  7776. <x type="double">1</x>
  7777. </axis>
  7778. </animation>
  7779. <animation n="814">
  7780. <type type="string">textranslate</type>
  7781. <object-name type="string">Plane.814</object-name>
  7782. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[14]/elevation-ft</property>
  7783. <factor type="double">5.5556e-05</factor>
  7784. <axis>
  7785. <x type="double">1</x>
  7786. </axis>
  7787. </animation>
  7788. <animation n="815">
  7789. <type type="string">textranslate</type>
  7790. <object-name type="string">Plane.815</object-name>
  7791. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[15]/elevation-ft</property>
  7792. <factor type="double">5.5556e-05</factor>
  7793. <axis>
  7794. <x type="double">1</x>
  7795. </axis>
  7796. </animation>
  7797. <animation n="816">
  7798. <type type="string">textranslate</type>
  7799. <object-name type="string">Plane.816</object-name>
  7800. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[16]/elevation-ft</property>
  7801. <factor type="double">5.5556e-05</factor>
  7802. <axis>
  7803. <x type="double">1</x>
  7804. </axis>
  7805. </animation>
  7806. <animation n="817">
  7807. <type type="string">textranslate</type>
  7808. <object-name type="string">Plane.817</object-name>
  7809. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[17]/elevation-ft</property>
  7810. <factor type="double">5.5556e-05</factor>
  7811. <axis>
  7812. <x type="double">1</x>
  7813. </axis>
  7814. </animation>
  7815. <animation n="818">
  7816. <type type="string">textranslate</type>
  7817. <object-name type="string">Plane.818</object-name>
  7818. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[18]/elevation-ft</property>
  7819. <factor type="double">5.5556e-05</factor>
  7820. <axis>
  7821. <x type="double">1</x>
  7822. </axis>
  7823. </animation>
  7824. <animation n="819">
  7825. <type type="string">textranslate</type>
  7826. <object-name type="string">Plane.819</object-name>
  7827. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[19]/elevation-ft</property>
  7828. <factor type="double">5.5556e-05</factor>
  7829. <axis>
  7830. <x type="double">1</x>
  7831. </axis>
  7832. </animation>
  7833. <animation n="820">
  7834. <type type="string">textranslate</type>
  7835. <object-name type="string">Plane.820</object-name>
  7836. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[20]/elevation-ft</property>
  7837. <factor type="double">5.5556e-05</factor>
  7838. <axis>
  7839. <x type="double">1</x>
  7840. </axis>
  7841. </animation>
  7842. <animation n="821">
  7843. <type type="string">textranslate</type>
  7844. <object-name type="string">Plane.821</object-name>
  7845. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[21]/elevation-ft</property>
  7846. <factor type="double">5.5556e-05</factor>
  7847. <axis>
  7848. <x type="double">1</x>
  7849. </axis>
  7850. </animation>
  7851. <animation n="822">
  7852. <type type="string">textranslate</type>
  7853. <object-name type="string">Plane.822</object-name>
  7854. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[22]/elevation-ft</property>
  7855. <factor type="double">5.5556e-05</factor>
  7856. <axis>
  7857. <x type="double">1</x>
  7858. </axis>
  7859. </animation>
  7860. <animation n="823">
  7861. <type type="string">textranslate</type>
  7862. <object-name type="string">Plane.823</object-name>
  7863. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[23]/elevation-ft</property>
  7864. <factor type="double">5.5556e-05</factor>
  7865. <axis>
  7866. <x type="double">1</x>
  7867. </axis>
  7868. </animation>
  7869. <animation n="824">
  7870. <type type="string">textranslate</type>
  7871. <object-name type="string">Plane.824</object-name>
  7872. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[24]/elevation-ft</property>
  7873. <factor type="double">5.5556e-05</factor>
  7874. <axis>
  7875. <x type="double">1</x>
  7876. </axis>
  7877. </animation>
  7878. <animation n="825">
  7879. <type type="string">textranslate</type>
  7880. <object-name type="string">Plane.825</object-name>
  7881. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[25]/elevation-ft</property>
  7882. <factor type="double">5.5556e-05</factor>
  7883. <axis>
  7884. <x type="double">1</x>
  7885. </axis>
  7886. </animation>
  7887. <animation n="826">
  7888. <type type="string">textranslate</type>
  7889. <object-name type="string">Plane.826</object-name>
  7890. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[26]/elevation-ft</property>
  7891. <factor type="double">5.5556e-05</factor>
  7892. <axis>
  7893. <x type="double">1</x>
  7894. </axis>
  7895. </animation>
  7896. <animation n="827">
  7897. <type type="string">textranslate</type>
  7898. <object-name type="string">Plane.827</object-name>
  7899. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[27]/elevation-ft</property>
  7900. <factor type="double">5.5556e-05</factor>
  7901. <axis>
  7902. <x type="double">1</x>
  7903. </axis>
  7904. </animation>
  7905. <animation n="828">
  7906. <type type="string">textranslate</type>
  7907. <object-name type="string">Plane.828</object-name>
  7908. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[28]/elevation-ft</property>
  7909. <factor type="double">5.5556e-05</factor>
  7910. <axis>
  7911. <x type="double">1</x>
  7912. </axis>
  7913. </animation>
  7914. <animation n="829">
  7915. <type type="string">textranslate</type>
  7916. <object-name type="string">Plane.829</object-name>
  7917. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[29]/elevation-ft</property>
  7918. <factor type="double">5.5556e-05</factor>
  7919. <axis>
  7920. <x type="double">1</x>
  7921. </axis>
  7922. </animation>
  7923. <animation n="830">
  7924. <type type="string">textranslate</type>
  7925. <object-name type="string">Plane.830</object-name>
  7926. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[30]/elevation-ft</property>
  7927. <factor type="double">5.5556e-05</factor>
  7928. <axis>
  7929. <x type="double">1</x>
  7930. </axis>
  7931. </animation>
  7932. <animation n="831">
  7933. <type type="string">textranslate</type>
  7934. <object-name type="string">Plane.831</object-name>
  7935. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[31]/elevation-ft</property>
  7936. <factor type="double">5.5556e-05</factor>
  7937. <axis>
  7938. <x type="double">1</x>
  7939. </axis>
  7940. </animation>
  7941. <animation n="833">
  7942. <type type="string">textranslate</type>
  7943. <object-name type="string">Plane.833</object-name>
  7944. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[1]/elevation-ft</property>
  7945. <factor type="double">5.5556e-05</factor>
  7946. <axis>
  7947. <x type="double">1</x>
  7948. </axis>
  7949. </animation>
  7950. <animation n="834">
  7951. <type type="string">textranslate</type>
  7952. <object-name type="string">Plane.834</object-name>
  7953. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[2]/elevation-ft</property>
  7954. <factor type="double">5.5556e-05</factor>
  7955. <axis>
  7956. <x type="double">1</x>
  7957. </axis>
  7958. </animation>
  7959. <animation n="835">
  7960. <type type="string">textranslate</type>
  7961. <object-name type="string">Plane.835</object-name>
  7962. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[3]/elevation-ft</property>
  7963. <factor type="double">5.5556e-05</factor>
  7964. <axis>
  7965. <x type="double">1</x>
  7966. </axis>
  7967. </animation>
  7968. <animation n="836">
  7969. <type type="string">textranslate</type>
  7970. <object-name type="string">Plane.836</object-name>
  7971. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[4]/elevation-ft</property>
  7972. <factor type="double">5.5556e-05</factor>
  7973. <axis>
  7974. <x type="double">1</x>
  7975. </axis>
  7976. </animation>
  7977. <animation n="837">
  7978. <type type="string">textranslate</type>
  7979. <object-name type="string">Plane.837</object-name>
  7980. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[5]/elevation-ft</property>
  7981. <factor type="double">5.5556e-05</factor>
  7982. <axis>
  7983. <x type="double">1</x>
  7984. </axis>
  7985. </animation>
  7986. <animation n="838">
  7987. <type type="string">textranslate</type>
  7988. <object-name type="string">Plane.838</object-name>
  7989. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[6]/elevation-ft</property>
  7990. <factor type="double">5.5556e-05</factor>
  7991. <axis>
  7992. <x type="double">1</x>
  7993. </axis>
  7994. </animation>
  7995. <animation n="839">
  7996. <type type="string">textranslate</type>
  7997. <object-name type="string">Plane.839</object-name>
  7998. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[7]/elevation-ft</property>
  7999. <factor type="double">5.5556e-05</factor>
  8000. <axis>
  8001. <x type="double">1</x>
  8002. </axis>
  8003. </animation>
  8004. <animation n="840">
  8005. <type type="string">textranslate</type>
  8006. <object-name type="string">Plane.840</object-name>
  8007. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[8]/elevation-ft</property>
  8008. <factor type="double">5.5556e-05</factor>
  8009. <axis>
  8010. <x type="double">1</x>
  8011. </axis>
  8012. </animation>
  8013. <animation n="841">
  8014. <type type="string">textranslate</type>
  8015. <object-name type="string">Plane.841</object-name>
  8016. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[9]/elevation-ft</property>
  8017. <factor type="double">5.5556e-05</factor>
  8018. <axis>
  8019. <x type="double">1</x>
  8020. </axis>
  8021. </animation>
  8022. <animation n="842">
  8023. <type type="string">textranslate</type>
  8024. <object-name type="string">Plane.842</object-name>
  8025. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[10]/elevation-ft</property>
  8026. <factor type="double">5.5556e-05</factor>
  8027. <axis>
  8028. <x type="double">1</x>
  8029. </axis>
  8030. </animation>
  8031. <animation n="843">
  8032. <type type="string">textranslate</type>
  8033. <object-name type="string">Plane.843</object-name>
  8034. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[11]/elevation-ft</property>
  8035. <factor type="double">5.5556e-05</factor>
  8036. <axis>
  8037. <x type="double">1</x>
  8038. </axis>
  8039. </animation>
  8040. <animation n="844">
  8041. <type type="string">textranslate</type>
  8042. <object-name type="string">Plane.844</object-name>
  8043. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[12]/elevation-ft</property>
  8044. <factor type="double">5.5556e-05</factor>
  8045. <axis>
  8046. <x type="double">1</x>
  8047. </axis>
  8048. </animation>
  8049. <animation n="845">
  8050. <type type="string">textranslate</type>
  8051. <object-name type="string">Plane.845</object-name>
  8052. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[13]/elevation-ft</property>
  8053. <factor type="double">5.5556e-05</factor>
  8054. <axis>
  8055. <x type="double">1</x>
  8056. </axis>
  8057. </animation>
  8058. <animation n="846">
  8059. <type type="string">textranslate</type>
  8060. <object-name type="string">Plane.846</object-name>
  8061. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[14]/elevation-ft</property>
  8062. <factor type="double">5.5556e-05</factor>
  8063. <axis>
  8064. <x type="double">1</x>
  8065. </axis>
  8066. </animation>
  8067. <animation n="847">
  8068. <type type="string">textranslate</type>
  8069. <object-name type="string">Plane.847</object-name>
  8070. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[15]/elevation-ft</property>
  8071. <factor type="double">5.5556e-05</factor>
  8072. <axis>
  8073. <x type="double">1</x>
  8074. </axis>
  8075. </animation>
  8076. <animation n="848">
  8077. <type type="string">textranslate</type>
  8078. <object-name type="string">Plane.848</object-name>
  8079. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[16]/elevation-ft</property>
  8080. <factor type="double">5.5556e-05</factor>
  8081. <axis>
  8082. <x type="double">1</x>
  8083. </axis>
  8084. </animation>
  8085. <animation n="849">
  8086. <type type="string">textranslate</type>
  8087. <object-name type="string">Plane.849</object-name>
  8088. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[17]/elevation-ft</property>
  8089. <factor type="double">5.5556e-05</factor>
  8090. <axis>
  8091. <x type="double">1</x>
  8092. </axis>
  8093. </animation>
  8094. <animation n="850">
  8095. <type type="string">textranslate</type>
  8096. <object-name type="string">Plane.850</object-name>
  8097. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[18]/elevation-ft</property>
  8098. <factor type="double">5.5556e-05</factor>
  8099. <axis>
  8100. <x type="double">1</x>
  8101. </axis>
  8102. </animation>
  8103. <animation n="851">
  8104. <type type="string">textranslate</type>
  8105. <object-name type="string">Plane.851</object-name>
  8106. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[19]/elevation-ft</property>
  8107. <factor type="double">5.5556e-05</factor>
  8108. <axis>
  8109. <x type="double">1</x>
  8110. </axis>
  8111. </animation>
  8112. <animation n="852">
  8113. <type type="string">textranslate</type>
  8114. <object-name type="string">Plane.852</object-name>
  8115. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[20]/elevation-ft</property>
  8116. <factor type="double">5.5556e-05</factor>
  8117. <axis>
  8118. <x type="double">1</x>
  8119. </axis>
  8120. </animation>
  8121. <animation n="853">
  8122. <type type="string">textranslate</type>
  8123. <object-name type="string">Plane.853</object-name>
  8124. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[21]/elevation-ft</property>
  8125. <factor type="double">5.5556e-05</factor>
  8126. <axis>
  8127. <x type="double">1</x>
  8128. </axis>
  8129. </animation>
  8130. <animation n="854">
  8131. <type type="string">textranslate</type>
  8132. <object-name type="string">Plane.854</object-name>
  8133. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[22]/elevation-ft</property>
  8134. <factor type="double">5.5556e-05</factor>
  8135. <axis>
  8136. <x type="double">1</x>
  8137. </axis>
  8138. </animation>
  8139. <animation n="855">
  8140. <type type="string">textranslate</type>
  8141. <object-name type="string">Plane.855</object-name>
  8142. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[23]/elevation-ft</property>
  8143. <factor type="double">5.5556e-05</factor>
  8144. <axis>
  8145. <x type="double">1</x>
  8146. </axis>
  8147. </animation>
  8148. <animation n="856">
  8149. <type type="string">textranslate</type>
  8150. <object-name type="string">Plane.856</object-name>
  8151. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[24]/elevation-ft</property>
  8152. <factor type="double">5.5556e-05</factor>
  8153. <axis>
  8154. <x type="double">1</x>
  8155. </axis>
  8156. </animation>
  8157. <animation n="857">
  8158. <type type="string">textranslate</type>
  8159. <object-name type="string">Plane.857</object-name>
  8160. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[25]/elevation-ft</property>
  8161. <factor type="double">5.5556e-05</factor>
  8162. <axis>
  8163. <x type="double">1</x>
  8164. </axis>
  8165. </animation>
  8166. <animation n="858">
  8167. <type type="string">textranslate</type>
  8168. <object-name type="string">Plane.858</object-name>
  8169. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[26]/elevation-ft</property>
  8170. <factor type="double">5.5556e-05</factor>
  8171. <axis>
  8172. <x type="double">1</x>
  8173. </axis>
  8174. </animation>
  8175. <animation n="859">
  8176. <type type="string">textranslate</type>
  8177. <object-name type="string">Plane.859</object-name>
  8178. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[27]/elevation-ft</property>
  8179. <factor type="double">5.5556e-05</factor>
  8180. <axis>
  8181. <x type="double">1</x>
  8182. </axis>
  8183. </animation>
  8184. <animation n="860">
  8185. <type type="string">textranslate</type>
  8186. <object-name type="string">Plane.860</object-name>
  8187. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[28]/elevation-ft</property>
  8188. <factor type="double">5.5556e-05</factor>
  8189. <axis>
  8190. <x type="double">1</x>
  8191. </axis>
  8192. </animation>
  8193. <animation n="861">
  8194. <type type="string">textranslate</type>
  8195. <object-name type="string">Plane.861</object-name>
  8196. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[29]/elevation-ft</property>
  8197. <factor type="double">5.5556e-05</factor>
  8198. <axis>
  8199. <x type="double">1</x>
  8200. </axis>
  8201. </animation>
  8202. <animation n="862">
  8203. <type type="string">textranslate</type>
  8204. <object-name type="string">Plane.862</object-name>
  8205. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[30]/elevation-ft</property>
  8206. <factor type="double">5.5556e-05</factor>
  8207. <axis>
  8208. <x type="double">1</x>
  8209. </axis>
  8210. </animation>
  8211. <animation n="863">
  8212. <type type="string">textranslate</type>
  8213. <object-name type="string">Plane.863</object-name>
  8214. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[31]/elevation-ft</property>
  8215. <factor type="double">5.5556e-05</factor>
  8216. <axis>
  8217. <x type="double">1</x>
  8218. </axis>
  8219. </animation>
  8220. <animation n="865">
  8221. <type type="string">textranslate</type>
  8222. <object-name type="string">Plane.865</object-name>
  8223. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[1]/elevation-ft</property>
  8224. <factor type="double">5.5556e-05</factor>
  8225. <axis>
  8226. <x type="double">1</x>
  8227. </axis>
  8228. </animation>
  8229. <animation n="866">
  8230. <type type="string">textranslate</type>
  8231. <object-name type="string">Plane.866</object-name>
  8232. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[2]/elevation-ft</property>
  8233. <factor type="double">5.5556e-05</factor>
  8234. <axis>
  8235. <x type="double">1</x>
  8236. </axis>
  8237. </animation>
  8238. <animation n="867">
  8239. <type type="string">textranslate</type>
  8240. <object-name type="string">Plane.867</object-name>
  8241. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[3]/elevation-ft</property>
  8242. <factor type="double">5.5556e-05</factor>
  8243. <axis>
  8244. <x type="double">1</x>
  8245. </axis>
  8246. </animation>
  8247. <animation n="868">
  8248. <type type="string">textranslate</type>
  8249. <object-name type="string">Plane.868</object-name>
  8250. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[4]/elevation-ft</property>
  8251. <factor type="double">5.5556e-05</factor>
  8252. <axis>
  8253. <x type="double">1</x>
  8254. </axis>
  8255. </animation>
  8256. <animation n="869">
  8257. <type type="string">textranslate</type>
  8258. <object-name type="string">Plane.869</object-name>
  8259. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[5]/elevation-ft</property>
  8260. <factor type="double">5.5556e-05</factor>
  8261. <axis>
  8262. <x type="double">1</x>
  8263. </axis>
  8264. </animation>
  8265. <animation n="870">
  8266. <type type="string">textranslate</type>
  8267. <object-name type="string">Plane.870</object-name>
  8268. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[6]/elevation-ft</property>
  8269. <factor type="double">5.5556e-05</factor>
  8270. <axis>
  8271. <x type="double">1</x>
  8272. </axis>
  8273. </animation>
  8274. <animation n="871">
  8275. <type type="string">textranslate</type>
  8276. <object-name type="string">Plane.871</object-name>
  8277. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[7]/elevation-ft</property>
  8278. <factor type="double">5.5556e-05</factor>
  8279. <axis>
  8280. <x type="double">1</x>
  8281. </axis>
  8282. </animation>
  8283. <animation n="872">
  8284. <type type="string">textranslate</type>
  8285. <object-name type="string">Plane.872</object-name>
  8286. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[8]/elevation-ft</property>
  8287. <factor type="double">5.5556e-05</factor>
  8288. <axis>
  8289. <x type="double">1</x>
  8290. </axis>
  8291. </animation>
  8292. <animation n="873">
  8293. <type type="string">textranslate</type>
  8294. <object-name type="string">Plane.873</object-name>
  8295. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[9]/elevation-ft</property>
  8296. <factor type="double">5.5556e-05</factor>
  8297. <axis>
  8298. <x type="double">1</x>
  8299. </axis>
  8300. </animation>
  8301. <animation n="874">
  8302. <type type="string">textranslate</type>
  8303. <object-name type="string">Plane.874</object-name>
  8304. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[10]/elevation-ft</property>
  8305. <factor type="double">5.5556e-05</factor>
  8306. <axis>
  8307. <x type="double">1</x>
  8308. </axis>
  8309. </animation>
  8310. <animation n="875">
  8311. <type type="string">textranslate</type>
  8312. <object-name type="string">Plane.875</object-name>
  8313. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[11]/elevation-ft</property>
  8314. <factor type="double">5.5556e-05</factor>
  8315. <axis>
  8316. <x type="double">1</x>
  8317. </axis>
  8318. </animation>
  8319. <animation n="876">
  8320. <type type="string">textranslate</type>
  8321. <object-name type="string">Plane.876</object-name>
  8322. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[12]/elevation-ft</property>
  8323. <factor type="double">5.5556e-05</factor>
  8324. <axis>
  8325. <x type="double">1</x>
  8326. </axis>
  8327. </animation>
  8328. <animation n="877">
  8329. <type type="string">textranslate</type>
  8330. <object-name type="string">Plane.877</object-name>
  8331. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[13]/elevation-ft</property>
  8332. <factor type="double">5.5556e-05</factor>
  8333. <axis>
  8334. <x type="double">1</x>
  8335. </axis>
  8336. </animation>
  8337. <animation n="878">
  8338. <type type="string">textranslate</type>
  8339. <object-name type="string">Plane.878</object-name>
  8340. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[14]/elevation-ft</property>
  8341. <factor type="double">5.5556e-05</factor>
  8342. <axis>
  8343. <x type="double">1</x>
  8344. </axis>
  8345. </animation>
  8346. <animation n="879">
  8347. <type type="string">textranslate</type>
  8348. <object-name type="string">Plane.879</object-name>
  8349. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[15]/elevation-ft</property>
  8350. <factor type="double">5.5556e-05</factor>
  8351. <axis>
  8352. <x type="double">1</x>
  8353. </axis>
  8354. </animation>
  8355. <animation n="880">
  8356. <type type="string">textranslate</type>
  8357. <object-name type="string">Plane.880</object-name>
  8358. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[16]/elevation-ft</property>
  8359. <factor type="double">5.5556e-05</factor>
  8360. <axis>
  8361. <x type="double">1</x>
  8362. </axis>
  8363. </animation>
  8364. <animation n="881">
  8365. <type type="string">textranslate</type>
  8366. <object-name type="string">Plane.881</object-name>
  8367. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[17]/elevation-ft</property>
  8368. <factor type="double">5.5556e-05</factor>
  8369. <axis>
  8370. <x type="double">1</x>
  8371. </axis>
  8372. </animation>
  8373. <animation n="882">
  8374. <type type="string">textranslate</type>
  8375. <object-name type="string">Plane.882</object-name>
  8376. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[18]/elevation-ft</property>
  8377. <factor type="double">5.5556e-05</factor>
  8378. <axis>
  8379. <x type="double">1</x>
  8380. </axis>
  8381. </animation>
  8382. <animation n="883">
  8383. <type type="string">textranslate</type>
  8384. <object-name type="string">Plane.883</object-name>
  8385. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[19]/elevation-ft</property>
  8386. <factor type="double">5.5556e-05</factor>
  8387. <axis>
  8388. <x type="double">1</x>
  8389. </axis>
  8390. </animation>
  8391. <animation n="884">
  8392. <type type="string">textranslate</type>
  8393. <object-name type="string">Plane.884</object-name>
  8394. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[20]/elevation-ft</property>
  8395. <factor type="double">5.5556e-05</factor>
  8396. <axis>
  8397. <x type="double">1</x>
  8398. </axis>
  8399. </animation>
  8400. <animation n="885">
  8401. <type type="string">textranslate</type>
  8402. <object-name type="string">Plane.885</object-name>
  8403. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[21]/elevation-ft</property>
  8404. <factor type="double">5.5556e-05</factor>
  8405. <axis>
  8406. <x type="double">1</x>
  8407. </axis>
  8408. </animation>
  8409. <animation n="886">
  8410. <type type="string">textranslate</type>
  8411. <object-name type="string">Plane.886</object-name>
  8412. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[22]/elevation-ft</property>
  8413. <factor type="double">5.5556e-05</factor>
  8414. <axis>
  8415. <x type="double">1</x>
  8416. </axis>
  8417. </animation>
  8418. <animation n="887">
  8419. <type type="string">textranslate</type>
  8420. <object-name type="string">Plane.887</object-name>
  8421. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[23]/elevation-ft</property>
  8422. <factor type="double">5.5556e-05</factor>
  8423. <axis>
  8424. <x type="double">1</x>
  8425. </axis>
  8426. </animation>
  8427. <animation n="888">
  8428. <type type="string">textranslate</type>
  8429. <object-name type="string">Plane.888</object-name>
  8430. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[24]/elevation-ft</property>
  8431. <factor type="double">5.5556e-05</factor>
  8432. <axis>
  8433. <x type="double">1</x>
  8434. </axis>
  8435. </animation>
  8436. <animation n="889">
  8437. <type type="string">textranslate</type>
  8438. <object-name type="string">Plane.889</object-name>
  8439. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[25]/elevation-ft</property>
  8440. <factor type="double">5.5556e-05</factor>
  8441. <axis>
  8442. <x type="double">1</x>
  8443. </axis>
  8444. </animation>
  8445. <animation n="890">
  8446. <type type="string">textranslate</type>
  8447. <object-name type="string">Plane.890</object-name>
  8448. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[26]/elevation-ft</property>
  8449. <factor type="double">5.5556e-05</factor>
  8450. <axis>
  8451. <x type="double">1</x>
  8452. </axis>
  8453. </animation>
  8454. <animation n="891">
  8455. <type type="string">textranslate</type>
  8456. <object-name type="string">Plane.891</object-name>
  8457. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[27]/elevation-ft</property>
  8458. <factor type="double">5.5556e-05</factor>
  8459. <axis>
  8460. <x type="double">1</x>
  8461. </axis>
  8462. </animation>
  8463. <animation n="892">
  8464. <type type="string">textranslate</type>
  8465. <object-name type="string">Plane.892</object-name>
  8466. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[28]/elevation-ft</property>
  8467. <factor type="double">5.5556e-05</factor>
  8468. <axis>
  8469. <x type="double">1</x>
  8470. </axis>
  8471. </animation>
  8472. <animation n="893">
  8473. <type type="string">textranslate</type>
  8474. <object-name type="string">Plane.893</object-name>
  8475. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[29]/elevation-ft</property>
  8476. <factor type="double">5.5556e-05</factor>
  8477. <axis>
  8478. <x type="double">1</x>
  8479. </axis>
  8480. </animation>
  8481. <animation n="894">
  8482. <type type="string">textranslate</type>
  8483. <object-name type="string">Plane.894</object-name>
  8484. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[30]/elevation-ft</property>
  8485. <factor type="double">5.5556e-05</factor>
  8486. <axis>
  8487. <x type="double">1</x>
  8488. </axis>
  8489. </animation>
  8490. <animation n="895">
  8491. <type type="string">textranslate</type>
  8492. <object-name type="string">Plane.895</object-name>
  8493. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[31]/elevation-ft</property>
  8494. <factor type="double">5.5556e-05</factor>
  8495. <axis>
  8496. <x type="double">1</x>
  8497. </axis>
  8498. </animation>
  8499. <animation n="897">
  8500. <type type="string">textranslate</type>
  8501. <object-name type="string">Plane.897</object-name>
  8502. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[1]/elevation-ft</property>
  8503. <factor type="double">5.5556e-05</factor>
  8504. <axis>
  8505. <x type="double">1</x>
  8506. </axis>
  8507. </animation>
  8508. <animation n="898">
  8509. <type type="string">textranslate</type>
  8510. <object-name type="string">Plane.898</object-name>
  8511. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[2]/elevation-ft</property>
  8512. <factor type="double">5.5556e-05</factor>
  8513. <axis>
  8514. <x type="double">1</x>
  8515. </axis>
  8516. </animation>
  8517. <animation n="899">
  8518. <type type="string">textranslate</type>
  8519. <object-name type="string">Plane.899</object-name>
  8520. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[3]/elevation-ft</property>
  8521. <factor type="double">5.5556e-05</factor>
  8522. <axis>
  8523. <x type="double">1</x>
  8524. </axis>
  8525. </animation>
  8526. <animation n="900">
  8527. <type type="string">textranslate</type>
  8528. <object-name type="string">Plane.900</object-name>
  8529. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[4]/elevation-ft</property>
  8530. <factor type="double">5.5556e-05</factor>
  8531. <axis>
  8532. <x type="double">1</x>
  8533. </axis>
  8534. </animation>
  8535. <animation n="901">
  8536. <type type="string">textranslate</type>
  8537. <object-name type="string">Plane.901</object-name>
  8538. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[5]/elevation-ft</property>
  8539. <factor type="double">5.5556e-05</factor>
  8540. <axis>
  8541. <x type="double">1</x>
  8542. </axis>
  8543. </animation>
  8544. <animation n="902">
  8545. <type type="string">textranslate</type>
  8546. <object-name type="string">Plane.902</object-name>
  8547. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[6]/elevation-ft</property>
  8548. <factor type="double">5.5556e-05</factor>
  8549. <axis>
  8550. <x type="double">1</x>
  8551. </axis>
  8552. </animation>
  8553. <animation n="903">
  8554. <type type="string">textranslate</type>
  8555. <object-name type="string">Plane.903</object-name>
  8556. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[7]/elevation-ft</property>
  8557. <factor type="double">5.5556e-05</factor>
  8558. <axis>
  8559. <x type="double">1</x>
  8560. </axis>
  8561. </animation>
  8562. <animation n="904">
  8563. <type type="string">textranslate</type>
  8564. <object-name type="string">Plane.904</object-name>
  8565. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[8]/elevation-ft</property>
  8566. <factor type="double">5.5556e-05</factor>
  8567. <axis>
  8568. <x type="double">1</x>
  8569. </axis>
  8570. </animation>
  8571. <animation n="905">
  8572. <type type="string">textranslate</type>
  8573. <object-name type="string">Plane.905</object-name>
  8574. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[9]/elevation-ft</property>
  8575. <factor type="double">5.5556e-05</factor>
  8576. <axis>
  8577. <x type="double">1</x>
  8578. </axis>
  8579. </animation>
  8580. <animation n="906">
  8581. <type type="string">textranslate</type>
  8582. <object-name type="string">Plane.906</object-name>
  8583. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[10]/elevation-ft</property>
  8584. <factor type="double">5.5556e-05</factor>
  8585. <axis>
  8586. <x type="double">1</x>
  8587. </axis>
  8588. </animation>
  8589. <animation n="907">
  8590. <type type="string">textranslate</type>
  8591. <object-name type="string">Plane.907</object-name>
  8592. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[11]/elevation-ft</property>
  8593. <factor type="double">5.5556e-05</factor>
  8594. <axis>
  8595. <x type="double">1</x>
  8596. </axis>
  8597. </animation>
  8598. <animation n="908">
  8599. <type type="string">textranslate</type>
  8600. <object-name type="string">Plane.908</object-name>
  8601. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[12]/elevation-ft</property>
  8602. <factor type="double">5.5556e-05</factor>
  8603. <axis>
  8604. <x type="double">1</x>
  8605. </axis>
  8606. </animation>
  8607. <animation n="909">
  8608. <type type="string">textranslate</type>
  8609. <object-name type="string">Plane.909</object-name>
  8610. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[13]/elevation-ft</property>
  8611. <factor type="double">5.5556e-05</factor>
  8612. <axis>
  8613. <x type="double">1</x>
  8614. </axis>
  8615. </animation>
  8616. <animation n="910">
  8617. <type type="string">textranslate</type>
  8618. <object-name type="string">Plane.910</object-name>
  8619. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[14]/elevation-ft</property>
  8620. <factor type="double">5.5556e-05</factor>
  8621. <axis>
  8622. <x type="double">1</x>
  8623. </axis>
  8624. </animation>
  8625. <animation n="911">
  8626. <type type="string">textranslate</type>
  8627. <object-name type="string">Plane.911</object-name>
  8628. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[15]/elevation-ft</property>
  8629. <factor type="double">5.5556e-05</factor>
  8630. <axis>
  8631. <x type="double">1</x>
  8632. </axis>
  8633. </animation>
  8634. <animation n="912">
  8635. <type type="string">textranslate</type>
  8636. <object-name type="string">Plane.912</object-name>
  8637. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[16]/elevation-ft</property>
  8638. <factor type="double">5.5556e-05</factor>
  8639. <axis>
  8640. <x type="double">1</x>
  8641. </axis>
  8642. </animation>
  8643. <animation n="913">
  8644. <type type="string">textranslate</type>
  8645. <object-name type="string">Plane.913</object-name>
  8646. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[17]/elevation-ft</property>
  8647. <factor type="double">5.5556e-05</factor>
  8648. <axis>
  8649. <x type="double">1</x>
  8650. </axis>
  8651. </animation>
  8652. <animation n="914">
  8653. <type type="string">textranslate</type>
  8654. <object-name type="string">Plane.914</object-name>
  8655. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[18]/elevation-ft</property>
  8656. <factor type="double">5.5556e-05</factor>
  8657. <axis>
  8658. <x type="double">1</x>
  8659. </axis>
  8660. </animation>
  8661. <animation n="915">
  8662. <type type="string">textranslate</type>
  8663. <object-name type="string">Plane.915</object-name>
  8664. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[19]/elevation-ft</property>
  8665. <factor type="double">5.5556e-05</factor>
  8666. <axis>
  8667. <x type="double">1</x>
  8668. </axis>
  8669. </animation>
  8670. <animation n="916">
  8671. <type type="string">textranslate</type>
  8672. <object-name type="string">Plane.916</object-name>
  8673. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[20]/elevation-ft</property>
  8674. <factor type="double">5.5556e-05</factor>
  8675. <axis>
  8676. <x type="double">1</x>
  8677. </axis>
  8678. </animation>
  8679. <animation n="917">
  8680. <type type="string">textranslate</type>
  8681. <object-name type="string">Plane.917</object-name>
  8682. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[21]/elevation-ft</property>
  8683. <factor type="double">5.5556e-05</factor>
  8684. <axis>
  8685. <x type="double">1</x>
  8686. </axis>
  8687. </animation>
  8688. <animation n="918">
  8689. <type type="string">textranslate</type>
  8690. <object-name type="string">Plane.918</object-name>
  8691. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[22]/elevation-ft</property>
  8692. <factor type="double">5.5556e-05</factor>
  8693. <axis>
  8694. <x type="double">1</x>
  8695. </axis>
  8696. </animation>
  8697. <animation n="919">
  8698. <type type="string">textranslate</type>
  8699. <object-name type="string">Plane.919</object-name>
  8700. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[23]/elevation-ft</property>
  8701. <factor type="double">5.5556e-05</factor>
  8702. <axis>
  8703. <x type="double">1</x>
  8704. </axis>
  8705. </animation>
  8706. <animation n="920">
  8707. <type type="string">textranslate</type>
  8708. <object-name type="string">Plane.920</object-name>
  8709. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[24]/elevation-ft</property>
  8710. <factor type="double">5.5556e-05</factor>
  8711. <axis>
  8712. <x type="double">1</x>
  8713. </axis>
  8714. </animation>
  8715. <animation n="921">
  8716. <type type="string">textranslate</type>
  8717. <object-name type="string">Plane.921</object-name>
  8718. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[25]/elevation-ft</property>
  8719. <factor type="double">5.5556e-05</factor>
  8720. <axis>
  8721. <x type="double">1</x>
  8722. </axis>
  8723. </animation>
  8724. <animation n="922">
  8725. <type type="string">textranslate</type>
  8726. <object-name type="string">Plane.922</object-name>
  8727. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[26]/elevation-ft</property>
  8728. <factor type="double">5.5556e-05</factor>
  8729. <axis>
  8730. <x type="double">1</x>
  8731. </axis>
  8732. </animation>
  8733. <animation n="923">
  8734. <type type="string">textranslate</type>
  8735. <object-name type="string">Plane.923</object-name>
  8736. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[27]/elevation-ft</property>
  8737. <factor type="double">5.5556e-05</factor>
  8738. <axis>
  8739. <x type="double">1</x>
  8740. </axis>
  8741. </animation>
  8742. <animation n="924">
  8743. <type type="string">textranslate</type>
  8744. <object-name type="string">Plane.924</object-name>
  8745. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[28]/elevation-ft</property>
  8746. <factor type="double">5.5556e-05</factor>
  8747. <axis>
  8748. <x type="double">1</x>
  8749. </axis>
  8750. </animation>
  8751. <animation n="925">
  8752. <type type="string">textranslate</type>
  8753. <object-name type="string">Plane.925</object-name>
  8754. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[29]/elevation-ft</property>
  8755. <factor type="double">5.5556e-05</factor>
  8756. <axis>
  8757. <x type="double">1</x>
  8758. </axis>
  8759. </animation>
  8760. <animation n="926">
  8761. <type type="string">textranslate</type>
  8762. <object-name type="string">Plane.926</object-name>
  8763. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[30]/elevation-ft</property>
  8764. <factor type="double">5.5556e-05</factor>
  8765. <axis>
  8766. <x type="double">1</x>
  8767. </axis>
  8768. </animation>
  8769. <animation n="927">
  8770. <type type="string">textranslate</type>
  8771. <object-name type="string">Plane.927</object-name>
  8772. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[31]/elevation-ft</property>
  8773. <factor type="double">5.5556e-05</factor>
  8774. <axis>
  8775. <x type="double">1</x>
  8776. </axis>
  8777. </animation>
  8778. <animation n="929">
  8779. <type type="string">textranslate</type>
  8780. <object-name type="string">Plane.929</object-name>
  8781. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[1]/elevation-ft</property>
  8782. <factor type="double">5.5556e-05</factor>
  8783. <axis>
  8784. <x type="double">1</x>
  8785. </axis>
  8786. </animation>
  8787. <animation n="930">
  8788. <type type="string">textranslate</type>
  8789. <object-name type="string">Plane.930</object-name>
  8790. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[2]/elevation-ft</property>
  8791. <factor type="double">5.5556e-05</factor>
  8792. <axis>
  8793. <x type="double">1</x>
  8794. </axis>
  8795. </animation>
  8796. <animation n="931">
  8797. <type type="string">textranslate</type>
  8798. <object-name type="string">Plane.931</object-name>
  8799. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[3]/elevation-ft</property>
  8800. <factor type="double">5.5556e-05</factor>
  8801. <axis>
  8802. <x type="double">1</x>
  8803. </axis>
  8804. </animation>
  8805. <animation n="932">
  8806. <type type="string">textranslate</type>
  8807. <object-name type="string">Plane.932</object-name>
  8808. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[4]/elevation-ft</property>
  8809. <factor type="double">5.5556e-05</factor>
  8810. <axis>
  8811. <x type="double">1</x>
  8812. </axis>
  8813. </animation>
  8814. <animation n="933">
  8815. <type type="string">textranslate</type>
  8816. <object-name type="string">Plane.933</object-name>
  8817. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[5]/elevation-ft</property>
  8818. <factor type="double">5.5556e-05</factor>
  8819. <axis>
  8820. <x type="double">1</x>
  8821. </axis>
  8822. </animation>
  8823. <animation n="934">
  8824. <type type="string">textranslate</type>
  8825. <object-name type="string">Plane.934</object-name>
  8826. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[6]/elevation-ft</property>
  8827. <factor type="double">5.5556e-05</factor>
  8828. <axis>
  8829. <x type="double">1</x>
  8830. </axis>
  8831. </animation>
  8832. <animation n="935">
  8833. <type type="string">textranslate</type>
  8834. <object-name type="string">Plane.935</object-name>
  8835. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[7]/elevation-ft</property>
  8836. <factor type="double">5.5556e-05</factor>
  8837. <axis>
  8838. <x type="double">1</x>
  8839. </axis>
  8840. </animation>
  8841. <animation n="936">
  8842. <type type="string">textranslate</type>
  8843. <object-name type="string">Plane.936</object-name>
  8844. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[8]/elevation-ft</property>
  8845. <factor type="double">5.5556e-05</factor>
  8846. <axis>
  8847. <x type="double">1</x>
  8848. </axis>
  8849. </animation>
  8850. <animation n="937">
  8851. <type type="string">textranslate</type>
  8852. <object-name type="string">Plane.937</object-name>
  8853. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[9]/elevation-ft</property>
  8854. <factor type="double">5.5556e-05</factor>
  8855. <axis>
  8856. <x type="double">1</x>
  8857. </axis>
  8858. </animation>
  8859. <animation n="938">
  8860. <type type="string">textranslate</type>
  8861. <object-name type="string">Plane.938</object-name>
  8862. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[10]/elevation-ft</property>
  8863. <factor type="double">5.5556e-05</factor>
  8864. <axis>
  8865. <x type="double">1</x>
  8866. </axis>
  8867. </animation>
  8868. <animation n="939">
  8869. <type type="string">textranslate</type>
  8870. <object-name type="string">Plane.939</object-name>
  8871. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[11]/elevation-ft</property>
  8872. <factor type="double">5.5556e-05</factor>
  8873. <axis>
  8874. <x type="double">1</x>
  8875. </axis>
  8876. </animation>
  8877. <animation n="940">
  8878. <type type="string">textranslate</type>
  8879. <object-name type="string">Plane.940</object-name>
  8880. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[12]/elevation-ft</property>
  8881. <factor type="double">5.5556e-05</factor>
  8882. <axis>
  8883. <x type="double">1</x>
  8884. </axis>
  8885. </animation>
  8886. <animation n="941">
  8887. <type type="string">textranslate</type>
  8888. <object-name type="string">Plane.941</object-name>
  8889. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[13]/elevation-ft</property>
  8890. <factor type="double">5.5556e-05</factor>
  8891. <axis>
  8892. <x type="double">1</x>
  8893. </axis>
  8894. </animation>
  8895. <animation n="942">
  8896. <type type="string">textranslate</type>
  8897. <object-name type="string">Plane.942</object-name>
  8898. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[14]/elevation-ft</property>
  8899. <factor type="double">5.5556e-05</factor>
  8900. <axis>
  8901. <x type="double">1</x>
  8902. </axis>
  8903. </animation>
  8904. <animation n="943">
  8905. <type type="string">textranslate</type>
  8906. <object-name type="string">Plane.943</object-name>
  8907. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[15]/elevation-ft</property>
  8908. <factor type="double">5.5556e-05</factor>
  8909. <axis>
  8910. <x type="double">1</x>
  8911. </axis>
  8912. </animation>
  8913. <animation n="944">
  8914. <type type="string">textranslate</type>
  8915. <object-name type="string">Plane.944</object-name>
  8916. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[16]/elevation-ft</property>
  8917. <factor type="double">5.5556e-05</factor>
  8918. <axis>
  8919. <x type="double">1</x>
  8920. </axis>
  8921. </animation>
  8922. <animation n="945">
  8923. <type type="string">textranslate</type>
  8924. <object-name type="string">Plane.945</object-name>
  8925. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[17]/elevation-ft</property>
  8926. <factor type="double">5.5556e-05</factor>
  8927. <axis>
  8928. <x type="double">1</x>
  8929. </axis>
  8930. </animation>
  8931. <animation n="946">
  8932. <type type="string">textranslate</type>
  8933. <object-name type="string">Plane.946</object-name>
  8934. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[18]/elevation-ft</property>
  8935. <factor type="double">5.5556e-05</factor>
  8936. <axis>
  8937. <x type="double">1</x>
  8938. </axis>
  8939. </animation>
  8940. <animation n="947">
  8941. <type type="string">textranslate</type>
  8942. <object-name type="string">Plane.947</object-name>
  8943. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[19]/elevation-ft</property>
  8944. <factor type="double">5.5556e-05</factor>
  8945. <axis>
  8946. <x type="double">1</x>
  8947. </axis>
  8948. </animation>
  8949. <animation n="948">
  8950. <type type="string">textranslate</type>
  8951. <object-name type="string">Plane.948</object-name>
  8952. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[20]/elevation-ft</property>
  8953. <factor type="double">5.5556e-05</factor>
  8954. <axis>
  8955. <x type="double">1</x>
  8956. </axis>
  8957. </animation>
  8958. <animation n="949">
  8959. <type type="string">textranslate</type>
  8960. <object-name type="string">Plane.949</object-name>
  8961. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[21]/elevation-ft</property>
  8962. <factor type="double">5.5556e-05</factor>
  8963. <axis>
  8964. <x type="double">1</x>
  8965. </axis>
  8966. </animation>
  8967. <animation n="950">
  8968. <type type="string">textranslate</type>
  8969. <object-name type="string">Plane.950</object-name>
  8970. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[22]/elevation-ft</property>
  8971. <factor type="double">5.5556e-05</factor>
  8972. <axis>
  8973. <x type="double">1</x>
  8974. </axis>
  8975. </animation>
  8976. <animation n="951">
  8977. <type type="string">textranslate</type>
  8978. <object-name type="string">Plane.951</object-name>
  8979. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[23]/elevation-ft</property>
  8980. <factor type="double">5.5556e-05</factor>
  8981. <axis>
  8982. <x type="double">1</x>
  8983. </axis>
  8984. </animation>
  8985. <animation n="952">
  8986. <type type="string">textranslate</type>
  8987. <object-name type="string">Plane.952</object-name>
  8988. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[24]/elevation-ft</property>
  8989. <factor type="double">5.5556e-05</factor>
  8990. <axis>
  8991. <x type="double">1</x>
  8992. </axis>
  8993. </animation>
  8994. <animation n="953">
  8995. <type type="string">textranslate</type>
  8996. <object-name type="string">Plane.953</object-name>
  8997. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[25]/elevation-ft</property>
  8998. <factor type="double">5.5556e-05</factor>
  8999. <axis>
  9000. <x type="double">1</x>
  9001. </axis>
  9002. </animation>
  9003. <animation n="954">
  9004. <type type="string">textranslate</type>
  9005. <object-name type="string">Plane.954</object-name>
  9006. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[26]/elevation-ft</property>
  9007. <factor type="double">5.5556e-05</factor>
  9008. <axis>
  9009. <x type="double">1</x>
  9010. </axis>
  9011. </animation>
  9012. <animation n="955">
  9013. <type type="string">textranslate</type>
  9014. <object-name type="string">Plane.955</object-name>
  9015. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[27]/elevation-ft</property>
  9016. <factor type="double">5.5556e-05</factor>
  9017. <axis>
  9018. <x type="double">1</x>
  9019. </axis>
  9020. </animation>
  9021. <animation n="956">
  9022. <type type="string">textranslate</type>
  9023. <object-name type="string">Plane.956</object-name>
  9024. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[28]/elevation-ft</property>
  9025. <factor type="double">5.5556e-05</factor>
  9026. <axis>
  9027. <x type="double">1</x>
  9028. </axis>
  9029. </animation>
  9030. <animation n="957">
  9031. <type type="string">textranslate</type>
  9032. <object-name type="string">Plane.957</object-name>
  9033. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[29]/elevation-ft</property>
  9034. <factor type="double">5.5556e-05</factor>
  9035. <axis>
  9036. <x type="double">1</x>
  9037. </axis>
  9038. </animation>
  9039. <animation n="958">
  9040. <type type="string">textranslate</type>
  9041. <object-name type="string">Plane.958</object-name>
  9042. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[30]/elevation-ft</property>
  9043. <factor type="double">5.5556e-05</factor>
  9044. <axis>
  9045. <x type="double">1</x>
  9046. </axis>
  9047. </animation>
  9048. <animation n="959">
  9049. <type type="string">textranslate</type>
  9050. <object-name type="string">Plane.959</object-name>
  9051. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[31]/elevation-ft</property>
  9052. <factor type="double">5.5556e-05</factor>
  9053. <axis>
  9054. <x type="double">1</x>
  9055. </axis>
  9056. </animation>
  9057. <animation n="961">
  9058. <type type="string">textranslate</type>
  9059. <object-name type="string">Plane.961</object-name>
  9060. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[1]/elevation-ft</property>
  9061. <factor type="double">5.5556e-05</factor>
  9062. <axis>
  9063. <x type="double">1</x>
  9064. </axis>
  9065. </animation>
  9066. <animation n="962">
  9067. <type type="string">textranslate</type>
  9068. <object-name type="string">Plane.962</object-name>
  9069. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[2]/elevation-ft</property>
  9070. <factor type="double">5.5556e-05</factor>
  9071. <axis>
  9072. <x type="double">1</x>
  9073. </axis>
  9074. </animation>
  9075. <animation n="963">
  9076. <type type="string">textranslate</type>
  9077. <object-name type="string">Plane.963</object-name>
  9078. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[3]/elevation-ft</property>
  9079. <factor type="double">5.5556e-05</factor>
  9080. <axis>
  9081. <x type="double">1</x>
  9082. </axis>
  9083. </animation>
  9084. <animation n="964">
  9085. <type type="string">textranslate</type>
  9086. <object-name type="string">Plane.964</object-name>
  9087. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[4]/elevation-ft</property>
  9088. <factor type="double">5.5556e-05</factor>
  9089. <axis>
  9090. <x type="double">1</x>
  9091. </axis>
  9092. </animation>
  9093. <animation n="965">
  9094. <type type="string">textranslate</type>
  9095. <object-name type="string">Plane.965</object-name>
  9096. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[5]/elevation-ft</property>
  9097. <factor type="double">5.5556e-05</factor>
  9098. <axis>
  9099. <x type="double">1</x>
  9100. </axis>
  9101. </animation>
  9102. <animation n="966">
  9103. <type type="string">textranslate</type>
  9104. <object-name type="string">Plane.966</object-name>
  9105. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[6]/elevation-ft</property>
  9106. <factor type="double">5.5556e-05</factor>
  9107. <axis>
  9108. <x type="double">1</x>
  9109. </axis>
  9110. </animation>
  9111. <animation n="967">
  9112. <type type="string">textranslate</type>
  9113. <object-name type="string">Plane.967</object-name>
  9114. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[7]/elevation-ft</property>
  9115. <factor type="double">5.5556e-05</factor>
  9116. <axis>
  9117. <x type="double">1</x>
  9118. </axis>
  9119. </animation>
  9120. <animation n="968">
  9121. <type type="string">textranslate</type>
  9122. <object-name type="string">Plane.968</object-name>
  9123. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[8]/elevation-ft</property>
  9124. <factor type="double">5.5556e-05</factor>
  9125. <axis>
  9126. <x type="double">1</x>
  9127. </axis>
  9128. </animation>
  9129. <animation n="969">
  9130. <type type="string">textranslate</type>
  9131. <object-name type="string">Plane.969</object-name>
  9132. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[9]/elevation-ft</property>
  9133. <factor type="double">5.5556e-05</factor>
  9134. <axis>
  9135. <x type="double">1</x>
  9136. </axis>
  9137. </animation>
  9138. <animation n="970">
  9139. <type type="string">textranslate</type>
  9140. <object-name type="string">Plane.970</object-name>
  9141. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[10]/elevation-ft</property>
  9142. <factor type="double">5.5556e-05</factor>
  9143. <axis>
  9144. <x type="double">1</x>
  9145. </axis>
  9146. </animation>
  9147. <animation n="971">
  9148. <type type="string">textranslate</type>
  9149. <object-name type="string">Plane.971</object-name>
  9150. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[11]/elevation-ft</property>
  9151. <factor type="double">5.5556e-05</factor>
  9152. <axis>
  9153. <x type="double">1</x>
  9154. </axis>
  9155. </animation>
  9156. <animation n="972">
  9157. <type type="string">textranslate</type>
  9158. <object-name type="string">Plane.972</object-name>
  9159. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[12]/elevation-ft</property>
  9160. <factor type="double">5.5556e-05</factor>
  9161. <axis>
  9162. <x type="double">1</x>
  9163. </axis>
  9164. </animation>
  9165. <animation n="973">
  9166. <type type="string">textranslate</type>
  9167. <object-name type="string">Plane.973</object-name>
  9168. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[13]/elevation-ft</property>
  9169. <factor type="double">5.5556e-05</factor>
  9170. <axis>
  9171. <x type="double">1</x>
  9172. </axis>
  9173. </animation>
  9174. <animation n="974">
  9175. <type type="string">textranslate</type>
  9176. <object-name type="string">Plane.974</object-name>
  9177. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[14]/elevation-ft</property>
  9178. <factor type="double">5.5556e-05</factor>
  9179. <axis>
  9180. <x type="double">1</x>
  9181. </axis>
  9182. </animation>
  9183. <animation n="975">
  9184. <type type="string">textranslate</type>
  9185. <object-name type="string">Plane.975</object-name>
  9186. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[15]/elevation-ft</property>
  9187. <factor type="double">5.5556e-05</factor>
  9188. <axis>
  9189. <x type="double">1</x>
  9190. </axis>
  9191. </animation>
  9192. <animation n="976">
  9193. <type type="string">textranslate</type>
  9194. <object-name type="string">Plane.976</object-name>
  9195. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[16]/elevation-ft</property>
  9196. <factor type="double">5.5556e-05</factor>
  9197. <axis>
  9198. <x type="double">1</x>
  9199. </axis>
  9200. </animation>
  9201. <animation n="977">
  9202. <type type="string">textranslate</type>
  9203. <object-name type="string">Plane.977</object-name>
  9204. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[17]/elevation-ft</property>
  9205. <factor type="double">5.5556e-05</factor>
  9206. <axis>
  9207. <x type="double">1</x>
  9208. </axis>
  9209. </animation>
  9210. <animation n="978">
  9211. <type type="string">textranslate</type>
  9212. <object-name type="string">Plane.978</object-name>
  9213. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[18]/elevation-ft</property>
  9214. <factor type="double">5.5556e-05</factor>
  9215. <axis>
  9216. <x type="double">1</x>
  9217. </axis>
  9218. </animation>
  9219. <animation n="979">
  9220. <type type="string">textranslate</type>
  9221. <object-name type="string">Plane.979</object-name>
  9222. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[19]/elevation-ft</property>
  9223. <factor type="double">5.5556e-05</factor>
  9224. <axis>
  9225. <x type="double">1</x>
  9226. </axis>
  9227. </animation>
  9228. <animation n="980">
  9229. <type type="string">textranslate</type>
  9230. <object-name type="string">Plane.980</object-name>
  9231. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[20]/elevation-ft</property>
  9232. <factor type="double">5.5556e-05</factor>
  9233. <axis>
  9234. <x type="double">1</x>
  9235. </axis>
  9236. </animation>
  9237. <animation n="981">
  9238. <type type="string">textranslate</type>
  9239. <object-name type="string">Plane.981</object-name>
  9240. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[21]/elevation-ft</property>
  9241. <factor type="double">5.5556e-05</factor>
  9242. <axis>
  9243. <x type="double">1</x>
  9244. </axis>
  9245. </animation>
  9246. <animation n="982">
  9247. <type type="string">textranslate</type>
  9248. <object-name type="string">Plane.982</object-name>
  9249. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[22]/elevation-ft</property>
  9250. <factor type="double">5.5556e-05</factor>
  9251. <axis>
  9252. <x type="double">1</x>
  9253. </axis>
  9254. </animation>
  9255. <animation n="983">
  9256. <type type="string">textranslate</type>
  9257. <object-name type="string">Plane.983</object-name>
  9258. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[23]/elevation-ft</property>
  9259. <factor type="double">5.5556e-05</factor>
  9260. <axis>
  9261. <x type="double">1</x>
  9262. </axis>
  9263. </animation>
  9264. <animation n="984">
  9265. <type type="string">textranslate</type>
  9266. <object-name type="string">Plane.984</object-name>
  9267. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[24]/elevation-ft</property>
  9268. <factor type="double">5.5556e-05</factor>
  9269. <axis>
  9270. <x type="double">1</x>
  9271. </axis>
  9272. </animation>
  9273. <animation n="985">
  9274. <type type="string">textranslate</type>
  9275. <object-name type="string">Plane.985</object-name>
  9276. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[25]/elevation-ft</property>
  9277. <factor type="double">5.5556e-05</factor>
  9278. <axis>
  9279. <x type="double">1</x>
  9280. </axis>
  9281. </animation>
  9282. <animation n="986">
  9283. <type type="string">textranslate</type>
  9284. <object-name type="string">Plane.986</object-name>
  9285. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[26]/elevation-ft</property>
  9286. <factor type="double">5.5556e-05</factor>
  9287. <axis>
  9288. <x type="double">1</x>
  9289. </axis>
  9290. </animation>
  9291. <animation n="987">
  9292. <type type="string">textranslate</type>
  9293. <object-name type="string">Plane.987</object-name>
  9294. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[27]/elevation-ft</property>
  9295. <factor type="double">5.5556e-05</factor>
  9296. <axis>
  9297. <x type="double">1</x>
  9298. </axis>
  9299. </animation>
  9300. <animation n="988">
  9301. <type type="string">textranslate</type>
  9302. <object-name type="string">Plane.988</object-name>
  9303. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[28]/elevation-ft</property>
  9304. <factor type="double">5.5556e-05</factor>
  9305. <axis>
  9306. <x type="double">1</x>
  9307. </axis>
  9308. </animation>
  9309. <animation n="989">
  9310. <type type="string">textranslate</type>
  9311. <object-name type="string">Plane.989</object-name>
  9312. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[29]/elevation-ft</property>
  9313. <factor type="double">5.5556e-05</factor>
  9314. <axis>
  9315. <x type="double">1</x>
  9316. </axis>
  9317. </animation>
  9318. <animation n="990">
  9319. <type type="string">textranslate</type>
  9320. <object-name type="string">Plane.990</object-name>
  9321. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[30]/elevation-ft</property>
  9322. <factor type="double">5.5556e-05</factor>
  9323. <axis>
  9324. <x type="double">1</x>
  9325. </axis>
  9326. </animation>
  9327. <animation n="991">
  9328. <type type="string">textranslate</type>
  9329. <object-name type="string">Plane.991</object-name>
  9330. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[31]/elevation-ft</property>
  9331. <factor type="double">5.5556e-05</factor>
  9332. <axis>
  9333. <x type="double">1</x>
  9334. </axis>
  9335. </animation>
  9336. <animation>
  9337. <type>material</type>
  9338. <object-name>Lat</object-name>
  9339. <object-name>Lat-label</object-name>
  9340. <object-name>Long</object-name>
  9341. <object-name>Long-label</object-name>
  9342. <object-name>wptdist-label</object-name>
  9343. <object-name>wptdist</object-name>
  9344. <object-name>ttd-label</object-name>
  9345. <object-name>ttddist</object-name>
  9346. <ambient>
  9347. <red>1.0</red>
  9348. <green>0.0</green>
  9349. <blue>0.0</blue>
  9350. </ambient>
  9351. <diffuse>
  9352. <red>0.3</red>
  9353. <green>0.0</green>
  9354. <blue>0.0</blue>
  9355. </diffuse>
  9356. <emission>
  9357. <red>0.8</red>
  9358. <green>0.0</green>
  9359. <blue>0.0</blue>
  9360. </emission>
  9361. </animation>
  9362. <text>
  9363. <name>Lat-label</name>
  9364. <font>lcd.txf</font>
  9365. <character-size type="double">0.004</character-size>
  9366. <offsets>
  9367. <x-m>0.007</x-m>
  9368. <y-m>-0.04</y-m>
  9369. <z-m>0.092</z-m>
  9370. </offsets>
  9371. <axis-alignment>yz-plane</axis-alignment>
  9372. <type type="string">literal</type>
  9373. <text type="string">LAT:</text>
  9374. <draw-text type="bool">true</draw-text>
  9375. <alignment>left-top</alignment>
  9376. </text>
  9377. <text>
  9378. <name>Lat</name>
  9379. <font>lcd.txf</font>
  9380. <character-size type="double">0.004</character-size>
  9381. <offsets>
  9382. <x-m>0.007</x-m>
  9383. <y-m>-0.0</y-m>
  9384. <z-m>0.092</z-m>
  9385. </offsets>
  9386. <axis-alignment>yz-plane</axis-alignment>
  9387. <type type="string">number-value</type>
  9388. <format type="string">%3.5f</format>
  9389. <truncate type="bool">false</truncate>
  9390. <property>instrumentation/gps/indicated-latitude-deg</property>
  9391. <alignment>right-top</alignment>
  9392. </text>
  9393. <text>
  9394. <name>Long-label</name>
  9395. <font>lcd.txf</font>
  9396. <character-size type="double">0.004</character-size>
  9397. <offsets>
  9398. <x-m>0.007</x-m>
  9399. <y-m>-0.04</y-m>
  9400. <z-m>0.082</z-m>
  9401. </offsets>
  9402. <axis-alignment>yz-plane</axis-alignment>
  9403. <type type="string">literal</type>
  9404. <text type="string">LONG:</text>
  9405. <draw-text type="bool">true</draw-text>
  9406. <alignment>left-top</alignment>
  9407. </text>
  9408. <text>
  9409. <name>Long</name>
  9410. <font>lcd.txf</font>
  9411. <character-size type="double">0.004</character-size>
  9412. <offsets>
  9413. <x-m>0.007</x-m>
  9414. <y-m>-0.0</y-m>
  9415. <z-m>0.082</z-m>
  9416. </offsets>
  9417. <axis-alignment>yz-plane</axis-alignment>
  9418. <type type="string">number-value</type>
  9419. <truncate type="bool">false</truncate>
  9420. <property>instrumentation/gps/indicated-longitude-deg</property>
  9421. <draw-text type="bool">true</draw-text>
  9422. <alignment>right-top</alignment>
  9423. </text>
  9424. <text>
  9425. <name>wptdist-label</name>
  9426. <font>lcd.txf</font>
  9427. <character-size type="double">0.004</character-size>
  9428. <offsets>
  9429. <x-m>0.007</x-m>
  9430. <y-m>0.01</y-m>
  9431. <z-m>0.092</z-m>
  9432. </offsets>
  9433. <axis-alignment>yz-plane</axis-alignment>
  9434. <type type="string">literal</type>
  9435. <text type="string">WPT1:</text>
  9436. <draw-text type="bool">true</draw-text>
  9437. <alignment>left-top</alignment>
  9438. </text>
  9439. <text>
  9440. <name>wptdist</name>
  9441. <font>lcd.txf</font>
  9442. <character-size type="double">0.004</character-size>
  9443. <offsets>
  9444. <x-m>0.007</x-m>
  9445. <y-m>0.04</y-m>
  9446. <z-m>0.082</z-m>
  9447. </offsets>
  9448. <axis-alignment>yz-plane</axis-alignment>
  9449. <type type="string">number-value</type>
  9450. <format>%4.1f</format>
  9451. <truncate type="bool">false</truncate>
  9452. <property>/instrumentation/gps/wp/wp[1]/distance-nm</property>
  9453. <draw-text type="bool">true</draw-text>
  9454. <alignment>right-top</alignment>
  9455. </text>
  9456. <text>
  9457. <name>ttd-label</name>
  9458. <font>lcd.txf</font>
  9459. <character-size type="double">0.004</character-size>
  9460. <offsets>
  9461. <x-m>0.007</x-m>
  9462. <y-m>0.01</y-m>
  9463. <z-m>0.082</z-m>
  9464. </offsets>
  9465. <axis-alignment>yz-plane</axis-alignment>
  9466. <type type="string">literal</type>
  9467. <text type="string">ETA:</text>
  9468. <draw-text type="bool">true</draw-text>
  9469. <alignment>left-top</alignment>
  9470. </text>
  9471. <text>
  9472. <name>ttddist</name>
  9473. <font>lcd.txf</font>
  9474. <character-size type="double">0.004</character-size>
  9475. <offsets>
  9476. <x-m>0.007</x-m>
  9477. <y-m>0.04</y-m>
  9478. <z-m>0.082</z-m>
  9479. </offsets>
  9480. <axis-alignment>yz-plane</axis-alignment>
  9481. <type type="string">string</type>
  9482. <truncate type="bool">false</truncate>
  9483. <property>/instrumentation/gps/wp/wp[1]/TTW</property>
  9484. <draw-text type="bool">true</draw-text>
  9485. <alignment>right-top</alignment>
  9486. </text>
  9487. </PropertyList>