map.xml 338 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837
  1. <PropertyList>
  2. <path>map.ac</path>
  3. <!-- Terrain map -->
  4. <animation n="1">
  5. <type type="string">textranslate</type>
  6. <object-name type="string">Plane.001</object-name>
  7. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[1]/elevation-ft</property>
  8. <factor type="double">5.5556e-05</factor>
  9. <axis>
  10. <x type="double">1</x>
  11. </axis>
  12. </animation>
  13. <animation n="2">
  14. <type type="string">textranslate</type>
  15. <object-name type="string">Plane.002</object-name>
  16. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[2]/elevation-ft</property>
  17. <factor type="double">5.5556e-05</factor>
  18. <axis>
  19. <x type="double">1</x>
  20. </axis>
  21. </animation>
  22. <animation n="3">
  23. <type type="string">textranslate</type>
  24. <object-name type="string">Plane.003</object-name>
  25. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[3]/elevation-ft</property>
  26. <factor type="double">5.5556e-05</factor>
  27. <axis>
  28. <x type="double">1</x>
  29. </axis>
  30. </animation>
  31. <animation n="4">
  32. <type type="string">textranslate</type>
  33. <object-name type="string">Plane.004</object-name>
  34. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[4]/elevation-ft</property>
  35. <factor type="double">5.5556e-05</factor>
  36. <axis>
  37. <x type="double">1</x>
  38. </axis>
  39. </animation>
  40. <animation n="5">
  41. <type type="string">textranslate</type>
  42. <object-name type="string">Plane.005</object-name>
  43. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[5]/elevation-ft</property>
  44. <factor type="double">5.5556e-05</factor>
  45. <axis>
  46. <x type="double">1</x>
  47. </axis>
  48. </animation>
  49. <animation n="6">
  50. <type type="string">textranslate</type>
  51. <object-name type="string">Plane.006</object-name>
  52. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[6]/elevation-ft</property>
  53. <factor type="double">5.5556e-05</factor>
  54. <axis>
  55. <x type="double">1</x>
  56. </axis>
  57. </animation>
  58. <animation n="7">
  59. <type type="string">textranslate</type>
  60. <object-name type="string">Plane.007</object-name>
  61. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[7]/elevation-ft</property>
  62. <factor type="double">5.5556e-05</factor>
  63. <axis>
  64. <x type="double">1</x>
  65. </axis>
  66. </animation>
  67. <animation n="8">
  68. <type type="string">textranslate</type>
  69. <object-name type="string">Plane.008</object-name>
  70. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[8]/elevation-ft</property>
  71. <factor type="double">5.5556e-05</factor>
  72. <axis>
  73. <x type="double">1</x>
  74. </axis>
  75. </animation>
  76. <animation n="9">
  77. <type type="string">textranslate</type>
  78. <object-name type="string">Plane.009</object-name>
  79. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[9]/elevation-ft</property>
  80. <factor type="double">5.5556e-05</factor>
  81. <axis>
  82. <x type="double">1</x>
  83. </axis>
  84. </animation>
  85. <animation n="10">
  86. <type type="string">textranslate</type>
  87. <object-name type="string">Plane.010</object-name>
  88. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[10]/elevation-ft</property>
  89. <factor type="double">5.5556e-05</factor>
  90. <axis>
  91. <x type="double">1</x>
  92. </axis>
  93. </animation>
  94. <animation n="11">
  95. <type type="string">textranslate</type>
  96. <object-name type="string">Plane.011</object-name>
  97. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[11]/elevation-ft</property>
  98. <factor type="double">5.5556e-05</factor>
  99. <axis>
  100. <x type="double">1</x>
  101. </axis>
  102. </animation>
  103. <animation n="12">
  104. <type type="string">textranslate</type>
  105. <object-name type="string">Plane.012</object-name>
  106. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[12]/elevation-ft</property>
  107. <factor type="double">5.5556e-05</factor>
  108. <axis>
  109. <x type="double">1</x>
  110. </axis>
  111. </animation>
  112. <animation n="13">
  113. <type type="string">textranslate</type>
  114. <object-name type="string">Plane.013</object-name>
  115. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[13]/elevation-ft</property>
  116. <factor type="double">5.5556e-05</factor>
  117. <axis>
  118. <x type="double">1</x>
  119. </axis>
  120. </animation>
  121. <animation n="14">
  122. <type type="string">textranslate</type>
  123. <object-name type="string">Plane.014</object-name>
  124. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[14]/elevation-ft</property>
  125. <factor type="double">5.5556e-05</factor>
  126. <axis>
  127. <x type="double">1</x>
  128. </axis>
  129. </animation>
  130. <animation n="15">
  131. <type type="string">textranslate</type>
  132. <object-name type="string">Plane.015</object-name>
  133. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[15]/elevation-ft</property>
  134. <factor type="double">5.5556e-05</factor>
  135. <axis>
  136. <x type="double">1</x>
  137. </axis>
  138. </animation>
  139. <animation n="16">
  140. <type type="string">textranslate</type>
  141. <object-name type="string">Plane.016</object-name>
  142. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[16]/elevation-ft</property>
  143. <factor type="double">5.5556e-05</factor>
  144. <axis>
  145. <x type="double">1</x>
  146. </axis>
  147. </animation>
  148. <animation n="17">
  149. <type type="string">textranslate</type>
  150. <object-name type="string">Plane.017</object-name>
  151. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[17]/elevation-ft</property>
  152. <factor type="double">5.5556e-05</factor>
  153. <axis>
  154. <x type="double">1</x>
  155. </axis>
  156. </animation>
  157. <animation n="18">
  158. <type type="string">textranslate</type>
  159. <object-name type="string">Plane.018</object-name>
  160. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[18]/elevation-ft</property>
  161. <factor type="double">5.5556e-05</factor>
  162. <axis>
  163. <x type="double">1</x>
  164. </axis>
  165. </animation>
  166. <animation n="19">
  167. <type type="string">textranslate</type>
  168. <object-name type="string">Plane.019</object-name>
  169. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[19]/elevation-ft</property>
  170. <factor type="double">5.5556e-05</factor>
  171. <axis>
  172. <x type="double">1</x>
  173. </axis>
  174. </animation>
  175. <animation n="20">
  176. <type type="string">textranslate</type>
  177. <object-name type="string">Plane.020</object-name>
  178. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[20]/elevation-ft</property>
  179. <factor type="double">5.5556e-05</factor>
  180. <axis>
  181. <x type="double">1</x>
  182. </axis>
  183. </animation>
  184. <animation n="21">
  185. <type type="string">textranslate</type>
  186. <object-name type="string">Plane.021</object-name>
  187. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[21]/elevation-ft</property>
  188. <factor type="double">5.5556e-05</factor>
  189. <axis>
  190. <x type="double">1</x>
  191. </axis>
  192. </animation>
  193. <animation n="22">
  194. <type type="string">textranslate</type>
  195. <object-name type="string">Plane.022</object-name>
  196. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[22]/elevation-ft</property>
  197. <factor type="double">5.5556e-05</factor>
  198. <axis>
  199. <x type="double">1</x>
  200. </axis>
  201. </animation>
  202. <animation n="23">
  203. <type type="string">textranslate</type>
  204. <object-name type="string">Plane.023</object-name>
  205. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[23]/elevation-ft</property>
  206. <factor type="double">5.5556e-05</factor>
  207. <axis>
  208. <x type="double">1</x>
  209. </axis>
  210. </animation>
  211. <animation n="24">
  212. <type type="string">textranslate</type>
  213. <object-name type="string">Plane.024</object-name>
  214. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[24]/elevation-ft</property>
  215. <factor type="double">5.5556e-05</factor>
  216. <axis>
  217. <x type="double">1</x>
  218. </axis>
  219. </animation>
  220. <animation n="25">
  221. <type type="string">textranslate</type>
  222. <object-name type="string">Plane.025</object-name>
  223. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[25]/elevation-ft</property>
  224. <factor type="double">5.5556e-05</factor>
  225. <axis>
  226. <x type="double">1</x>
  227. </axis>
  228. </animation>
  229. <animation n="26">
  230. <type type="string">textranslate</type>
  231. <object-name type="string">Plane.026</object-name>
  232. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[26]/elevation-ft</property>
  233. <factor type="double">5.5556e-05</factor>
  234. <axis>
  235. <x type="double">1</x>
  236. </axis>
  237. </animation>
  238. <animation n="27">
  239. <type type="string">textranslate</type>
  240. <object-name type="string">Plane.027</object-name>
  241. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[27]/elevation-ft</property>
  242. <factor type="double">5.5556e-05</factor>
  243. <axis>
  244. <x type="double">1</x>
  245. </axis>
  246. </animation>
  247. <animation n="28">
  248. <type type="string">textranslate</type>
  249. <object-name type="string">Plane.028</object-name>
  250. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[28]/elevation-ft</property>
  251. <factor type="double">5.5556e-05</factor>
  252. <axis>
  253. <x type="double">1</x>
  254. </axis>
  255. </animation>
  256. <animation n="29">
  257. <type type="string">textranslate</type>
  258. <object-name type="string">Plane.029</object-name>
  259. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[29]/elevation-ft</property>
  260. <factor type="double">5.5556e-05</factor>
  261. <axis>
  262. <x type="double">1</x>
  263. </axis>
  264. </animation>
  265. <animation n="30">
  266. <type type="string">textranslate</type>
  267. <object-name type="string">Plane.030</object-name>
  268. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[30]/elevation-ft</property>
  269. <factor type="double">5.5556e-05</factor>
  270. <axis>
  271. <x type="double">1</x>
  272. </axis>
  273. </animation>
  274. <animation n="31">
  275. <type type="string">textranslate</type>
  276. <object-name type="string">Plane.031</object-name>
  277. <property type="string">/instrumentation/terrain-map/pixels/row[0]/col[31]/elevation-ft</property>
  278. <factor type="double">5.5556e-05</factor>
  279. <axis>
  280. <x type="double">1</x>
  281. </axis>
  282. </animation>
  283. <animation n="33">
  284. <type type="string">textranslate</type>
  285. <object-name type="string">Plane.033</object-name>
  286. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[1]/elevation-ft</property>
  287. <factor type="double">5.5556e-05</factor>
  288. <axis>
  289. <x type="double">1</x>
  290. </axis>
  291. </animation>
  292. <animation n="34">
  293. <type type="string">textranslate</type>
  294. <object-name type="string">Plane.034</object-name>
  295. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[2]/elevation-ft</property>
  296. <factor type="double">5.5556e-05</factor>
  297. <axis>
  298. <x type="double">1</x>
  299. </axis>
  300. </animation>
  301. <animation n="35">
  302. <type type="string">textranslate</type>
  303. <object-name type="string">Plane.035</object-name>
  304. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[3]/elevation-ft</property>
  305. <factor type="double">5.5556e-05</factor>
  306. <axis>
  307. <x type="double">1</x>
  308. </axis>
  309. </animation>
  310. <animation n="36">
  311. <type type="string">textranslate</type>
  312. <object-name type="string">Plane.036</object-name>
  313. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[4]/elevation-ft</property>
  314. <factor type="double">5.5556e-05</factor>
  315. <axis>
  316. <x type="double">1</x>
  317. </axis>
  318. </animation>
  319. <animation n="37">
  320. <type type="string">textranslate</type>
  321. <object-name type="string">Plane.037</object-name>
  322. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[5]/elevation-ft</property>
  323. <factor type="double">5.5556e-05</factor>
  324. <axis>
  325. <x type="double">1</x>
  326. </axis>
  327. </animation>
  328. <animation n="38">
  329. <type type="string">textranslate</type>
  330. <object-name type="string">Plane.038</object-name>
  331. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[6]/elevation-ft</property>
  332. <factor type="double">5.5556e-05</factor>
  333. <axis>
  334. <x type="double">1</x>
  335. </axis>
  336. </animation>
  337. <animation n="39">
  338. <type type="string">textranslate</type>
  339. <object-name type="string">Plane.039</object-name>
  340. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[7]/elevation-ft</property>
  341. <factor type="double">5.5556e-05</factor>
  342. <axis>
  343. <x type="double">1</x>
  344. </axis>
  345. </animation>
  346. <animation n="40">
  347. <type type="string">textranslate</type>
  348. <object-name type="string">Plane.040</object-name>
  349. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[8]/elevation-ft</property>
  350. <factor type="double">5.5556e-05</factor>
  351. <axis>
  352. <x type="double">1</x>
  353. </axis>
  354. </animation>
  355. <animation n="41">
  356. <type type="string">textranslate</type>
  357. <object-name type="string">Plane.041</object-name>
  358. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[9]/elevation-ft</property>
  359. <factor type="double">5.5556e-05</factor>
  360. <axis>
  361. <x type="double">1</x>
  362. </axis>
  363. </animation>
  364. <animation n="42">
  365. <type type="string">textranslate</type>
  366. <object-name type="string">Plane.042</object-name>
  367. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[10]/elevation-ft</property>
  368. <factor type="double">5.5556e-05</factor>
  369. <axis>
  370. <x type="double">1</x>
  371. </axis>
  372. </animation>
  373. <animation n="43">
  374. <type type="string">textranslate</type>
  375. <object-name type="string">Plane.043</object-name>
  376. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[11]/elevation-ft</property>
  377. <factor type="double">5.5556e-05</factor>
  378. <axis>
  379. <x type="double">1</x>
  380. </axis>
  381. </animation>
  382. <animation n="44">
  383. <type type="string">textranslate</type>
  384. <object-name type="string">Plane.044</object-name>
  385. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[12]/elevation-ft</property>
  386. <factor type="double">5.5556e-05</factor>
  387. <axis>
  388. <x type="double">1</x>
  389. </axis>
  390. </animation>
  391. <animation n="45">
  392. <type type="string">textranslate</type>
  393. <object-name type="string">Plane.045</object-name>
  394. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[13]/elevation-ft</property>
  395. <factor type="double">5.5556e-05</factor>
  396. <axis>
  397. <x type="double">1</x>
  398. </axis>
  399. </animation>
  400. <animation n="46">
  401. <type type="string">textranslate</type>
  402. <object-name type="string">Plane.046</object-name>
  403. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[14]/elevation-ft</property>
  404. <factor type="double">5.5556e-05</factor>
  405. <axis>
  406. <x type="double">1</x>
  407. </axis>
  408. </animation>
  409. <animation n="47">
  410. <type type="string">textranslate</type>
  411. <object-name type="string">Plane.047</object-name>
  412. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[15]/elevation-ft</property>
  413. <factor type="double">5.5556e-05</factor>
  414. <axis>
  415. <x type="double">1</x>
  416. </axis>
  417. </animation>
  418. <animation n="48">
  419. <type type="string">textranslate</type>
  420. <object-name type="string">Plane.048</object-name>
  421. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[16]/elevation-ft</property>
  422. <factor type="double">5.5556e-05</factor>
  423. <axis>
  424. <x type="double">1</x>
  425. </axis>
  426. </animation>
  427. <animation n="49">
  428. <type type="string">textranslate</type>
  429. <object-name type="string">Plane.049</object-name>
  430. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[17]/elevation-ft</property>
  431. <factor type="double">5.5556e-05</factor>
  432. <axis>
  433. <x type="double">1</x>
  434. </axis>
  435. </animation>
  436. <animation n="50">
  437. <type type="string">textranslate</type>
  438. <object-name type="string">Plane.050</object-name>
  439. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[18]/elevation-ft</property>
  440. <factor type="double">5.5556e-05</factor>
  441. <axis>
  442. <x type="double">1</x>
  443. </axis>
  444. </animation>
  445. <animation n="51">
  446. <type type="string">textranslate</type>
  447. <object-name type="string">Plane.051</object-name>
  448. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[19]/elevation-ft</property>
  449. <factor type="double">5.5556e-05</factor>
  450. <axis>
  451. <x type="double">1</x>
  452. </axis>
  453. </animation>
  454. <animation n="52">
  455. <type type="string">textranslate</type>
  456. <object-name type="string">Plane.052</object-name>
  457. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[20]/elevation-ft</property>
  458. <factor type="double">5.5556e-05</factor>
  459. <axis>
  460. <x type="double">1</x>
  461. </axis>
  462. </animation>
  463. <animation n="53">
  464. <type type="string">textranslate</type>
  465. <object-name type="string">Plane.053</object-name>
  466. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[21]/elevation-ft</property>
  467. <factor type="double">5.5556e-05</factor>
  468. <axis>
  469. <x type="double">1</x>
  470. </axis>
  471. </animation>
  472. <animation n="54">
  473. <type type="string">textranslate</type>
  474. <object-name type="string">Plane.054</object-name>
  475. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[22]/elevation-ft</property>
  476. <factor type="double">5.5556e-05</factor>
  477. <axis>
  478. <x type="double">1</x>
  479. </axis>
  480. </animation>
  481. <animation n="55">
  482. <type type="string">textranslate</type>
  483. <object-name type="string">Plane.055</object-name>
  484. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[23]/elevation-ft</property>
  485. <factor type="double">5.5556e-05</factor>
  486. <axis>
  487. <x type="double">1</x>
  488. </axis>
  489. </animation>
  490. <animation n="56">
  491. <type type="string">textranslate</type>
  492. <object-name type="string">Plane.056</object-name>
  493. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[24]/elevation-ft</property>
  494. <factor type="double">5.5556e-05</factor>
  495. <axis>
  496. <x type="double">1</x>
  497. </axis>
  498. </animation>
  499. <animation n="57">
  500. <type type="string">textranslate</type>
  501. <object-name type="string">Plane.057</object-name>
  502. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[25]/elevation-ft</property>
  503. <factor type="double">5.5556e-05</factor>
  504. <axis>
  505. <x type="double">1</x>
  506. </axis>
  507. </animation>
  508. <animation n="58">
  509. <type type="string">textranslate</type>
  510. <object-name type="string">Plane.058</object-name>
  511. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[26]/elevation-ft</property>
  512. <factor type="double">5.5556e-05</factor>
  513. <axis>
  514. <x type="double">1</x>
  515. </axis>
  516. </animation>
  517. <animation n="59">
  518. <type type="string">textranslate</type>
  519. <object-name type="string">Plane.059</object-name>
  520. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[27]/elevation-ft</property>
  521. <factor type="double">5.5556e-05</factor>
  522. <axis>
  523. <x type="double">1</x>
  524. </axis>
  525. </animation>
  526. <animation n="60">
  527. <type type="string">textranslate</type>
  528. <object-name type="string">Plane.060</object-name>
  529. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[28]/elevation-ft</property>
  530. <factor type="double">5.5556e-05</factor>
  531. <axis>
  532. <x type="double">1</x>
  533. </axis>
  534. </animation>
  535. <animation n="61">
  536. <type type="string">textranslate</type>
  537. <object-name type="string">Plane.061</object-name>
  538. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[29]/elevation-ft</property>
  539. <factor type="double">5.5556e-05</factor>
  540. <axis>
  541. <x type="double">1</x>
  542. </axis>
  543. </animation>
  544. <animation n="62">
  545. <type type="string">textranslate</type>
  546. <object-name type="string">Plane.062</object-name>
  547. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[30]/elevation-ft</property>
  548. <factor type="double">5.5556e-05</factor>
  549. <axis>
  550. <x type="double">1</x>
  551. </axis>
  552. </animation>
  553. <animation n="63">
  554. <type type="string">textranslate</type>
  555. <object-name type="string">Plane.063</object-name>
  556. <property type="string">/instrumentation/terrain-map/pixels/row[1]/col[31]/elevation-ft</property>
  557. <factor type="double">5.5556e-05</factor>
  558. <axis>
  559. <x type="double">1</x>
  560. </axis>
  561. </animation>
  562. <animation n="65">
  563. <type type="string">textranslate</type>
  564. <object-name type="string">Plane.065</object-name>
  565. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[1]/elevation-ft</property>
  566. <factor type="double">5.5556e-05</factor>
  567. <axis>
  568. <x type="double">1</x>
  569. </axis>
  570. </animation>
  571. <animation n="66">
  572. <type type="string">textranslate</type>
  573. <object-name type="string">Plane.066</object-name>
  574. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[2]/elevation-ft</property>
  575. <factor type="double">5.5556e-05</factor>
  576. <axis>
  577. <x type="double">1</x>
  578. </axis>
  579. </animation>
  580. <animation n="67">
  581. <type type="string">textranslate</type>
  582. <object-name type="string">Plane.067</object-name>
  583. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[3]/elevation-ft</property>
  584. <factor type="double">5.5556e-05</factor>
  585. <axis>
  586. <x type="double">1</x>
  587. </axis>
  588. </animation>
  589. <animation n="68">
  590. <type type="string">textranslate</type>
  591. <object-name type="string">Plane.068</object-name>
  592. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[4]/elevation-ft</property>
  593. <factor type="double">5.5556e-05</factor>
  594. <axis>
  595. <x type="double">1</x>
  596. </axis>
  597. </animation>
  598. <animation n="69">
  599. <type type="string">textranslate</type>
  600. <object-name type="string">Plane.069</object-name>
  601. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[5]/elevation-ft</property>
  602. <factor type="double">5.5556e-05</factor>
  603. <axis>
  604. <x type="double">1</x>
  605. </axis>
  606. </animation>
  607. <animation n="70">
  608. <type type="string">textranslate</type>
  609. <object-name type="string">Plane.070</object-name>
  610. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[6]/elevation-ft</property>
  611. <factor type="double">5.5556e-05</factor>
  612. <axis>
  613. <x type="double">1</x>
  614. </axis>
  615. </animation>
  616. <animation n="71">
  617. <type type="string">textranslate</type>
  618. <object-name type="string">Plane.071</object-name>
  619. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[7]/elevation-ft</property>
  620. <factor type="double">5.5556e-05</factor>
  621. <axis>
  622. <x type="double">1</x>
  623. </axis>
  624. </animation>
  625. <animation n="72">
  626. <type type="string">textranslate</type>
  627. <object-name type="string">Plane.072</object-name>
  628. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[8]/elevation-ft</property>
  629. <factor type="double">5.5556e-05</factor>
  630. <axis>
  631. <x type="double">1</x>
  632. </axis>
  633. </animation>
  634. <animation n="73">
  635. <type type="string">textranslate</type>
  636. <object-name type="string">Plane.073</object-name>
  637. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[9]/elevation-ft</property>
  638. <factor type="double">5.5556e-05</factor>
  639. <axis>
  640. <x type="double">1</x>
  641. </axis>
  642. </animation>
  643. <animation n="74">
  644. <type type="string">textranslate</type>
  645. <object-name type="string">Plane.074</object-name>
  646. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[10]/elevation-ft</property>
  647. <factor type="double">5.5556e-05</factor>
  648. <axis>
  649. <x type="double">1</x>
  650. </axis>
  651. </animation>
  652. <animation n="75">
  653. <type type="string">textranslate</type>
  654. <object-name type="string">Plane.075</object-name>
  655. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[11]/elevation-ft</property>
  656. <factor type="double">5.5556e-05</factor>
  657. <axis>
  658. <x type="double">1</x>
  659. </axis>
  660. </animation>
  661. <animation n="76">
  662. <type type="string">textranslate</type>
  663. <object-name type="string">Plane.076</object-name>
  664. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[12]/elevation-ft</property>
  665. <factor type="double">5.5556e-05</factor>
  666. <axis>
  667. <x type="double">1</x>
  668. </axis>
  669. </animation>
  670. <animation n="77">
  671. <type type="string">textranslate</type>
  672. <object-name type="string">Plane.077</object-name>
  673. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[13]/elevation-ft</property>
  674. <factor type="double">5.5556e-05</factor>
  675. <axis>
  676. <x type="double">1</x>
  677. </axis>
  678. </animation>
  679. <animation n="78">
  680. <type type="string">textranslate</type>
  681. <object-name type="string">Plane.078</object-name>
  682. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[14]/elevation-ft</property>
  683. <factor type="double">5.5556e-05</factor>
  684. <axis>
  685. <x type="double">1</x>
  686. </axis>
  687. </animation>
  688. <animation n="79">
  689. <type type="string">textranslate</type>
  690. <object-name type="string">Plane.079</object-name>
  691. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[15]/elevation-ft</property>
  692. <factor type="double">5.5556e-05</factor>
  693. <axis>
  694. <x type="double">1</x>
  695. </axis>
  696. </animation>
  697. <animation n="80">
  698. <type type="string">textranslate</type>
  699. <object-name type="string">Plane.080</object-name>
  700. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[16]/elevation-ft</property>
  701. <factor type="double">5.5556e-05</factor>
  702. <axis>
  703. <x type="double">1</x>
  704. </axis>
  705. </animation>
  706. <animation n="81">
  707. <type type="string">textranslate</type>
  708. <object-name type="string">Plane.081</object-name>
  709. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[17]/elevation-ft</property>
  710. <factor type="double">5.5556e-05</factor>
  711. <axis>
  712. <x type="double">1</x>
  713. </axis>
  714. </animation>
  715. <animation n="82">
  716. <type type="string">textranslate</type>
  717. <object-name type="string">Plane.082</object-name>
  718. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[18]/elevation-ft</property>
  719. <factor type="double">5.5556e-05</factor>
  720. <axis>
  721. <x type="double">1</x>
  722. </axis>
  723. </animation>
  724. <animation n="83">
  725. <type type="string">textranslate</type>
  726. <object-name type="string">Plane.083</object-name>
  727. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[19]/elevation-ft</property>
  728. <factor type="double">5.5556e-05</factor>
  729. <axis>
  730. <x type="double">1</x>
  731. </axis>
  732. </animation>
  733. <animation n="84">
  734. <type type="string">textranslate</type>
  735. <object-name type="string">Plane.084</object-name>
  736. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[20]/elevation-ft</property>
  737. <factor type="double">5.5556e-05</factor>
  738. <axis>
  739. <x type="double">1</x>
  740. </axis>
  741. </animation>
  742. <animation n="85">
  743. <type type="string">textranslate</type>
  744. <object-name type="string">Plane.085</object-name>
  745. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[21]/elevation-ft</property>
  746. <factor type="double">5.5556e-05</factor>
  747. <axis>
  748. <x type="double">1</x>
  749. </axis>
  750. </animation>
  751. <animation n="86">
  752. <type type="string">textranslate</type>
  753. <object-name type="string">Plane.086</object-name>
  754. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[22]/elevation-ft</property>
  755. <factor type="double">5.5556e-05</factor>
  756. <axis>
  757. <x type="double">1</x>
  758. </axis>
  759. </animation>
  760. <animation n="87">
  761. <type type="string">textranslate</type>
  762. <object-name type="string">Plane.087</object-name>
  763. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[23]/elevation-ft</property>
  764. <factor type="double">5.5556e-05</factor>
  765. <axis>
  766. <x type="double">1</x>
  767. </axis>
  768. </animation>
  769. <animation n="88">
  770. <type type="string">textranslate</type>
  771. <object-name type="string">Plane.088</object-name>
  772. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[24]/elevation-ft</property>
  773. <factor type="double">5.5556e-05</factor>
  774. <axis>
  775. <x type="double">1</x>
  776. </axis>
  777. </animation>
  778. <animation n="89">
  779. <type type="string">textranslate</type>
  780. <object-name type="string">Plane.089</object-name>
  781. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[25]/elevation-ft</property>
  782. <factor type="double">5.5556e-05</factor>
  783. <axis>
  784. <x type="double">1</x>
  785. </axis>
  786. </animation>
  787. <animation n="90">
  788. <type type="string">textranslate</type>
  789. <object-name type="string">Plane.090</object-name>
  790. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[26]/elevation-ft</property>
  791. <factor type="double">5.5556e-05</factor>
  792. <axis>
  793. <x type="double">1</x>
  794. </axis>
  795. </animation>
  796. <animation n="91">
  797. <type type="string">textranslate</type>
  798. <object-name type="string">Plane.091</object-name>
  799. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[27]/elevation-ft</property>
  800. <factor type="double">5.5556e-05</factor>
  801. <axis>
  802. <x type="double">1</x>
  803. </axis>
  804. </animation>
  805. <animation n="92">
  806. <type type="string">textranslate</type>
  807. <object-name type="string">Plane.092</object-name>
  808. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[28]/elevation-ft</property>
  809. <factor type="double">5.5556e-05</factor>
  810. <axis>
  811. <x type="double">1</x>
  812. </axis>
  813. </animation>
  814. <animation n="93">
  815. <type type="string">textranslate</type>
  816. <object-name type="string">Plane.093</object-name>
  817. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[29]/elevation-ft</property>
  818. <factor type="double">5.5556e-05</factor>
  819. <axis>
  820. <x type="double">1</x>
  821. </axis>
  822. </animation>
  823. <animation n="94">
  824. <type type="string">textranslate</type>
  825. <object-name type="string">Plane.094</object-name>
  826. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[30]/elevation-ft</property>
  827. <factor type="double">5.5556e-05</factor>
  828. <axis>
  829. <x type="double">1</x>
  830. </axis>
  831. </animation>
  832. <animation n="95">
  833. <type type="string">textranslate</type>
  834. <object-name type="string">Plane.095</object-name>
  835. <property type="string">/instrumentation/terrain-map/pixels/row[2]/col[31]/elevation-ft</property>
  836. <factor type="double">5.5556e-05</factor>
  837. <axis>
  838. <x type="double">1</x>
  839. </axis>
  840. </animation>
  841. <animation n="97">
  842. <type type="string">textranslate</type>
  843. <object-name type="string">Plane.097</object-name>
  844. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[1]/elevation-ft</property>
  845. <factor type="double">5.5556e-05</factor>
  846. <axis>
  847. <x type="double">1</x>
  848. </axis>
  849. </animation>
  850. <animation n="98">
  851. <type type="string">textranslate</type>
  852. <object-name type="string">Plane.098</object-name>
  853. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[2]/elevation-ft</property>
  854. <factor type="double">5.5556e-05</factor>
  855. <axis>
  856. <x type="double">1</x>
  857. </axis>
  858. </animation>
  859. <animation n="99">
  860. <type type="string">textranslate</type>
  861. <object-name type="string">Plane.099</object-name>
  862. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[3]/elevation-ft</property>
  863. <factor type="double">5.5556e-05</factor>
  864. <axis>
  865. <x type="double">1</x>
  866. </axis>
  867. </animation>
  868. <animation n="100">
  869. <type type="string">textranslate</type>
  870. <object-name type="string">Plane.100</object-name>
  871. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[4]/elevation-ft</property>
  872. <factor type="double">5.5556e-05</factor>
  873. <axis>
  874. <x type="double">1</x>
  875. </axis>
  876. </animation>
  877. <animation n="101">
  878. <type type="string">textranslate</type>
  879. <object-name type="string">Plane.101</object-name>
  880. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[5]/elevation-ft</property>
  881. <factor type="double">5.5556e-05</factor>
  882. <axis>
  883. <x type="double">1</x>
  884. </axis>
  885. </animation>
  886. <animation n="102">
  887. <type type="string">textranslate</type>
  888. <object-name type="string">Plane.102</object-name>
  889. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[6]/elevation-ft</property>
  890. <factor type="double">5.5556e-05</factor>
  891. <axis>
  892. <x type="double">1</x>
  893. </axis>
  894. </animation>
  895. <animation n="103">
  896. <type type="string">textranslate</type>
  897. <object-name type="string">Plane.103</object-name>
  898. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[7]/elevation-ft</property>
  899. <factor type="double">5.5556e-05</factor>
  900. <axis>
  901. <x type="double">1</x>
  902. </axis>
  903. </animation>
  904. <animation n="104">
  905. <type type="string">textranslate</type>
  906. <object-name type="string">Plane.104</object-name>
  907. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[8]/elevation-ft</property>
  908. <factor type="double">5.5556e-05</factor>
  909. <axis>
  910. <x type="double">1</x>
  911. </axis>
  912. </animation>
  913. <animation n="105">
  914. <type type="string">textranslate</type>
  915. <object-name type="string">Plane.105</object-name>
  916. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[9]/elevation-ft</property>
  917. <factor type="double">5.5556e-05</factor>
  918. <axis>
  919. <x type="double">1</x>
  920. </axis>
  921. </animation>
  922. <animation n="106">
  923. <type type="string">textranslate</type>
  924. <object-name type="string">Plane.106</object-name>
  925. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[10]/elevation-ft</property>
  926. <factor type="double">5.5556e-05</factor>
  927. <axis>
  928. <x type="double">1</x>
  929. </axis>
  930. </animation>
  931. <animation n="107">
  932. <type type="string">textranslate</type>
  933. <object-name type="string">Plane.107</object-name>
  934. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[11]/elevation-ft</property>
  935. <factor type="double">5.5556e-05</factor>
  936. <axis>
  937. <x type="double">1</x>
  938. </axis>
  939. </animation>
  940. <animation n="108">
  941. <type type="string">textranslate</type>
  942. <object-name type="string">Plane.108</object-name>
  943. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[12]/elevation-ft</property>
  944. <factor type="double">5.5556e-05</factor>
  945. <axis>
  946. <x type="double">1</x>
  947. </axis>
  948. </animation>
  949. <animation n="109">
  950. <type type="string">textranslate</type>
  951. <object-name type="string">Plane.109</object-name>
  952. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[13]/elevation-ft</property>
  953. <factor type="double">5.5556e-05</factor>
  954. <axis>
  955. <x type="double">1</x>
  956. </axis>
  957. </animation>
  958. <animation n="110">
  959. <type type="string">textranslate</type>
  960. <object-name type="string">Plane.110</object-name>
  961. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[14]/elevation-ft</property>
  962. <factor type="double">5.5556e-05</factor>
  963. <axis>
  964. <x type="double">1</x>
  965. </axis>
  966. </animation>
  967. <animation n="111">
  968. <type type="string">textranslate</type>
  969. <object-name type="string">Plane.111</object-name>
  970. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[15]/elevation-ft</property>
  971. <factor type="double">5.5556e-05</factor>
  972. <axis>
  973. <x type="double">1</x>
  974. </axis>
  975. </animation>
  976. <animation n="112">
  977. <type type="string">textranslate</type>
  978. <object-name type="string">Plane.112</object-name>
  979. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[16]/elevation-ft</property>
  980. <factor type="double">5.5556e-05</factor>
  981. <axis>
  982. <x type="double">1</x>
  983. </axis>
  984. </animation>
  985. <animation n="113">
  986. <type type="string">textranslate</type>
  987. <object-name type="string">Plane.113</object-name>
  988. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[17]/elevation-ft</property>
  989. <factor type="double">5.5556e-05</factor>
  990. <axis>
  991. <x type="double">1</x>
  992. </axis>
  993. </animation>
  994. <animation n="114">
  995. <type type="string">textranslate</type>
  996. <object-name type="string">Plane.114</object-name>
  997. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[18]/elevation-ft</property>
  998. <factor type="double">5.5556e-05</factor>
  999. <axis>
  1000. <x type="double">1</x>
  1001. </axis>
  1002. </animation>
  1003. <animation n="115">
  1004. <type type="string">textranslate</type>
  1005. <object-name type="string">Plane.115</object-name>
  1006. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[19]/elevation-ft</property>
  1007. <factor type="double">5.5556e-05</factor>
  1008. <axis>
  1009. <x type="double">1</x>
  1010. </axis>
  1011. </animation>
  1012. <animation n="116">
  1013. <type type="string">textranslate</type>
  1014. <object-name type="string">Plane.116</object-name>
  1015. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[20]/elevation-ft</property>
  1016. <factor type="double">5.5556e-05</factor>
  1017. <axis>
  1018. <x type="double">1</x>
  1019. </axis>
  1020. </animation>
  1021. <animation n="117">
  1022. <type type="string">textranslate</type>
  1023. <object-name type="string">Plane.117</object-name>
  1024. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[21]/elevation-ft</property>
  1025. <factor type="double">5.5556e-05</factor>
  1026. <axis>
  1027. <x type="double">1</x>
  1028. </axis>
  1029. </animation>
  1030. <animation n="118">
  1031. <type type="string">textranslate</type>
  1032. <object-name type="string">Plane.118</object-name>
  1033. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[22]/elevation-ft</property>
  1034. <factor type="double">5.5556e-05</factor>
  1035. <axis>
  1036. <x type="double">1</x>
  1037. </axis>
  1038. </animation>
  1039. <animation n="119">
  1040. <type type="string">textranslate</type>
  1041. <object-name type="string">Plane.119</object-name>
  1042. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[23]/elevation-ft</property>
  1043. <factor type="double">5.5556e-05</factor>
  1044. <axis>
  1045. <x type="double">1</x>
  1046. </axis>
  1047. </animation>
  1048. <animation n="120">
  1049. <type type="string">textranslate</type>
  1050. <object-name type="string">Plane.120</object-name>
  1051. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[24]/elevation-ft</property>
  1052. <factor type="double">5.5556e-05</factor>
  1053. <axis>
  1054. <x type="double">1</x>
  1055. </axis>
  1056. </animation>
  1057. <animation n="121">
  1058. <type type="string">textranslate</type>
  1059. <object-name type="string">Plane.121</object-name>
  1060. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[25]/elevation-ft</property>
  1061. <factor type="double">5.5556e-05</factor>
  1062. <axis>
  1063. <x type="double">1</x>
  1064. </axis>
  1065. </animation>
  1066. <animation n="122">
  1067. <type type="string">textranslate</type>
  1068. <object-name type="string">Plane.122</object-name>
  1069. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[26]/elevation-ft</property>
  1070. <factor type="double">5.5556e-05</factor>
  1071. <axis>
  1072. <x type="double">1</x>
  1073. </axis>
  1074. </animation>
  1075. <animation n="123">
  1076. <type type="string">textranslate</type>
  1077. <object-name type="string">Plane.123</object-name>
  1078. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[27]/elevation-ft</property>
  1079. <factor type="double">5.5556e-05</factor>
  1080. <axis>
  1081. <x type="double">1</x>
  1082. </axis>
  1083. </animation>
  1084. <animation n="124">
  1085. <type type="string">textranslate</type>
  1086. <object-name type="string">Plane.124</object-name>
  1087. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[28]/elevation-ft</property>
  1088. <factor type="double">5.5556e-05</factor>
  1089. <axis>
  1090. <x type="double">1</x>
  1091. </axis>
  1092. </animation>
  1093. <animation n="125">
  1094. <type type="string">textranslate</type>
  1095. <object-name type="string">Plane.125</object-name>
  1096. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[29]/elevation-ft</property>
  1097. <factor type="double">5.5556e-05</factor>
  1098. <axis>
  1099. <x type="double">1</x>
  1100. </axis>
  1101. </animation>
  1102. <animation n="126">
  1103. <type type="string">textranslate</type>
  1104. <object-name type="string">Plane.126</object-name>
  1105. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[30]/elevation-ft</property>
  1106. <factor type="double">5.5556e-05</factor>
  1107. <axis>
  1108. <x type="double">1</x>
  1109. </axis>
  1110. </animation>
  1111. <animation n="127">
  1112. <type type="string">textranslate</type>
  1113. <object-name type="string">Plane.127</object-name>
  1114. <property type="string">/instrumentation/terrain-map/pixels/row[3]/col[31]/elevation-ft</property>
  1115. <factor type="double">5.5556e-05</factor>
  1116. <axis>
  1117. <x type="double">1</x>
  1118. </axis>
  1119. </animation>
  1120. <animation n="129">
  1121. <type type="string">textranslate</type>
  1122. <object-name type="string">Plane.129</object-name>
  1123. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[1]/elevation-ft</property>
  1124. <factor type="double">5.5556e-05</factor>
  1125. <axis>
  1126. <x type="double">1</x>
  1127. </axis>
  1128. </animation>
  1129. <animation n="130">
  1130. <type type="string">textranslate</type>
  1131. <object-name type="string">Plane.130</object-name>
  1132. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[2]/elevation-ft</property>
  1133. <factor type="double">5.5556e-05</factor>
  1134. <axis>
  1135. <x type="double">1</x>
  1136. </axis>
  1137. </animation>
  1138. <animation n="131">
  1139. <type type="string">textranslate</type>
  1140. <object-name type="string">Plane.131</object-name>
  1141. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[3]/elevation-ft</property>
  1142. <factor type="double">5.5556e-05</factor>
  1143. <axis>
  1144. <x type="double">1</x>
  1145. </axis>
  1146. </animation>
  1147. <animation n="132">
  1148. <type type="string">textranslate</type>
  1149. <object-name type="string">Plane.132</object-name>
  1150. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[4]/elevation-ft</property>
  1151. <factor type="double">5.5556e-05</factor>
  1152. <axis>
  1153. <x type="double">1</x>
  1154. </axis>
  1155. </animation>
  1156. <animation n="133">
  1157. <type type="string">textranslate</type>
  1158. <object-name type="string">Plane.133</object-name>
  1159. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[5]/elevation-ft</property>
  1160. <factor type="double">5.5556e-05</factor>
  1161. <axis>
  1162. <x type="double">1</x>
  1163. </axis>
  1164. </animation>
  1165. <animation n="134">
  1166. <type type="string">textranslate</type>
  1167. <object-name type="string">Plane.134</object-name>
  1168. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[6]/elevation-ft</property>
  1169. <factor type="double">5.5556e-05</factor>
  1170. <axis>
  1171. <x type="double">1</x>
  1172. </axis>
  1173. </animation>
  1174. <animation n="135">
  1175. <type type="string">textranslate</type>
  1176. <object-name type="string">Plane.135</object-name>
  1177. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[7]/elevation-ft</property>
  1178. <factor type="double">5.5556e-05</factor>
  1179. <axis>
  1180. <x type="double">1</x>
  1181. </axis>
  1182. </animation>
  1183. <animation n="136">
  1184. <type type="string">textranslate</type>
  1185. <object-name type="string">Plane.136</object-name>
  1186. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[8]/elevation-ft</property>
  1187. <factor type="double">5.5556e-05</factor>
  1188. <axis>
  1189. <x type="double">1</x>
  1190. </axis>
  1191. </animation>
  1192. <animation n="137">
  1193. <type type="string">textranslate</type>
  1194. <object-name type="string">Plane.137</object-name>
  1195. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[9]/elevation-ft</property>
  1196. <factor type="double">5.5556e-05</factor>
  1197. <axis>
  1198. <x type="double">1</x>
  1199. </axis>
  1200. </animation>
  1201. <animation n="138">
  1202. <type type="string">textranslate</type>
  1203. <object-name type="string">Plane.138</object-name>
  1204. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[10]/elevation-ft</property>
  1205. <factor type="double">5.5556e-05</factor>
  1206. <axis>
  1207. <x type="double">1</x>
  1208. </axis>
  1209. </animation>
  1210. <animation n="139">
  1211. <type type="string">textranslate</type>
  1212. <object-name type="string">Plane.139</object-name>
  1213. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[11]/elevation-ft</property>
  1214. <factor type="double">5.5556e-05</factor>
  1215. <axis>
  1216. <x type="double">1</x>
  1217. </axis>
  1218. </animation>
  1219. <animation n="140">
  1220. <type type="string">textranslate</type>
  1221. <object-name type="string">Plane.140</object-name>
  1222. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[12]/elevation-ft</property>
  1223. <factor type="double">5.5556e-05</factor>
  1224. <axis>
  1225. <x type="double">1</x>
  1226. </axis>
  1227. </animation>
  1228. <animation n="141">
  1229. <type type="string">textranslate</type>
  1230. <object-name type="string">Plane.141</object-name>
  1231. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[13]/elevation-ft</property>
  1232. <factor type="double">5.5556e-05</factor>
  1233. <axis>
  1234. <x type="double">1</x>
  1235. </axis>
  1236. </animation>
  1237. <animation n="142">
  1238. <type type="string">textranslate</type>
  1239. <object-name type="string">Plane.142</object-name>
  1240. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[14]/elevation-ft</property>
  1241. <factor type="double">5.5556e-05</factor>
  1242. <axis>
  1243. <x type="double">1</x>
  1244. </axis>
  1245. </animation>
  1246. <animation n="143">
  1247. <type type="string">textranslate</type>
  1248. <object-name type="string">Plane.143</object-name>
  1249. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[15]/elevation-ft</property>
  1250. <factor type="double">5.5556e-05</factor>
  1251. <axis>
  1252. <x type="double">1</x>
  1253. </axis>
  1254. </animation>
  1255. <animation n="144">
  1256. <type type="string">textranslate</type>
  1257. <object-name type="string">Plane.144</object-name>
  1258. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[16]/elevation-ft</property>
  1259. <factor type="double">5.5556e-05</factor>
  1260. <axis>
  1261. <x type="double">1</x>
  1262. </axis>
  1263. </animation>
  1264. <animation n="145">
  1265. <type type="string">textranslate</type>
  1266. <object-name type="string">Plane.145</object-name>
  1267. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[17]/elevation-ft</property>
  1268. <factor type="double">5.5556e-05</factor>
  1269. <axis>
  1270. <x type="double">1</x>
  1271. </axis>
  1272. </animation>
  1273. <animation n="146">
  1274. <type type="string">textranslate</type>
  1275. <object-name type="string">Plane.146</object-name>
  1276. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[18]/elevation-ft</property>
  1277. <factor type="double">5.5556e-05</factor>
  1278. <axis>
  1279. <x type="double">1</x>
  1280. </axis>
  1281. </animation>
  1282. <animation n="147">
  1283. <type type="string">textranslate</type>
  1284. <object-name type="string">Plane.147</object-name>
  1285. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[19]/elevation-ft</property>
  1286. <factor type="double">5.5556e-05</factor>
  1287. <axis>
  1288. <x type="double">1</x>
  1289. </axis>
  1290. </animation>
  1291. <animation n="148">
  1292. <type type="string">textranslate</type>
  1293. <object-name type="string">Plane.148</object-name>
  1294. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[20]/elevation-ft</property>
  1295. <factor type="double">5.5556e-05</factor>
  1296. <axis>
  1297. <x type="double">1</x>
  1298. </axis>
  1299. </animation>
  1300. <animation n="149">
  1301. <type type="string">textranslate</type>
  1302. <object-name type="string">Plane.149</object-name>
  1303. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[21]/elevation-ft</property>
  1304. <factor type="double">5.5556e-05</factor>
  1305. <axis>
  1306. <x type="double">1</x>
  1307. </axis>
  1308. </animation>
  1309. <animation n="150">
  1310. <type type="string">textranslate</type>
  1311. <object-name type="string">Plane.150</object-name>
  1312. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[22]/elevation-ft</property>
  1313. <factor type="double">5.5556e-05</factor>
  1314. <axis>
  1315. <x type="double">1</x>
  1316. </axis>
  1317. </animation>
  1318. <animation n="151">
  1319. <type type="string">textranslate</type>
  1320. <object-name type="string">Plane.151</object-name>
  1321. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[23]/elevation-ft</property>
  1322. <factor type="double">5.5556e-05</factor>
  1323. <axis>
  1324. <x type="double">1</x>
  1325. </axis>
  1326. </animation>
  1327. <animation n="152">
  1328. <type type="string">textranslate</type>
  1329. <object-name type="string">Plane.152</object-name>
  1330. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[24]/elevation-ft</property>
  1331. <factor type="double">5.5556e-05</factor>
  1332. <axis>
  1333. <x type="double">1</x>
  1334. </axis>
  1335. </animation>
  1336. <animation n="153">
  1337. <type type="string">textranslate</type>
  1338. <object-name type="string">Plane.153</object-name>
  1339. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[25]/elevation-ft</property>
  1340. <factor type="double">5.5556e-05</factor>
  1341. <axis>
  1342. <x type="double">1</x>
  1343. </axis>
  1344. </animation>
  1345. <animation n="154">
  1346. <type type="string">textranslate</type>
  1347. <object-name type="string">Plane.154</object-name>
  1348. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[26]/elevation-ft</property>
  1349. <factor type="double">5.5556e-05</factor>
  1350. <axis>
  1351. <x type="double">1</x>
  1352. </axis>
  1353. </animation>
  1354. <animation n="155">
  1355. <type type="string">textranslate</type>
  1356. <object-name type="string">Plane.155</object-name>
  1357. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[27]/elevation-ft</property>
  1358. <factor type="double">5.5556e-05</factor>
  1359. <axis>
  1360. <x type="double">1</x>
  1361. </axis>
  1362. </animation>
  1363. <animation n="156">
  1364. <type type="string">textranslate</type>
  1365. <object-name type="string">Plane.156</object-name>
  1366. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[28]/elevation-ft</property>
  1367. <factor type="double">5.5556e-05</factor>
  1368. <axis>
  1369. <x type="double">1</x>
  1370. </axis>
  1371. </animation>
  1372. <animation n="157">
  1373. <type type="string">textranslate</type>
  1374. <object-name type="string">Plane.157</object-name>
  1375. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[29]/elevation-ft</property>
  1376. <factor type="double">5.5556e-05</factor>
  1377. <axis>
  1378. <x type="double">1</x>
  1379. </axis>
  1380. </animation>
  1381. <animation n="158">
  1382. <type type="string">textranslate</type>
  1383. <object-name type="string">Plane.158</object-name>
  1384. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[30]/elevation-ft</property>
  1385. <factor type="double">5.5556e-05</factor>
  1386. <axis>
  1387. <x type="double">1</x>
  1388. </axis>
  1389. </animation>
  1390. <animation n="159">
  1391. <type type="string">textranslate</type>
  1392. <object-name type="string">Plane.159</object-name>
  1393. <property type="string">/instrumentation/terrain-map/pixels/row[4]/col[31]/elevation-ft</property>
  1394. <factor type="double">5.5556e-05</factor>
  1395. <axis>
  1396. <x type="double">1</x>
  1397. </axis>
  1398. </animation>
  1399. <animation n="161">
  1400. <type type="string">textranslate</type>
  1401. <object-name type="string">Plane.161</object-name>
  1402. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[1]/elevation-ft</property>
  1403. <factor type="double">5.5556e-05</factor>
  1404. <axis>
  1405. <x type="double">1</x>
  1406. </axis>
  1407. </animation>
  1408. <animation n="162">
  1409. <type type="string">textranslate</type>
  1410. <object-name type="string">Plane.162</object-name>
  1411. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[2]/elevation-ft</property>
  1412. <factor type="double">5.5556e-05</factor>
  1413. <axis>
  1414. <x type="double">1</x>
  1415. </axis>
  1416. </animation>
  1417. <animation n="163">
  1418. <type type="string">textranslate</type>
  1419. <object-name type="string">Plane.163</object-name>
  1420. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[3]/elevation-ft</property>
  1421. <factor type="double">5.5556e-05</factor>
  1422. <axis>
  1423. <x type="double">1</x>
  1424. </axis>
  1425. </animation>
  1426. <animation n="164">
  1427. <type type="string">textranslate</type>
  1428. <object-name type="string">Plane.164</object-name>
  1429. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[4]/elevation-ft</property>
  1430. <factor type="double">5.5556e-05</factor>
  1431. <axis>
  1432. <x type="double">1</x>
  1433. </axis>
  1434. </animation>
  1435. <animation n="165">
  1436. <type type="string">textranslate</type>
  1437. <object-name type="string">Plane.165</object-name>
  1438. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[5]/elevation-ft</property>
  1439. <factor type="double">5.5556e-05</factor>
  1440. <axis>
  1441. <x type="double">1</x>
  1442. </axis>
  1443. </animation>
  1444. <animation n="166">
  1445. <type type="string">textranslate</type>
  1446. <object-name type="string">Plane.166</object-name>
  1447. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[6]/elevation-ft</property>
  1448. <factor type="double">5.5556e-05</factor>
  1449. <axis>
  1450. <x type="double">1</x>
  1451. </axis>
  1452. </animation>
  1453. <animation n="167">
  1454. <type type="string">textranslate</type>
  1455. <object-name type="string">Plane.167</object-name>
  1456. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[7]/elevation-ft</property>
  1457. <factor type="double">5.5556e-05</factor>
  1458. <axis>
  1459. <x type="double">1</x>
  1460. </axis>
  1461. </animation>
  1462. <animation n="168">
  1463. <type type="string">textranslate</type>
  1464. <object-name type="string">Plane.168</object-name>
  1465. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[8]/elevation-ft</property>
  1466. <factor type="double">5.5556e-05</factor>
  1467. <axis>
  1468. <x type="double">1</x>
  1469. </axis>
  1470. </animation>
  1471. <animation n="169">
  1472. <type type="string">textranslate</type>
  1473. <object-name type="string">Plane.169</object-name>
  1474. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[9]/elevation-ft</property>
  1475. <factor type="double">5.5556e-05</factor>
  1476. <axis>
  1477. <x type="double">1</x>
  1478. </axis>
  1479. </animation>
  1480. <animation n="170">
  1481. <type type="string">textranslate</type>
  1482. <object-name type="string">Plane.170</object-name>
  1483. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[10]/elevation-ft</property>
  1484. <factor type="double">5.5556e-05</factor>
  1485. <axis>
  1486. <x type="double">1</x>
  1487. </axis>
  1488. </animation>
  1489. <animation n="171">
  1490. <type type="string">textranslate</type>
  1491. <object-name type="string">Plane.171</object-name>
  1492. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[11]/elevation-ft</property>
  1493. <factor type="double">5.5556e-05</factor>
  1494. <axis>
  1495. <x type="double">1</x>
  1496. </axis>
  1497. </animation>
  1498. <animation n="172">
  1499. <type type="string">textranslate</type>
  1500. <object-name type="string">Plane.172</object-name>
  1501. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[12]/elevation-ft</property>
  1502. <factor type="double">5.5556e-05</factor>
  1503. <axis>
  1504. <x type="double">1</x>
  1505. </axis>
  1506. </animation>
  1507. <animation n="173">
  1508. <type type="string">textranslate</type>
  1509. <object-name type="string">Plane.173</object-name>
  1510. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[13]/elevation-ft</property>
  1511. <factor type="double">5.5556e-05</factor>
  1512. <axis>
  1513. <x type="double">1</x>
  1514. </axis>
  1515. </animation>
  1516. <animation n="174">
  1517. <type type="string">textranslate</type>
  1518. <object-name type="string">Plane.174</object-name>
  1519. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[14]/elevation-ft</property>
  1520. <factor type="double">5.5556e-05</factor>
  1521. <axis>
  1522. <x type="double">1</x>
  1523. </axis>
  1524. </animation>
  1525. <animation n="175">
  1526. <type type="string">textranslate</type>
  1527. <object-name type="string">Plane.175</object-name>
  1528. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[15]/elevation-ft</property>
  1529. <factor type="double">5.5556e-05</factor>
  1530. <axis>
  1531. <x type="double">1</x>
  1532. </axis>
  1533. </animation>
  1534. <animation n="176">
  1535. <type type="string">textranslate</type>
  1536. <object-name type="string">Plane.176</object-name>
  1537. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[16]/elevation-ft</property>
  1538. <factor type="double">5.5556e-05</factor>
  1539. <axis>
  1540. <x type="double">1</x>
  1541. </axis>
  1542. </animation>
  1543. <animation n="177">
  1544. <type type="string">textranslate</type>
  1545. <object-name type="string">Plane.177</object-name>
  1546. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[17]/elevation-ft</property>
  1547. <factor type="double">5.5556e-05</factor>
  1548. <axis>
  1549. <x type="double">1</x>
  1550. </axis>
  1551. </animation>
  1552. <animation n="178">
  1553. <type type="string">textranslate</type>
  1554. <object-name type="string">Plane.178</object-name>
  1555. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[18]/elevation-ft</property>
  1556. <factor type="double">5.5556e-05</factor>
  1557. <axis>
  1558. <x type="double">1</x>
  1559. </axis>
  1560. </animation>
  1561. <animation n="179">
  1562. <type type="string">textranslate</type>
  1563. <object-name type="string">Plane.179</object-name>
  1564. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[19]/elevation-ft</property>
  1565. <factor type="double">5.5556e-05</factor>
  1566. <axis>
  1567. <x type="double">1</x>
  1568. </axis>
  1569. </animation>
  1570. <animation n="180">
  1571. <type type="string">textranslate</type>
  1572. <object-name type="string">Plane.180</object-name>
  1573. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[20]/elevation-ft</property>
  1574. <factor type="double">5.5556e-05</factor>
  1575. <axis>
  1576. <x type="double">1</x>
  1577. </axis>
  1578. </animation>
  1579. <animation n="181">
  1580. <type type="string">textranslate</type>
  1581. <object-name type="string">Plane.181</object-name>
  1582. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[21]/elevation-ft</property>
  1583. <factor type="double">5.5556e-05</factor>
  1584. <axis>
  1585. <x type="double">1</x>
  1586. </axis>
  1587. </animation>
  1588. <animation n="182">
  1589. <type type="string">textranslate</type>
  1590. <object-name type="string">Plane.182</object-name>
  1591. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[22]/elevation-ft</property>
  1592. <factor type="double">5.5556e-05</factor>
  1593. <axis>
  1594. <x type="double">1</x>
  1595. </axis>
  1596. </animation>
  1597. <animation n="183">
  1598. <type type="string">textranslate</type>
  1599. <object-name type="string">Plane.183</object-name>
  1600. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[23]/elevation-ft</property>
  1601. <factor type="double">5.5556e-05</factor>
  1602. <axis>
  1603. <x type="double">1</x>
  1604. </axis>
  1605. </animation>
  1606. <animation n="184">
  1607. <type type="string">textranslate</type>
  1608. <object-name type="string">Plane.184</object-name>
  1609. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[24]/elevation-ft</property>
  1610. <factor type="double">5.5556e-05</factor>
  1611. <axis>
  1612. <x type="double">1</x>
  1613. </axis>
  1614. </animation>
  1615. <animation n="185">
  1616. <type type="string">textranslate</type>
  1617. <object-name type="string">Plane.185</object-name>
  1618. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[25]/elevation-ft</property>
  1619. <factor type="double">5.5556e-05</factor>
  1620. <axis>
  1621. <x type="double">1</x>
  1622. </axis>
  1623. </animation>
  1624. <animation n="186">
  1625. <type type="string">textranslate</type>
  1626. <object-name type="string">Plane.186</object-name>
  1627. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[26]/elevation-ft</property>
  1628. <factor type="double">5.5556e-05</factor>
  1629. <axis>
  1630. <x type="double">1</x>
  1631. </axis>
  1632. </animation>
  1633. <animation n="187">
  1634. <type type="string">textranslate</type>
  1635. <object-name type="string">Plane.187</object-name>
  1636. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[27]/elevation-ft</property>
  1637. <factor type="double">5.5556e-05</factor>
  1638. <axis>
  1639. <x type="double">1</x>
  1640. </axis>
  1641. </animation>
  1642. <animation n="188">
  1643. <type type="string">textranslate</type>
  1644. <object-name type="string">Plane.188</object-name>
  1645. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[28]/elevation-ft</property>
  1646. <factor type="double">5.5556e-05</factor>
  1647. <axis>
  1648. <x type="double">1</x>
  1649. </axis>
  1650. </animation>
  1651. <animation n="189">
  1652. <type type="string">textranslate</type>
  1653. <object-name type="string">Plane.189</object-name>
  1654. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[29]/elevation-ft</property>
  1655. <factor type="double">5.5556e-05</factor>
  1656. <axis>
  1657. <x type="double">1</x>
  1658. </axis>
  1659. </animation>
  1660. <animation n="190">
  1661. <type type="string">textranslate</type>
  1662. <object-name type="string">Plane.190</object-name>
  1663. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[30]/elevation-ft</property>
  1664. <factor type="double">5.5556e-05</factor>
  1665. <axis>
  1666. <x type="double">1</x>
  1667. </axis>
  1668. </animation>
  1669. <animation n="191">
  1670. <type type="string">textranslate</type>
  1671. <object-name type="string">Plane.191</object-name>
  1672. <property type="string">/instrumentation/terrain-map/pixels/row[5]/col[31]/elevation-ft</property>
  1673. <factor type="double">5.5556e-05</factor>
  1674. <axis>
  1675. <x type="double">1</x>
  1676. </axis>
  1677. </animation>
  1678. <animation n="193">
  1679. <type type="string">textranslate</type>
  1680. <object-name type="string">Plane.193</object-name>
  1681. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[1]/elevation-ft</property>
  1682. <factor type="double">5.5556e-05</factor>
  1683. <axis>
  1684. <x type="double">1</x>
  1685. </axis>
  1686. </animation>
  1687. <animation n="194">
  1688. <type type="string">textranslate</type>
  1689. <object-name type="string">Plane.194</object-name>
  1690. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[2]/elevation-ft</property>
  1691. <factor type="double">5.5556e-05</factor>
  1692. <axis>
  1693. <x type="double">1</x>
  1694. </axis>
  1695. </animation>
  1696. <animation n="195">
  1697. <type type="string">textranslate</type>
  1698. <object-name type="string">Plane.195</object-name>
  1699. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[3]/elevation-ft</property>
  1700. <factor type="double">5.5556e-05</factor>
  1701. <axis>
  1702. <x type="double">1</x>
  1703. </axis>
  1704. </animation>
  1705. <animation n="196">
  1706. <type type="string">textranslate</type>
  1707. <object-name type="string">Plane.196</object-name>
  1708. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[4]/elevation-ft</property>
  1709. <factor type="double">5.5556e-05</factor>
  1710. <axis>
  1711. <x type="double">1</x>
  1712. </axis>
  1713. </animation>
  1714. <animation n="197">
  1715. <type type="string">textranslate</type>
  1716. <object-name type="string">Plane.197</object-name>
  1717. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[5]/elevation-ft</property>
  1718. <factor type="double">5.5556e-05</factor>
  1719. <axis>
  1720. <x type="double">1</x>
  1721. </axis>
  1722. </animation>
  1723. <animation n="198">
  1724. <type type="string">textranslate</type>
  1725. <object-name type="string">Plane.198</object-name>
  1726. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[6]/elevation-ft</property>
  1727. <factor type="double">5.5556e-05</factor>
  1728. <axis>
  1729. <x type="double">1</x>
  1730. </axis>
  1731. </animation>
  1732. <animation n="199">
  1733. <type type="string">textranslate</type>
  1734. <object-name type="string">Plane.199</object-name>
  1735. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[7]/elevation-ft</property>
  1736. <factor type="double">5.5556e-05</factor>
  1737. <axis>
  1738. <x type="double">1</x>
  1739. </axis>
  1740. </animation>
  1741. <animation n="200">
  1742. <type type="string">textranslate</type>
  1743. <object-name type="string">Plane.200</object-name>
  1744. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[8]/elevation-ft</property>
  1745. <factor type="double">5.5556e-05</factor>
  1746. <axis>
  1747. <x type="double">1</x>
  1748. </axis>
  1749. </animation>
  1750. <animation n="201">
  1751. <type type="string">textranslate</type>
  1752. <object-name type="string">Plane.201</object-name>
  1753. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[9]/elevation-ft</property>
  1754. <factor type="double">5.5556e-05</factor>
  1755. <axis>
  1756. <x type="double">1</x>
  1757. </axis>
  1758. </animation>
  1759. <animation n="202">
  1760. <type type="string">textranslate</type>
  1761. <object-name type="string">Plane.202</object-name>
  1762. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[10]/elevation-ft</property>
  1763. <factor type="double">5.5556e-05</factor>
  1764. <axis>
  1765. <x type="double">1</x>
  1766. </axis>
  1767. </animation>
  1768. <animation n="203">
  1769. <type type="string">textranslate</type>
  1770. <object-name type="string">Plane.203</object-name>
  1771. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[11]/elevation-ft</property>
  1772. <factor type="double">5.5556e-05</factor>
  1773. <axis>
  1774. <x type="double">1</x>
  1775. </axis>
  1776. </animation>
  1777. <animation n="204">
  1778. <type type="string">textranslate</type>
  1779. <object-name type="string">Plane.204</object-name>
  1780. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[12]/elevation-ft</property>
  1781. <factor type="double">5.5556e-05</factor>
  1782. <axis>
  1783. <x type="double">1</x>
  1784. </axis>
  1785. </animation>
  1786. <animation n="205">
  1787. <type type="string">textranslate</type>
  1788. <object-name type="string">Plane.205</object-name>
  1789. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[13]/elevation-ft</property>
  1790. <factor type="double">5.5556e-05</factor>
  1791. <axis>
  1792. <x type="double">1</x>
  1793. </axis>
  1794. </animation>
  1795. <animation n="206">
  1796. <type type="string">textranslate</type>
  1797. <object-name type="string">Plane.206</object-name>
  1798. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[14]/elevation-ft</property>
  1799. <factor type="double">5.5556e-05</factor>
  1800. <axis>
  1801. <x type="double">1</x>
  1802. </axis>
  1803. </animation>
  1804. <animation n="207">
  1805. <type type="string">textranslate</type>
  1806. <object-name type="string">Plane.207</object-name>
  1807. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[15]/elevation-ft</property>
  1808. <factor type="double">5.5556e-05</factor>
  1809. <axis>
  1810. <x type="double">1</x>
  1811. </axis>
  1812. </animation>
  1813. <animation n="208">
  1814. <type type="string">textranslate</type>
  1815. <object-name type="string">Plane.208</object-name>
  1816. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[16]/elevation-ft</property>
  1817. <factor type="double">5.5556e-05</factor>
  1818. <axis>
  1819. <x type="double">1</x>
  1820. </axis>
  1821. </animation>
  1822. <animation n="209">
  1823. <type type="string">textranslate</type>
  1824. <object-name type="string">Plane.209</object-name>
  1825. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[17]/elevation-ft</property>
  1826. <factor type="double">5.5556e-05</factor>
  1827. <axis>
  1828. <x type="double">1</x>
  1829. </axis>
  1830. </animation>
  1831. <animation n="210">
  1832. <type type="string">textranslate</type>
  1833. <object-name type="string">Plane.210</object-name>
  1834. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[18]/elevation-ft</property>
  1835. <factor type="double">5.5556e-05</factor>
  1836. <axis>
  1837. <x type="double">1</x>
  1838. </axis>
  1839. </animation>
  1840. <animation n="211">
  1841. <type type="string">textranslate</type>
  1842. <object-name type="string">Plane.211</object-name>
  1843. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[19]/elevation-ft</property>
  1844. <factor type="double">5.5556e-05</factor>
  1845. <axis>
  1846. <x type="double">1</x>
  1847. </axis>
  1848. </animation>
  1849. <animation n="212">
  1850. <type type="string">textranslate</type>
  1851. <object-name type="string">Plane.212</object-name>
  1852. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[20]/elevation-ft</property>
  1853. <factor type="double">5.5556e-05</factor>
  1854. <axis>
  1855. <x type="double">1</x>
  1856. </axis>
  1857. </animation>
  1858. <animation n="213">
  1859. <type type="string">textranslate</type>
  1860. <object-name type="string">Plane.213</object-name>
  1861. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[21]/elevation-ft</property>
  1862. <factor type="double">5.5556e-05</factor>
  1863. <axis>
  1864. <x type="double">1</x>
  1865. </axis>
  1866. </animation>
  1867. <animation n="214">
  1868. <type type="string">textranslate</type>
  1869. <object-name type="string">Plane.214</object-name>
  1870. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[22]/elevation-ft</property>
  1871. <factor type="double">5.5556e-05</factor>
  1872. <axis>
  1873. <x type="double">1</x>
  1874. </axis>
  1875. </animation>
  1876. <animation n="215">
  1877. <type type="string">textranslate</type>
  1878. <object-name type="string">Plane.215</object-name>
  1879. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[23]/elevation-ft</property>
  1880. <factor type="double">5.5556e-05</factor>
  1881. <axis>
  1882. <x type="double">1</x>
  1883. </axis>
  1884. </animation>
  1885. <animation n="216">
  1886. <type type="string">textranslate</type>
  1887. <object-name type="string">Plane.216</object-name>
  1888. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[24]/elevation-ft</property>
  1889. <factor type="double">5.5556e-05</factor>
  1890. <axis>
  1891. <x type="double">1</x>
  1892. </axis>
  1893. </animation>
  1894. <animation n="217">
  1895. <type type="string">textranslate</type>
  1896. <object-name type="string">Plane.217</object-name>
  1897. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[25]/elevation-ft</property>
  1898. <factor type="double">5.5556e-05</factor>
  1899. <axis>
  1900. <x type="double">1</x>
  1901. </axis>
  1902. </animation>
  1903. <animation n="218">
  1904. <type type="string">textranslate</type>
  1905. <object-name type="string">Plane.218</object-name>
  1906. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[26]/elevation-ft</property>
  1907. <factor type="double">5.5556e-05</factor>
  1908. <axis>
  1909. <x type="double">1</x>
  1910. </axis>
  1911. </animation>
  1912. <animation n="219">
  1913. <type type="string">textranslate</type>
  1914. <object-name type="string">Plane.219</object-name>
  1915. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[27]/elevation-ft</property>
  1916. <factor type="double">5.5556e-05</factor>
  1917. <axis>
  1918. <x type="double">1</x>
  1919. </axis>
  1920. </animation>
  1921. <animation n="220">
  1922. <type type="string">textranslate</type>
  1923. <object-name type="string">Plane.220</object-name>
  1924. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[28]/elevation-ft</property>
  1925. <factor type="double">5.5556e-05</factor>
  1926. <axis>
  1927. <x type="double">1</x>
  1928. </axis>
  1929. </animation>
  1930. <animation n="221">
  1931. <type type="string">textranslate</type>
  1932. <object-name type="string">Plane.221</object-name>
  1933. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[29]/elevation-ft</property>
  1934. <factor type="double">5.5556e-05</factor>
  1935. <axis>
  1936. <x type="double">1</x>
  1937. </axis>
  1938. </animation>
  1939. <animation n="222">
  1940. <type type="string">textranslate</type>
  1941. <object-name type="string">Plane.222</object-name>
  1942. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[30]/elevation-ft</property>
  1943. <factor type="double">5.5556e-05</factor>
  1944. <axis>
  1945. <x type="double">1</x>
  1946. </axis>
  1947. </animation>
  1948. <animation n="223">
  1949. <type type="string">textranslate</type>
  1950. <object-name type="string">Plane.223</object-name>
  1951. <property type="string">/instrumentation/terrain-map/pixels/row[6]/col[31]/elevation-ft</property>
  1952. <factor type="double">5.5556e-05</factor>
  1953. <axis>
  1954. <x type="double">1</x>
  1955. </axis>
  1956. </animation>
  1957. <animation n="225">
  1958. <type type="string">textranslate</type>
  1959. <object-name type="string">Plane.225</object-name>
  1960. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[1]/elevation-ft</property>
  1961. <factor type="double">5.5556e-05</factor>
  1962. <axis>
  1963. <x type="double">1</x>
  1964. </axis>
  1965. </animation>
  1966. <animation n="226">
  1967. <type type="string">textranslate</type>
  1968. <object-name type="string">Plane.226</object-name>
  1969. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[2]/elevation-ft</property>
  1970. <factor type="double">5.5556e-05</factor>
  1971. <axis>
  1972. <x type="double">1</x>
  1973. </axis>
  1974. </animation>
  1975. <animation n="227">
  1976. <type type="string">textranslate</type>
  1977. <object-name type="string">Plane.227</object-name>
  1978. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[3]/elevation-ft</property>
  1979. <factor type="double">5.5556e-05</factor>
  1980. <axis>
  1981. <x type="double">1</x>
  1982. </axis>
  1983. </animation>
  1984. <animation n="228">
  1985. <type type="string">textranslate</type>
  1986. <object-name type="string">Plane.228</object-name>
  1987. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[4]/elevation-ft</property>
  1988. <factor type="double">5.5556e-05</factor>
  1989. <axis>
  1990. <x type="double">1</x>
  1991. </axis>
  1992. </animation>
  1993. <animation n="229">
  1994. <type type="string">textranslate</type>
  1995. <object-name type="string">Plane.229</object-name>
  1996. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[5]/elevation-ft</property>
  1997. <factor type="double">5.5556e-05</factor>
  1998. <axis>
  1999. <x type="double">1</x>
  2000. </axis>
  2001. </animation>
  2002. <animation n="230">
  2003. <type type="string">textranslate</type>
  2004. <object-name type="string">Plane.230</object-name>
  2005. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[6]/elevation-ft</property>
  2006. <factor type="double">5.5556e-05</factor>
  2007. <axis>
  2008. <x type="double">1</x>
  2009. </axis>
  2010. </animation>
  2011. <animation n="231">
  2012. <type type="string">textranslate</type>
  2013. <object-name type="string">Plane.231</object-name>
  2014. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[7]/elevation-ft</property>
  2015. <factor type="double">5.5556e-05</factor>
  2016. <axis>
  2017. <x type="double">1</x>
  2018. </axis>
  2019. </animation>
  2020. <animation n="232">
  2021. <type type="string">textranslate</type>
  2022. <object-name type="string">Plane.232</object-name>
  2023. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[8]/elevation-ft</property>
  2024. <factor type="double">5.5556e-05</factor>
  2025. <axis>
  2026. <x type="double">1</x>
  2027. </axis>
  2028. </animation>
  2029. <animation n="233">
  2030. <type type="string">textranslate</type>
  2031. <object-name type="string">Plane.233</object-name>
  2032. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[9]/elevation-ft</property>
  2033. <factor type="double">5.5556e-05</factor>
  2034. <axis>
  2035. <x type="double">1</x>
  2036. </axis>
  2037. </animation>
  2038. <animation n="234">
  2039. <type type="string">textranslate</type>
  2040. <object-name type="string">Plane.234</object-name>
  2041. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[10]/elevation-ft</property>
  2042. <factor type="double">5.5556e-05</factor>
  2043. <axis>
  2044. <x type="double">1</x>
  2045. </axis>
  2046. </animation>
  2047. <animation n="235">
  2048. <type type="string">textranslate</type>
  2049. <object-name type="string">Plane.235</object-name>
  2050. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[11]/elevation-ft</property>
  2051. <factor type="double">5.5556e-05</factor>
  2052. <axis>
  2053. <x type="double">1</x>
  2054. </axis>
  2055. </animation>
  2056. <animation n="236">
  2057. <type type="string">textranslate</type>
  2058. <object-name type="string">Plane.236</object-name>
  2059. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[12]/elevation-ft</property>
  2060. <factor type="double">5.5556e-05</factor>
  2061. <axis>
  2062. <x type="double">1</x>
  2063. </axis>
  2064. </animation>
  2065. <animation n="237">
  2066. <type type="string">textranslate</type>
  2067. <object-name type="string">Plane.237</object-name>
  2068. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[13]/elevation-ft</property>
  2069. <factor type="double">5.5556e-05</factor>
  2070. <axis>
  2071. <x type="double">1</x>
  2072. </axis>
  2073. </animation>
  2074. <animation n="238">
  2075. <type type="string">textranslate</type>
  2076. <object-name type="string">Plane.238</object-name>
  2077. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[14]/elevation-ft</property>
  2078. <factor type="double">5.5556e-05</factor>
  2079. <axis>
  2080. <x type="double">1</x>
  2081. </axis>
  2082. </animation>
  2083. <animation n="239">
  2084. <type type="string">textranslate</type>
  2085. <object-name type="string">Plane.239</object-name>
  2086. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[15]/elevation-ft</property>
  2087. <factor type="double">5.5556e-05</factor>
  2088. <axis>
  2089. <x type="double">1</x>
  2090. </axis>
  2091. </animation>
  2092. <animation n="240">
  2093. <type type="string">textranslate</type>
  2094. <object-name type="string">Plane.240</object-name>
  2095. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[16]/elevation-ft</property>
  2096. <factor type="double">5.5556e-05</factor>
  2097. <axis>
  2098. <x type="double">1</x>
  2099. </axis>
  2100. </animation>
  2101. <animation n="241">
  2102. <type type="string">textranslate</type>
  2103. <object-name type="string">Plane.241</object-name>
  2104. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[17]/elevation-ft</property>
  2105. <factor type="double">5.5556e-05</factor>
  2106. <axis>
  2107. <x type="double">1</x>
  2108. </axis>
  2109. </animation>
  2110. <animation n="242">
  2111. <type type="string">textranslate</type>
  2112. <object-name type="string">Plane.242</object-name>
  2113. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[18]/elevation-ft</property>
  2114. <factor type="double">5.5556e-05</factor>
  2115. <axis>
  2116. <x type="double">1</x>
  2117. </axis>
  2118. </animation>
  2119. <animation n="243">
  2120. <type type="string">textranslate</type>
  2121. <object-name type="string">Plane.243</object-name>
  2122. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[19]/elevation-ft</property>
  2123. <factor type="double">5.5556e-05</factor>
  2124. <axis>
  2125. <x type="double">1</x>
  2126. </axis>
  2127. </animation>
  2128. <animation n="244">
  2129. <type type="string">textranslate</type>
  2130. <object-name type="string">Plane.244</object-name>
  2131. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[20]/elevation-ft</property>
  2132. <factor type="double">5.5556e-05</factor>
  2133. <axis>
  2134. <x type="double">1</x>
  2135. </axis>
  2136. </animation>
  2137. <animation n="245">
  2138. <type type="string">textranslate</type>
  2139. <object-name type="string">Plane.245</object-name>
  2140. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[21]/elevation-ft</property>
  2141. <factor type="double">5.5556e-05</factor>
  2142. <axis>
  2143. <x type="double">1</x>
  2144. </axis>
  2145. </animation>
  2146. <animation n="246">
  2147. <type type="string">textranslate</type>
  2148. <object-name type="string">Plane.246</object-name>
  2149. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[22]/elevation-ft</property>
  2150. <factor type="double">5.5556e-05</factor>
  2151. <axis>
  2152. <x type="double">1</x>
  2153. </axis>
  2154. </animation>
  2155. <animation n="247">
  2156. <type type="string">textranslate</type>
  2157. <object-name type="string">Plane.247</object-name>
  2158. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[23]/elevation-ft</property>
  2159. <factor type="double">5.5556e-05</factor>
  2160. <axis>
  2161. <x type="double">1</x>
  2162. </axis>
  2163. </animation>
  2164. <animation n="248">
  2165. <type type="string">textranslate</type>
  2166. <object-name type="string">Plane.248</object-name>
  2167. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[24]/elevation-ft</property>
  2168. <factor type="double">5.5556e-05</factor>
  2169. <axis>
  2170. <x type="double">1</x>
  2171. </axis>
  2172. </animation>
  2173. <animation n="249">
  2174. <type type="string">textranslate</type>
  2175. <object-name type="string">Plane.249</object-name>
  2176. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[25]/elevation-ft</property>
  2177. <factor type="double">5.5556e-05</factor>
  2178. <axis>
  2179. <x type="double">1</x>
  2180. </axis>
  2181. </animation>
  2182. <animation n="250">
  2183. <type type="string">textranslate</type>
  2184. <object-name type="string">Plane.250</object-name>
  2185. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[26]/elevation-ft</property>
  2186. <factor type="double">5.5556e-05</factor>
  2187. <axis>
  2188. <x type="double">1</x>
  2189. </axis>
  2190. </animation>
  2191. <animation n="251">
  2192. <type type="string">textranslate</type>
  2193. <object-name type="string">Plane.251</object-name>
  2194. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[27]/elevation-ft</property>
  2195. <factor type="double">5.5556e-05</factor>
  2196. <axis>
  2197. <x type="double">1</x>
  2198. </axis>
  2199. </animation>
  2200. <animation n="252">
  2201. <type type="string">textranslate</type>
  2202. <object-name type="string">Plane.252</object-name>
  2203. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[28]/elevation-ft</property>
  2204. <factor type="double">5.5556e-05</factor>
  2205. <axis>
  2206. <x type="double">1</x>
  2207. </axis>
  2208. </animation>
  2209. <animation n="253">
  2210. <type type="string">textranslate</type>
  2211. <object-name type="string">Plane.253</object-name>
  2212. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[29]/elevation-ft</property>
  2213. <factor type="double">5.5556e-05</factor>
  2214. <axis>
  2215. <x type="double">1</x>
  2216. </axis>
  2217. </animation>
  2218. <animation n="254">
  2219. <type type="string">textranslate</type>
  2220. <object-name type="string">Plane.254</object-name>
  2221. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[30]/elevation-ft</property>
  2222. <factor type="double">5.5556e-05</factor>
  2223. <axis>
  2224. <x type="double">1</x>
  2225. </axis>
  2226. </animation>
  2227. <animation n="255">
  2228. <type type="string">textranslate</type>
  2229. <object-name type="string">Plane.255</object-name>
  2230. <property type="string">/instrumentation/terrain-map/pixels/row[7]/col[31]/elevation-ft</property>
  2231. <factor type="double">5.5556e-05</factor>
  2232. <axis>
  2233. <x type="double">1</x>
  2234. </axis>
  2235. </animation>
  2236. <animation n="257">
  2237. <type type="string">textranslate</type>
  2238. <object-name type="string">Plane.257</object-name>
  2239. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[1]/elevation-ft</property>
  2240. <factor type="double">5.5556e-05</factor>
  2241. <axis>
  2242. <x type="double">1</x>
  2243. </axis>
  2244. </animation>
  2245. <animation n="258">
  2246. <type type="string">textranslate</type>
  2247. <object-name type="string">Plane.258</object-name>
  2248. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[2]/elevation-ft</property>
  2249. <factor type="double">5.5556e-05</factor>
  2250. <axis>
  2251. <x type="double">1</x>
  2252. </axis>
  2253. </animation>
  2254. <animation n="259">
  2255. <type type="string">textranslate</type>
  2256. <object-name type="string">Plane.259</object-name>
  2257. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[3]/elevation-ft</property>
  2258. <factor type="double">5.5556e-05</factor>
  2259. <axis>
  2260. <x type="double">1</x>
  2261. </axis>
  2262. </animation>
  2263. <animation n="260">
  2264. <type type="string">textranslate</type>
  2265. <object-name type="string">Plane.260</object-name>
  2266. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[4]/elevation-ft</property>
  2267. <factor type="double">5.5556e-05</factor>
  2268. <axis>
  2269. <x type="double">1</x>
  2270. </axis>
  2271. </animation>
  2272. <animation n="261">
  2273. <type type="string">textranslate</type>
  2274. <object-name type="string">Plane.261</object-name>
  2275. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[5]/elevation-ft</property>
  2276. <factor type="double">5.5556e-05</factor>
  2277. <axis>
  2278. <x type="double">1</x>
  2279. </axis>
  2280. </animation>
  2281. <animation n="262">
  2282. <type type="string">textranslate</type>
  2283. <object-name type="string">Plane.262</object-name>
  2284. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[6]/elevation-ft</property>
  2285. <factor type="double">5.5556e-05</factor>
  2286. <axis>
  2287. <x type="double">1</x>
  2288. </axis>
  2289. </animation>
  2290. <animation n="263">
  2291. <type type="string">textranslate</type>
  2292. <object-name type="string">Plane.263</object-name>
  2293. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[7]/elevation-ft</property>
  2294. <factor type="double">5.5556e-05</factor>
  2295. <axis>
  2296. <x type="double">1</x>
  2297. </axis>
  2298. </animation>
  2299. <animation n="264">
  2300. <type type="string">textranslate</type>
  2301. <object-name type="string">Plane.264</object-name>
  2302. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[8]/elevation-ft</property>
  2303. <factor type="double">5.5556e-05</factor>
  2304. <axis>
  2305. <x type="double">1</x>
  2306. </axis>
  2307. </animation>
  2308. <animation n="265">
  2309. <type type="string">textranslate</type>
  2310. <object-name type="string">Plane.265</object-name>
  2311. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[9]/elevation-ft</property>
  2312. <factor type="double">5.5556e-05</factor>
  2313. <axis>
  2314. <x type="double">1</x>
  2315. </axis>
  2316. </animation>
  2317. <animation n="266">
  2318. <type type="string">textranslate</type>
  2319. <object-name type="string">Plane.266</object-name>
  2320. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[10]/elevation-ft</property>
  2321. <factor type="double">5.5556e-05</factor>
  2322. <axis>
  2323. <x type="double">1</x>
  2324. </axis>
  2325. </animation>
  2326. <animation n="267">
  2327. <type type="string">textranslate</type>
  2328. <object-name type="string">Plane.267</object-name>
  2329. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[11]/elevation-ft</property>
  2330. <factor type="double">5.5556e-05</factor>
  2331. <axis>
  2332. <x type="double">1</x>
  2333. </axis>
  2334. </animation>
  2335. <animation n="268">
  2336. <type type="string">textranslate</type>
  2337. <object-name type="string">Plane.268</object-name>
  2338. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[12]/elevation-ft</property>
  2339. <factor type="double">5.5556e-05</factor>
  2340. <axis>
  2341. <x type="double">1</x>
  2342. </axis>
  2343. </animation>
  2344. <animation n="269">
  2345. <type type="string">textranslate</type>
  2346. <object-name type="string">Plane.269</object-name>
  2347. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[13]/elevation-ft</property>
  2348. <factor type="double">5.5556e-05</factor>
  2349. <axis>
  2350. <x type="double">1</x>
  2351. </axis>
  2352. </animation>
  2353. <animation n="270">
  2354. <type type="string">textranslate</type>
  2355. <object-name type="string">Plane.270</object-name>
  2356. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[14]/elevation-ft</property>
  2357. <factor type="double">5.5556e-05</factor>
  2358. <axis>
  2359. <x type="double">1</x>
  2360. </axis>
  2361. </animation>
  2362. <animation n="271">
  2363. <type type="string">textranslate</type>
  2364. <object-name type="string">Plane.271</object-name>
  2365. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[15]/elevation-ft</property>
  2366. <factor type="double">5.5556e-05</factor>
  2367. <axis>
  2368. <x type="double">1</x>
  2369. </axis>
  2370. </animation>
  2371. <animation n="272">
  2372. <type type="string">textranslate</type>
  2373. <object-name type="string">Plane.272</object-name>
  2374. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[16]/elevation-ft</property>
  2375. <factor type="double">5.5556e-05</factor>
  2376. <axis>
  2377. <x type="double">1</x>
  2378. </axis>
  2379. </animation>
  2380. <animation n="273">
  2381. <type type="string">textranslate</type>
  2382. <object-name type="string">Plane.273</object-name>
  2383. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[17]/elevation-ft</property>
  2384. <factor type="double">5.5556e-05</factor>
  2385. <axis>
  2386. <x type="double">1</x>
  2387. </axis>
  2388. </animation>
  2389. <animation n="274">
  2390. <type type="string">textranslate</type>
  2391. <object-name type="string">Plane.274</object-name>
  2392. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[18]/elevation-ft</property>
  2393. <factor type="double">5.5556e-05</factor>
  2394. <axis>
  2395. <x type="double">1</x>
  2396. </axis>
  2397. </animation>
  2398. <animation n="275">
  2399. <type type="string">textranslate</type>
  2400. <object-name type="string">Plane.275</object-name>
  2401. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[19]/elevation-ft</property>
  2402. <factor type="double">5.5556e-05</factor>
  2403. <axis>
  2404. <x type="double">1</x>
  2405. </axis>
  2406. </animation>
  2407. <animation n="276">
  2408. <type type="string">textranslate</type>
  2409. <object-name type="string">Plane.276</object-name>
  2410. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[20]/elevation-ft</property>
  2411. <factor type="double">5.5556e-05</factor>
  2412. <axis>
  2413. <x type="double">1</x>
  2414. </axis>
  2415. </animation>
  2416. <animation n="277">
  2417. <type type="string">textranslate</type>
  2418. <object-name type="string">Plane.277</object-name>
  2419. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[21]/elevation-ft</property>
  2420. <factor type="double">5.5556e-05</factor>
  2421. <axis>
  2422. <x type="double">1</x>
  2423. </axis>
  2424. </animation>
  2425. <animation n="278">
  2426. <type type="string">textranslate</type>
  2427. <object-name type="string">Plane.278</object-name>
  2428. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[22]/elevation-ft</property>
  2429. <factor type="double">5.5556e-05</factor>
  2430. <axis>
  2431. <x type="double">1</x>
  2432. </axis>
  2433. </animation>
  2434. <animation n="279">
  2435. <type type="string">textranslate</type>
  2436. <object-name type="string">Plane.279</object-name>
  2437. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[23]/elevation-ft</property>
  2438. <factor type="double">5.5556e-05</factor>
  2439. <axis>
  2440. <x type="double">1</x>
  2441. </axis>
  2442. </animation>
  2443. <animation n="280">
  2444. <type type="string">textranslate</type>
  2445. <object-name type="string">Plane.280</object-name>
  2446. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[24]/elevation-ft</property>
  2447. <factor type="double">5.5556e-05</factor>
  2448. <axis>
  2449. <x type="double">1</x>
  2450. </axis>
  2451. </animation>
  2452. <animation n="281">
  2453. <type type="string">textranslate</type>
  2454. <object-name type="string">Plane.281</object-name>
  2455. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[25]/elevation-ft</property>
  2456. <factor type="double">5.5556e-05</factor>
  2457. <axis>
  2458. <x type="double">1</x>
  2459. </axis>
  2460. </animation>
  2461. <animation n="282">
  2462. <type type="string">textranslate</type>
  2463. <object-name type="string">Plane.282</object-name>
  2464. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[26]/elevation-ft</property>
  2465. <factor type="double">5.5556e-05</factor>
  2466. <axis>
  2467. <x type="double">1</x>
  2468. </axis>
  2469. </animation>
  2470. <animation n="283">
  2471. <type type="string">textranslate</type>
  2472. <object-name type="string">Plane.283</object-name>
  2473. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[27]/elevation-ft</property>
  2474. <factor type="double">5.5556e-05</factor>
  2475. <axis>
  2476. <x type="double">1</x>
  2477. </axis>
  2478. </animation>
  2479. <animation n="284">
  2480. <type type="string">textranslate</type>
  2481. <object-name type="string">Plane.284</object-name>
  2482. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[28]/elevation-ft</property>
  2483. <factor type="double">5.5556e-05</factor>
  2484. <axis>
  2485. <x type="double">1</x>
  2486. </axis>
  2487. </animation>
  2488. <animation n="285">
  2489. <type type="string">textranslate</type>
  2490. <object-name type="string">Plane.285</object-name>
  2491. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[29]/elevation-ft</property>
  2492. <factor type="double">5.5556e-05</factor>
  2493. <axis>
  2494. <x type="double">1</x>
  2495. </axis>
  2496. </animation>
  2497. <animation n="286">
  2498. <type type="string">textranslate</type>
  2499. <object-name type="string">Plane.286</object-name>
  2500. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[30]/elevation-ft</property>
  2501. <factor type="double">5.5556e-05</factor>
  2502. <axis>
  2503. <x type="double">1</x>
  2504. </axis>
  2505. </animation>
  2506. <animation n="287">
  2507. <type type="string">textranslate</type>
  2508. <object-name type="string">Plane.287</object-name>
  2509. <property type="string">/instrumentation/terrain-map/pixels/row[8]/col[31]/elevation-ft</property>
  2510. <factor type="double">5.5556e-05</factor>
  2511. <axis>
  2512. <x type="double">1</x>
  2513. </axis>
  2514. </animation>
  2515. <animation n="289">
  2516. <type type="string">textranslate</type>
  2517. <object-name type="string">Plane.289</object-name>
  2518. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[1]/elevation-ft</property>
  2519. <factor type="double">5.5556e-05</factor>
  2520. <axis>
  2521. <x type="double">1</x>
  2522. </axis>
  2523. </animation>
  2524. <animation n="290">
  2525. <type type="string">textranslate</type>
  2526. <object-name type="string">Plane.290</object-name>
  2527. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[2]/elevation-ft</property>
  2528. <factor type="double">5.5556e-05</factor>
  2529. <axis>
  2530. <x type="double">1</x>
  2531. </axis>
  2532. </animation>
  2533. <animation n="291">
  2534. <type type="string">textranslate</type>
  2535. <object-name type="string">Plane.291</object-name>
  2536. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[3]/elevation-ft</property>
  2537. <factor type="double">5.5556e-05</factor>
  2538. <axis>
  2539. <x type="double">1</x>
  2540. </axis>
  2541. </animation>
  2542. <animation n="292">
  2543. <type type="string">textranslate</type>
  2544. <object-name type="string">Plane.292</object-name>
  2545. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[4]/elevation-ft</property>
  2546. <factor type="double">5.5556e-05</factor>
  2547. <axis>
  2548. <x type="double">1</x>
  2549. </axis>
  2550. </animation>
  2551. <animation n="293">
  2552. <type type="string">textranslate</type>
  2553. <object-name type="string">Plane.293</object-name>
  2554. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[5]/elevation-ft</property>
  2555. <factor type="double">5.5556e-05</factor>
  2556. <axis>
  2557. <x type="double">1</x>
  2558. </axis>
  2559. </animation>
  2560. <animation n="294">
  2561. <type type="string">textranslate</type>
  2562. <object-name type="string">Plane.294</object-name>
  2563. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[6]/elevation-ft</property>
  2564. <factor type="double">5.5556e-05</factor>
  2565. <axis>
  2566. <x type="double">1</x>
  2567. </axis>
  2568. </animation>
  2569. <animation n="295">
  2570. <type type="string">textranslate</type>
  2571. <object-name type="string">Plane.295</object-name>
  2572. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[7]/elevation-ft</property>
  2573. <factor type="double">5.5556e-05</factor>
  2574. <axis>
  2575. <x type="double">1</x>
  2576. </axis>
  2577. </animation>
  2578. <animation n="296">
  2579. <type type="string">textranslate</type>
  2580. <object-name type="string">Plane.296</object-name>
  2581. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[8]/elevation-ft</property>
  2582. <factor type="double">5.5556e-05</factor>
  2583. <axis>
  2584. <x type="double">1</x>
  2585. </axis>
  2586. </animation>
  2587. <animation n="297">
  2588. <type type="string">textranslate</type>
  2589. <object-name type="string">Plane.297</object-name>
  2590. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[9]/elevation-ft</property>
  2591. <factor type="double">5.5556e-05</factor>
  2592. <axis>
  2593. <x type="double">1</x>
  2594. </axis>
  2595. </animation>
  2596. <animation n="298">
  2597. <type type="string">textranslate</type>
  2598. <object-name type="string">Plane.298</object-name>
  2599. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[10]/elevation-ft</property>
  2600. <factor type="double">5.5556e-05</factor>
  2601. <axis>
  2602. <x type="double">1</x>
  2603. </axis>
  2604. </animation>
  2605. <animation n="299">
  2606. <type type="string">textranslate</type>
  2607. <object-name type="string">Plane.299</object-name>
  2608. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[11]/elevation-ft</property>
  2609. <factor type="double">5.5556e-05</factor>
  2610. <axis>
  2611. <x type="double">1</x>
  2612. </axis>
  2613. </animation>
  2614. <animation n="300">
  2615. <type type="string">textranslate</type>
  2616. <object-name type="string">Plane.300</object-name>
  2617. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[12]/elevation-ft</property>
  2618. <factor type="double">5.5556e-05</factor>
  2619. <axis>
  2620. <x type="double">1</x>
  2621. </axis>
  2622. </animation>
  2623. <animation n="301">
  2624. <type type="string">textranslate</type>
  2625. <object-name type="string">Plane.301</object-name>
  2626. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[13]/elevation-ft</property>
  2627. <factor type="double">5.5556e-05</factor>
  2628. <axis>
  2629. <x type="double">1</x>
  2630. </axis>
  2631. </animation>
  2632. <animation n="302">
  2633. <type type="string">textranslate</type>
  2634. <object-name type="string">Plane.302</object-name>
  2635. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[14]/elevation-ft</property>
  2636. <factor type="double">5.5556e-05</factor>
  2637. <axis>
  2638. <x type="double">1</x>
  2639. </axis>
  2640. </animation>
  2641. <animation n="303">
  2642. <type type="string">textranslate</type>
  2643. <object-name type="string">Plane.303</object-name>
  2644. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[15]/elevation-ft</property>
  2645. <factor type="double">5.5556e-05</factor>
  2646. <axis>
  2647. <x type="double">1</x>
  2648. </axis>
  2649. </animation>
  2650. <animation n="304">
  2651. <type type="string">textranslate</type>
  2652. <object-name type="string">Plane.304</object-name>
  2653. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[16]/elevation-ft</property>
  2654. <factor type="double">5.5556e-05</factor>
  2655. <axis>
  2656. <x type="double">1</x>
  2657. </axis>
  2658. </animation>
  2659. <animation n="305">
  2660. <type type="string">textranslate</type>
  2661. <object-name type="string">Plane.305</object-name>
  2662. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[17]/elevation-ft</property>
  2663. <factor type="double">5.5556e-05</factor>
  2664. <axis>
  2665. <x type="double">1</x>
  2666. </axis>
  2667. </animation>
  2668. <animation n="306">
  2669. <type type="string">textranslate</type>
  2670. <object-name type="string">Plane.306</object-name>
  2671. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[18]/elevation-ft</property>
  2672. <factor type="double">5.5556e-05</factor>
  2673. <axis>
  2674. <x type="double">1</x>
  2675. </axis>
  2676. </animation>
  2677. <animation n="307">
  2678. <type type="string">textranslate</type>
  2679. <object-name type="string">Plane.307</object-name>
  2680. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[19]/elevation-ft</property>
  2681. <factor type="double">5.5556e-05</factor>
  2682. <axis>
  2683. <x type="double">1</x>
  2684. </axis>
  2685. </animation>
  2686. <animation n="308">
  2687. <type type="string">textranslate</type>
  2688. <object-name type="string">Plane.308</object-name>
  2689. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[20]/elevation-ft</property>
  2690. <factor type="double">5.5556e-05</factor>
  2691. <axis>
  2692. <x type="double">1</x>
  2693. </axis>
  2694. </animation>
  2695. <animation n="309">
  2696. <type type="string">textranslate</type>
  2697. <object-name type="string">Plane.309</object-name>
  2698. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[21]/elevation-ft</property>
  2699. <factor type="double">5.5556e-05</factor>
  2700. <axis>
  2701. <x type="double">1</x>
  2702. </axis>
  2703. </animation>
  2704. <animation n="310">
  2705. <type type="string">textranslate</type>
  2706. <object-name type="string">Plane.310</object-name>
  2707. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[22]/elevation-ft</property>
  2708. <factor type="double">5.5556e-05</factor>
  2709. <axis>
  2710. <x type="double">1</x>
  2711. </axis>
  2712. </animation>
  2713. <animation n="311">
  2714. <type type="string">textranslate</type>
  2715. <object-name type="string">Plane.311</object-name>
  2716. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[23]/elevation-ft</property>
  2717. <factor type="double">5.5556e-05</factor>
  2718. <axis>
  2719. <x type="double">1</x>
  2720. </axis>
  2721. </animation>
  2722. <animation n="312">
  2723. <type type="string">textranslate</type>
  2724. <object-name type="string">Plane.312</object-name>
  2725. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[24]/elevation-ft</property>
  2726. <factor type="double">5.5556e-05</factor>
  2727. <axis>
  2728. <x type="double">1</x>
  2729. </axis>
  2730. </animation>
  2731. <animation n="313">
  2732. <type type="string">textranslate</type>
  2733. <object-name type="string">Plane.313</object-name>
  2734. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[25]/elevation-ft</property>
  2735. <factor type="double">5.5556e-05</factor>
  2736. <axis>
  2737. <x type="double">1</x>
  2738. </axis>
  2739. </animation>
  2740. <animation n="314">
  2741. <type type="string">textranslate</type>
  2742. <object-name type="string">Plane.314</object-name>
  2743. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[26]/elevation-ft</property>
  2744. <factor type="double">5.5556e-05</factor>
  2745. <axis>
  2746. <x type="double">1</x>
  2747. </axis>
  2748. </animation>
  2749. <animation n="315">
  2750. <type type="string">textranslate</type>
  2751. <object-name type="string">Plane.315</object-name>
  2752. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[27]/elevation-ft</property>
  2753. <factor type="double">5.5556e-05</factor>
  2754. <axis>
  2755. <x type="double">1</x>
  2756. </axis>
  2757. </animation>
  2758. <animation n="316">
  2759. <type type="string">textranslate</type>
  2760. <object-name type="string">Plane.316</object-name>
  2761. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[28]/elevation-ft</property>
  2762. <factor type="double">5.5556e-05</factor>
  2763. <axis>
  2764. <x type="double">1</x>
  2765. </axis>
  2766. </animation>
  2767. <animation n="317">
  2768. <type type="string">textranslate</type>
  2769. <object-name type="string">Plane.317</object-name>
  2770. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[29]/elevation-ft</property>
  2771. <factor type="double">5.5556e-05</factor>
  2772. <axis>
  2773. <x type="double">1</x>
  2774. </axis>
  2775. </animation>
  2776. <animation n="318">
  2777. <type type="string">textranslate</type>
  2778. <object-name type="string">Plane.318</object-name>
  2779. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[30]/elevation-ft</property>
  2780. <factor type="double">5.5556e-05</factor>
  2781. <axis>
  2782. <x type="double">1</x>
  2783. </axis>
  2784. </animation>
  2785. <animation n="319">
  2786. <type type="string">textranslate</type>
  2787. <object-name type="string">Plane.319</object-name>
  2788. <property type="string">/instrumentation/terrain-map/pixels/row[9]/col[31]/elevation-ft</property>
  2789. <factor type="double">5.5556e-05</factor>
  2790. <axis>
  2791. <x type="double">1</x>
  2792. </axis>
  2793. </animation>
  2794. <animation n="321">
  2795. <type type="string">textranslate</type>
  2796. <object-name type="string">Plane.321</object-name>
  2797. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[1]/elevation-ft</property>
  2798. <factor type="double">5.5556e-05</factor>
  2799. <axis>
  2800. <x type="double">1</x>
  2801. </axis>
  2802. </animation>
  2803. <animation n="322">
  2804. <type type="string">textranslate</type>
  2805. <object-name type="string">Plane.322</object-name>
  2806. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[2]/elevation-ft</property>
  2807. <factor type="double">5.5556e-05</factor>
  2808. <axis>
  2809. <x type="double">1</x>
  2810. </axis>
  2811. </animation>
  2812. <animation n="323">
  2813. <type type="string">textranslate</type>
  2814. <object-name type="string">Plane.323</object-name>
  2815. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[3]/elevation-ft</property>
  2816. <factor type="double">5.5556e-05</factor>
  2817. <axis>
  2818. <x type="double">1</x>
  2819. </axis>
  2820. </animation>
  2821. <animation n="324">
  2822. <type type="string">textranslate</type>
  2823. <object-name type="string">Plane.324</object-name>
  2824. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[4]/elevation-ft</property>
  2825. <factor type="double">5.5556e-05</factor>
  2826. <axis>
  2827. <x type="double">1</x>
  2828. </axis>
  2829. </animation>
  2830. <animation n="325">
  2831. <type type="string">textranslate</type>
  2832. <object-name type="string">Plane.325</object-name>
  2833. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[5]/elevation-ft</property>
  2834. <factor type="double">5.5556e-05</factor>
  2835. <axis>
  2836. <x type="double">1</x>
  2837. </axis>
  2838. </animation>
  2839. <animation n="326">
  2840. <type type="string">textranslate</type>
  2841. <object-name type="string">Plane.326</object-name>
  2842. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[6]/elevation-ft</property>
  2843. <factor type="double">5.5556e-05</factor>
  2844. <axis>
  2845. <x type="double">1</x>
  2846. </axis>
  2847. </animation>
  2848. <animation n="327">
  2849. <type type="string">textranslate</type>
  2850. <object-name type="string">Plane.327</object-name>
  2851. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[7]/elevation-ft</property>
  2852. <factor type="double">5.5556e-05</factor>
  2853. <axis>
  2854. <x type="double">1</x>
  2855. </axis>
  2856. </animation>
  2857. <animation n="328">
  2858. <type type="string">textranslate</type>
  2859. <object-name type="string">Plane.328</object-name>
  2860. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[8]/elevation-ft</property>
  2861. <factor type="double">5.5556e-05</factor>
  2862. <axis>
  2863. <x type="double">1</x>
  2864. </axis>
  2865. </animation>
  2866. <animation n="329">
  2867. <type type="string">textranslate</type>
  2868. <object-name type="string">Plane.329</object-name>
  2869. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[9]/elevation-ft</property>
  2870. <factor type="double">5.5556e-05</factor>
  2871. <axis>
  2872. <x type="double">1</x>
  2873. </axis>
  2874. </animation>
  2875. <animation n="330">
  2876. <type type="string">textranslate</type>
  2877. <object-name type="string">Plane.330</object-name>
  2878. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[10]/elevation-ft</property>
  2879. <factor type="double">5.5556e-05</factor>
  2880. <axis>
  2881. <x type="double">1</x>
  2882. </axis>
  2883. </animation>
  2884. <animation n="331">
  2885. <type type="string">textranslate</type>
  2886. <object-name type="string">Plane.331</object-name>
  2887. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[11]/elevation-ft</property>
  2888. <factor type="double">5.5556e-05</factor>
  2889. <axis>
  2890. <x type="double">1</x>
  2891. </axis>
  2892. </animation>
  2893. <animation n="332">
  2894. <type type="string">textranslate</type>
  2895. <object-name type="string">Plane.332</object-name>
  2896. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[12]/elevation-ft</property>
  2897. <factor type="double">5.5556e-05</factor>
  2898. <axis>
  2899. <x type="double">1</x>
  2900. </axis>
  2901. </animation>
  2902. <animation n="333">
  2903. <type type="string">textranslate</type>
  2904. <object-name type="string">Plane.333</object-name>
  2905. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[13]/elevation-ft</property>
  2906. <factor type="double">5.5556e-05</factor>
  2907. <axis>
  2908. <x type="double">1</x>
  2909. </axis>
  2910. </animation>
  2911. <animation n="334">
  2912. <type type="string">textranslate</type>
  2913. <object-name type="string">Plane.334</object-name>
  2914. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[14]/elevation-ft</property>
  2915. <factor type="double">5.5556e-05</factor>
  2916. <axis>
  2917. <x type="double">1</x>
  2918. </axis>
  2919. </animation>
  2920. <animation n="335">
  2921. <type type="string">textranslate</type>
  2922. <object-name type="string">Plane.335</object-name>
  2923. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[15]/elevation-ft</property>
  2924. <factor type="double">5.5556e-05</factor>
  2925. <axis>
  2926. <x type="double">1</x>
  2927. </axis>
  2928. </animation>
  2929. <animation n="336">
  2930. <type type="string">textranslate</type>
  2931. <object-name type="string">Plane.336</object-name>
  2932. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[16]/elevation-ft</property>
  2933. <factor type="double">5.5556e-05</factor>
  2934. <axis>
  2935. <x type="double">1</x>
  2936. </axis>
  2937. </animation>
  2938. <animation n="337">
  2939. <type type="string">textranslate</type>
  2940. <object-name type="string">Plane.337</object-name>
  2941. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[17]/elevation-ft</property>
  2942. <factor type="double">5.5556e-05</factor>
  2943. <axis>
  2944. <x type="double">1</x>
  2945. </axis>
  2946. </animation>
  2947. <animation n="338">
  2948. <type type="string">textranslate</type>
  2949. <object-name type="string">Plane.338</object-name>
  2950. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[18]/elevation-ft</property>
  2951. <factor type="double">5.5556e-05</factor>
  2952. <axis>
  2953. <x type="double">1</x>
  2954. </axis>
  2955. </animation>
  2956. <animation n="339">
  2957. <type type="string">textranslate</type>
  2958. <object-name type="string">Plane.339</object-name>
  2959. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[19]/elevation-ft</property>
  2960. <factor type="double">5.5556e-05</factor>
  2961. <axis>
  2962. <x type="double">1</x>
  2963. </axis>
  2964. </animation>
  2965. <animation n="340">
  2966. <type type="string">textranslate</type>
  2967. <object-name type="string">Plane.340</object-name>
  2968. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[20]/elevation-ft</property>
  2969. <factor type="double">5.5556e-05</factor>
  2970. <axis>
  2971. <x type="double">1</x>
  2972. </axis>
  2973. </animation>
  2974. <animation n="341">
  2975. <type type="string">textranslate</type>
  2976. <object-name type="string">Plane.341</object-name>
  2977. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[21]/elevation-ft</property>
  2978. <factor type="double">5.5556e-05</factor>
  2979. <axis>
  2980. <x type="double">1</x>
  2981. </axis>
  2982. </animation>
  2983. <animation n="342">
  2984. <type type="string">textranslate</type>
  2985. <object-name type="string">Plane.342</object-name>
  2986. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[22]/elevation-ft</property>
  2987. <factor type="double">5.5556e-05</factor>
  2988. <axis>
  2989. <x type="double">1</x>
  2990. </axis>
  2991. </animation>
  2992. <animation n="343">
  2993. <type type="string">textranslate</type>
  2994. <object-name type="string">Plane.343</object-name>
  2995. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[23]/elevation-ft</property>
  2996. <factor type="double">5.5556e-05</factor>
  2997. <axis>
  2998. <x type="double">1</x>
  2999. </axis>
  3000. </animation>
  3001. <animation n="344">
  3002. <type type="string">textranslate</type>
  3003. <object-name type="string">Plane.344</object-name>
  3004. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[24]/elevation-ft</property>
  3005. <factor type="double">5.5556e-05</factor>
  3006. <axis>
  3007. <x type="double">1</x>
  3008. </axis>
  3009. </animation>
  3010. <animation n="345">
  3011. <type type="string">textranslate</type>
  3012. <object-name type="string">Plane.345</object-name>
  3013. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[25]/elevation-ft</property>
  3014. <factor type="double">5.5556e-05</factor>
  3015. <axis>
  3016. <x type="double">1</x>
  3017. </axis>
  3018. </animation>
  3019. <animation n="346">
  3020. <type type="string">textranslate</type>
  3021. <object-name type="string">Plane.346</object-name>
  3022. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[26]/elevation-ft</property>
  3023. <factor type="double">5.5556e-05</factor>
  3024. <axis>
  3025. <x type="double">1</x>
  3026. </axis>
  3027. </animation>
  3028. <animation n="347">
  3029. <type type="string">textranslate</type>
  3030. <object-name type="string">Plane.347</object-name>
  3031. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[27]/elevation-ft</property>
  3032. <factor type="double">5.5556e-05</factor>
  3033. <axis>
  3034. <x type="double">1</x>
  3035. </axis>
  3036. </animation>
  3037. <animation n="348">
  3038. <type type="string">textranslate</type>
  3039. <object-name type="string">Plane.348</object-name>
  3040. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[28]/elevation-ft</property>
  3041. <factor type="double">5.5556e-05</factor>
  3042. <axis>
  3043. <x type="double">1</x>
  3044. </axis>
  3045. </animation>
  3046. <animation n="349">
  3047. <type type="string">textranslate</type>
  3048. <object-name type="string">Plane.349</object-name>
  3049. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[29]/elevation-ft</property>
  3050. <factor type="double">5.5556e-05</factor>
  3051. <axis>
  3052. <x type="double">1</x>
  3053. </axis>
  3054. </animation>
  3055. <animation n="350">
  3056. <type type="string">textranslate</type>
  3057. <object-name type="string">Plane.350</object-name>
  3058. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[30]/elevation-ft</property>
  3059. <factor type="double">5.5556e-05</factor>
  3060. <axis>
  3061. <x type="double">1</x>
  3062. </axis>
  3063. </animation>
  3064. <animation n="351">
  3065. <type type="string">textranslate</type>
  3066. <object-name type="string">Plane.351</object-name>
  3067. <property type="string">/instrumentation/terrain-map/pixels/row[10]/col[31]/elevation-ft</property>
  3068. <factor type="double">5.5556e-05</factor>
  3069. <axis>
  3070. <x type="double">1</x>
  3071. </axis>
  3072. </animation>
  3073. <animation n="353">
  3074. <type type="string">textranslate</type>
  3075. <object-name type="string">Plane.353</object-name>
  3076. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[1]/elevation-ft</property>
  3077. <factor type="double">5.5556e-05</factor>
  3078. <axis>
  3079. <x type="double">1</x>
  3080. </axis>
  3081. </animation>
  3082. <animation n="354">
  3083. <type type="string">textranslate</type>
  3084. <object-name type="string">Plane.354</object-name>
  3085. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[2]/elevation-ft</property>
  3086. <factor type="double">5.5556e-05</factor>
  3087. <axis>
  3088. <x type="double">1</x>
  3089. </axis>
  3090. </animation>
  3091. <animation n="355">
  3092. <type type="string">textranslate</type>
  3093. <object-name type="string">Plane.355</object-name>
  3094. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[3]/elevation-ft</property>
  3095. <factor type="double">5.5556e-05</factor>
  3096. <axis>
  3097. <x type="double">1</x>
  3098. </axis>
  3099. </animation>
  3100. <animation n="356">
  3101. <type type="string">textranslate</type>
  3102. <object-name type="string">Plane.356</object-name>
  3103. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[4]/elevation-ft</property>
  3104. <factor type="double">5.5556e-05</factor>
  3105. <axis>
  3106. <x type="double">1</x>
  3107. </axis>
  3108. </animation>
  3109. <animation n="357">
  3110. <type type="string">textranslate</type>
  3111. <object-name type="string">Plane.357</object-name>
  3112. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[5]/elevation-ft</property>
  3113. <factor type="double">5.5556e-05</factor>
  3114. <axis>
  3115. <x type="double">1</x>
  3116. </axis>
  3117. </animation>
  3118. <animation n="358">
  3119. <type type="string">textranslate</type>
  3120. <object-name type="string">Plane.358</object-name>
  3121. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[6]/elevation-ft</property>
  3122. <factor type="double">5.5556e-05</factor>
  3123. <axis>
  3124. <x type="double">1</x>
  3125. </axis>
  3126. </animation>
  3127. <animation n="359">
  3128. <type type="string">textranslate</type>
  3129. <object-name type="string">Plane.359</object-name>
  3130. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[7]/elevation-ft</property>
  3131. <factor type="double">5.5556e-05</factor>
  3132. <axis>
  3133. <x type="double">1</x>
  3134. </axis>
  3135. </animation>
  3136. <animation n="360">
  3137. <type type="string">textranslate</type>
  3138. <object-name type="string">Plane.360</object-name>
  3139. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[8]/elevation-ft</property>
  3140. <factor type="double">5.5556e-05</factor>
  3141. <axis>
  3142. <x type="double">1</x>
  3143. </axis>
  3144. </animation>
  3145. <animation n="361">
  3146. <type type="string">textranslate</type>
  3147. <object-name type="string">Plane.361</object-name>
  3148. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[9]/elevation-ft</property>
  3149. <factor type="double">5.5556e-05</factor>
  3150. <axis>
  3151. <x type="double">1</x>
  3152. </axis>
  3153. </animation>
  3154. <animation n="362">
  3155. <type type="string">textranslate</type>
  3156. <object-name type="string">Plane.362</object-name>
  3157. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[10]/elevation-ft</property>
  3158. <factor type="double">5.5556e-05</factor>
  3159. <axis>
  3160. <x type="double">1</x>
  3161. </axis>
  3162. </animation>
  3163. <animation n="363">
  3164. <type type="string">textranslate</type>
  3165. <object-name type="string">Plane.363</object-name>
  3166. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[11]/elevation-ft</property>
  3167. <factor type="double">5.5556e-05</factor>
  3168. <axis>
  3169. <x type="double">1</x>
  3170. </axis>
  3171. </animation>
  3172. <animation n="364">
  3173. <type type="string">textranslate</type>
  3174. <object-name type="string">Plane.364</object-name>
  3175. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[12]/elevation-ft</property>
  3176. <factor type="double">5.5556e-05</factor>
  3177. <axis>
  3178. <x type="double">1</x>
  3179. </axis>
  3180. </animation>
  3181. <animation n="365">
  3182. <type type="string">textranslate</type>
  3183. <object-name type="string">Plane.365</object-name>
  3184. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[13]/elevation-ft</property>
  3185. <factor type="double">5.5556e-05</factor>
  3186. <axis>
  3187. <x type="double">1</x>
  3188. </axis>
  3189. </animation>
  3190. <animation n="366">
  3191. <type type="string">textranslate</type>
  3192. <object-name type="string">Plane.366</object-name>
  3193. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[14]/elevation-ft</property>
  3194. <factor type="double">5.5556e-05</factor>
  3195. <axis>
  3196. <x type="double">1</x>
  3197. </axis>
  3198. </animation>
  3199. <animation n="367">
  3200. <type type="string">textranslate</type>
  3201. <object-name type="string">Plane.367</object-name>
  3202. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[15]/elevation-ft</property>
  3203. <factor type="double">5.5556e-05</factor>
  3204. <axis>
  3205. <x type="double">1</x>
  3206. </axis>
  3207. </animation>
  3208. <animation n="368">
  3209. <type type="string">textranslate</type>
  3210. <object-name type="string">Plane.368</object-name>
  3211. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[16]/elevation-ft</property>
  3212. <factor type="double">5.5556e-05</factor>
  3213. <axis>
  3214. <x type="double">1</x>
  3215. </axis>
  3216. </animation>
  3217. <animation n="369">
  3218. <type type="string">textranslate</type>
  3219. <object-name type="string">Plane.369</object-name>
  3220. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[17]/elevation-ft</property>
  3221. <factor type="double">5.5556e-05</factor>
  3222. <axis>
  3223. <x type="double">1</x>
  3224. </axis>
  3225. </animation>
  3226. <animation n="370">
  3227. <type type="string">textranslate</type>
  3228. <object-name type="string">Plane.370</object-name>
  3229. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[18]/elevation-ft</property>
  3230. <factor type="double">5.5556e-05</factor>
  3231. <axis>
  3232. <x type="double">1</x>
  3233. </axis>
  3234. </animation>
  3235. <animation n="371">
  3236. <type type="string">textranslate</type>
  3237. <object-name type="string">Plane.371</object-name>
  3238. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[19]/elevation-ft</property>
  3239. <factor type="double">5.5556e-05</factor>
  3240. <axis>
  3241. <x type="double">1</x>
  3242. </axis>
  3243. </animation>
  3244. <animation n="372">
  3245. <type type="string">textranslate</type>
  3246. <object-name type="string">Plane.372</object-name>
  3247. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[20]/elevation-ft</property>
  3248. <factor type="double">5.5556e-05</factor>
  3249. <axis>
  3250. <x type="double">1</x>
  3251. </axis>
  3252. </animation>
  3253. <animation n="373">
  3254. <type type="string">textranslate</type>
  3255. <object-name type="string">Plane.373</object-name>
  3256. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[21]/elevation-ft</property>
  3257. <factor type="double">5.5556e-05</factor>
  3258. <axis>
  3259. <x type="double">1</x>
  3260. </axis>
  3261. </animation>
  3262. <animation n="374">
  3263. <type type="string">textranslate</type>
  3264. <object-name type="string">Plane.374</object-name>
  3265. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[22]/elevation-ft</property>
  3266. <factor type="double">5.5556e-05</factor>
  3267. <axis>
  3268. <x type="double">1</x>
  3269. </axis>
  3270. </animation>
  3271. <animation n="375">
  3272. <type type="string">textranslate</type>
  3273. <object-name type="string">Plane.375</object-name>
  3274. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[23]/elevation-ft</property>
  3275. <factor type="double">5.5556e-05</factor>
  3276. <axis>
  3277. <x type="double">1</x>
  3278. </axis>
  3279. </animation>
  3280. <animation n="376">
  3281. <type type="string">textranslate</type>
  3282. <object-name type="string">Plane.376</object-name>
  3283. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[24]/elevation-ft</property>
  3284. <factor type="double">5.5556e-05</factor>
  3285. <axis>
  3286. <x type="double">1</x>
  3287. </axis>
  3288. </animation>
  3289. <animation n="377">
  3290. <type type="string">textranslate</type>
  3291. <object-name type="string">Plane.377</object-name>
  3292. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[25]/elevation-ft</property>
  3293. <factor type="double">5.5556e-05</factor>
  3294. <axis>
  3295. <x type="double">1</x>
  3296. </axis>
  3297. </animation>
  3298. <animation n="378">
  3299. <type type="string">textranslate</type>
  3300. <object-name type="string">Plane.378</object-name>
  3301. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[26]/elevation-ft</property>
  3302. <factor type="double">5.5556e-05</factor>
  3303. <axis>
  3304. <x type="double">1</x>
  3305. </axis>
  3306. </animation>
  3307. <animation n="379">
  3308. <type type="string">textranslate</type>
  3309. <object-name type="string">Plane.379</object-name>
  3310. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[27]/elevation-ft</property>
  3311. <factor type="double">5.5556e-05</factor>
  3312. <axis>
  3313. <x type="double">1</x>
  3314. </axis>
  3315. </animation>
  3316. <animation n="380">
  3317. <type type="string">textranslate</type>
  3318. <object-name type="string">Plane.380</object-name>
  3319. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[28]/elevation-ft</property>
  3320. <factor type="double">5.5556e-05</factor>
  3321. <axis>
  3322. <x type="double">1</x>
  3323. </axis>
  3324. </animation>
  3325. <animation n="381">
  3326. <type type="string">textranslate</type>
  3327. <object-name type="string">Plane.381</object-name>
  3328. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[29]/elevation-ft</property>
  3329. <factor type="double">5.5556e-05</factor>
  3330. <axis>
  3331. <x type="double">1</x>
  3332. </axis>
  3333. </animation>
  3334. <animation n="382">
  3335. <type type="string">textranslate</type>
  3336. <object-name type="string">Plane.382</object-name>
  3337. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[30]/elevation-ft</property>
  3338. <factor type="double">5.5556e-05</factor>
  3339. <axis>
  3340. <x type="double">1</x>
  3341. </axis>
  3342. </animation>
  3343. <animation n="383">
  3344. <type type="string">textranslate</type>
  3345. <object-name type="string">Plane.383</object-name>
  3346. <property type="string">/instrumentation/terrain-map/pixels/row[11]/col[31]/elevation-ft</property>
  3347. <factor type="double">5.5556e-05</factor>
  3348. <axis>
  3349. <x type="double">1</x>
  3350. </axis>
  3351. </animation>
  3352. <animation n="385">
  3353. <type type="string">textranslate</type>
  3354. <object-name type="string">Plane.385</object-name>
  3355. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[1]/elevation-ft</property>
  3356. <factor type="double">5.5556e-05</factor>
  3357. <axis>
  3358. <x type="double">1</x>
  3359. </axis>
  3360. </animation>
  3361. <animation n="386">
  3362. <type type="string">textranslate</type>
  3363. <object-name type="string">Plane.386</object-name>
  3364. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[2]/elevation-ft</property>
  3365. <factor type="double">5.5556e-05</factor>
  3366. <axis>
  3367. <x type="double">1</x>
  3368. </axis>
  3369. </animation>
  3370. <animation n="387">
  3371. <type type="string">textranslate</type>
  3372. <object-name type="string">Plane.387</object-name>
  3373. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[3]/elevation-ft</property>
  3374. <factor type="double">5.5556e-05</factor>
  3375. <axis>
  3376. <x type="double">1</x>
  3377. </axis>
  3378. </animation>
  3379. <animation n="388">
  3380. <type type="string">textranslate</type>
  3381. <object-name type="string">Plane.388</object-name>
  3382. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[4]/elevation-ft</property>
  3383. <factor type="double">5.5556e-05</factor>
  3384. <axis>
  3385. <x type="double">1</x>
  3386. </axis>
  3387. </animation>
  3388. <animation n="389">
  3389. <type type="string">textranslate</type>
  3390. <object-name type="string">Plane.389</object-name>
  3391. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[5]/elevation-ft</property>
  3392. <factor type="double">5.5556e-05</factor>
  3393. <axis>
  3394. <x type="double">1</x>
  3395. </axis>
  3396. </animation>
  3397. <animation n="390">
  3398. <type type="string">textranslate</type>
  3399. <object-name type="string">Plane.390</object-name>
  3400. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[6]/elevation-ft</property>
  3401. <factor type="double">5.5556e-05</factor>
  3402. <axis>
  3403. <x type="double">1</x>
  3404. </axis>
  3405. </animation>
  3406. <animation n="391">
  3407. <type type="string">textranslate</type>
  3408. <object-name type="string">Plane.391</object-name>
  3409. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[7]/elevation-ft</property>
  3410. <factor type="double">5.5556e-05</factor>
  3411. <axis>
  3412. <x type="double">1</x>
  3413. </axis>
  3414. </animation>
  3415. <animation n="392">
  3416. <type type="string">textranslate</type>
  3417. <object-name type="string">Plane.392</object-name>
  3418. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[8]/elevation-ft</property>
  3419. <factor type="double">5.5556e-05</factor>
  3420. <axis>
  3421. <x type="double">1</x>
  3422. </axis>
  3423. </animation>
  3424. <animation n="393">
  3425. <type type="string">textranslate</type>
  3426. <object-name type="string">Plane.393</object-name>
  3427. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[9]/elevation-ft</property>
  3428. <factor type="double">5.5556e-05</factor>
  3429. <axis>
  3430. <x type="double">1</x>
  3431. </axis>
  3432. </animation>
  3433. <animation n="394">
  3434. <type type="string">textranslate</type>
  3435. <object-name type="string">Plane.394</object-name>
  3436. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[10]/elevation-ft</property>
  3437. <factor type="double">5.5556e-05</factor>
  3438. <axis>
  3439. <x type="double">1</x>
  3440. </axis>
  3441. </animation>
  3442. <animation n="395">
  3443. <type type="string">textranslate</type>
  3444. <object-name type="string">Plane.395</object-name>
  3445. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[11]/elevation-ft</property>
  3446. <factor type="double">5.5556e-05</factor>
  3447. <axis>
  3448. <x type="double">1</x>
  3449. </axis>
  3450. </animation>
  3451. <animation n="396">
  3452. <type type="string">textranslate</type>
  3453. <object-name type="string">Plane.396</object-name>
  3454. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[12]/elevation-ft</property>
  3455. <factor type="double">5.5556e-05</factor>
  3456. <axis>
  3457. <x type="double">1</x>
  3458. </axis>
  3459. </animation>
  3460. <animation n="397">
  3461. <type type="string">textranslate</type>
  3462. <object-name type="string">Plane.397</object-name>
  3463. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[13]/elevation-ft</property>
  3464. <factor type="double">5.5556e-05</factor>
  3465. <axis>
  3466. <x type="double">1</x>
  3467. </axis>
  3468. </animation>
  3469. <animation n="398">
  3470. <type type="string">textranslate</type>
  3471. <object-name type="string">Plane.398</object-name>
  3472. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[14]/elevation-ft</property>
  3473. <factor type="double">5.5556e-05</factor>
  3474. <axis>
  3475. <x type="double">1</x>
  3476. </axis>
  3477. </animation>
  3478. <animation n="399">
  3479. <type type="string">textranslate</type>
  3480. <object-name type="string">Plane.399</object-name>
  3481. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[15]/elevation-ft</property>
  3482. <factor type="double">5.5556e-05</factor>
  3483. <axis>
  3484. <x type="double">1</x>
  3485. </axis>
  3486. </animation>
  3487. <animation n="400">
  3488. <type type="string">textranslate</type>
  3489. <object-name type="string">Plane.400</object-name>
  3490. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[16]/elevation-ft</property>
  3491. <factor type="double">5.5556e-05</factor>
  3492. <axis>
  3493. <x type="double">1</x>
  3494. </axis>
  3495. </animation>
  3496. <animation n="401">
  3497. <type type="string">textranslate</type>
  3498. <object-name type="string">Plane.401</object-name>
  3499. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[17]/elevation-ft</property>
  3500. <factor type="double">5.5556e-05</factor>
  3501. <axis>
  3502. <x type="double">1</x>
  3503. </axis>
  3504. </animation>
  3505. <animation n="402">
  3506. <type type="string">textranslate</type>
  3507. <object-name type="string">Plane.402</object-name>
  3508. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[18]/elevation-ft</property>
  3509. <factor type="double">5.5556e-05</factor>
  3510. <axis>
  3511. <x type="double">1</x>
  3512. </axis>
  3513. </animation>
  3514. <animation n="403">
  3515. <type type="string">textranslate</type>
  3516. <object-name type="string">Plane.403</object-name>
  3517. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[19]/elevation-ft</property>
  3518. <factor type="double">5.5556e-05</factor>
  3519. <axis>
  3520. <x type="double">1</x>
  3521. </axis>
  3522. </animation>
  3523. <animation n="404">
  3524. <type type="string">textranslate</type>
  3525. <object-name type="string">Plane.404</object-name>
  3526. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[20]/elevation-ft</property>
  3527. <factor type="double">5.5556e-05</factor>
  3528. <axis>
  3529. <x type="double">1</x>
  3530. </axis>
  3531. </animation>
  3532. <animation n="405">
  3533. <type type="string">textranslate</type>
  3534. <object-name type="string">Plane.405</object-name>
  3535. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[21]/elevation-ft</property>
  3536. <factor type="double">5.5556e-05</factor>
  3537. <axis>
  3538. <x type="double">1</x>
  3539. </axis>
  3540. </animation>
  3541. <animation n="406">
  3542. <type type="string">textranslate</type>
  3543. <object-name type="string">Plane.406</object-name>
  3544. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[22]/elevation-ft</property>
  3545. <factor type="double">5.5556e-05</factor>
  3546. <axis>
  3547. <x type="double">1</x>
  3548. </axis>
  3549. </animation>
  3550. <animation n="407">
  3551. <type type="string">textranslate</type>
  3552. <object-name type="string">Plane.407</object-name>
  3553. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[23]/elevation-ft</property>
  3554. <factor type="double">5.5556e-05</factor>
  3555. <axis>
  3556. <x type="double">1</x>
  3557. </axis>
  3558. </animation>
  3559. <animation n="408">
  3560. <type type="string">textranslate</type>
  3561. <object-name type="string">Plane.408</object-name>
  3562. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[24]/elevation-ft</property>
  3563. <factor type="double">5.5556e-05</factor>
  3564. <axis>
  3565. <x type="double">1</x>
  3566. </axis>
  3567. </animation>
  3568. <animation n="409">
  3569. <type type="string">textranslate</type>
  3570. <object-name type="string">Plane.409</object-name>
  3571. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[25]/elevation-ft</property>
  3572. <factor type="double">5.5556e-05</factor>
  3573. <axis>
  3574. <x type="double">1</x>
  3575. </axis>
  3576. </animation>
  3577. <animation n="410">
  3578. <type type="string">textranslate</type>
  3579. <object-name type="string">Plane.410</object-name>
  3580. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[26]/elevation-ft</property>
  3581. <factor type="double">5.5556e-05</factor>
  3582. <axis>
  3583. <x type="double">1</x>
  3584. </axis>
  3585. </animation>
  3586. <animation n="411">
  3587. <type type="string">textranslate</type>
  3588. <object-name type="string">Plane.411</object-name>
  3589. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[27]/elevation-ft</property>
  3590. <factor type="double">5.5556e-05</factor>
  3591. <axis>
  3592. <x type="double">1</x>
  3593. </axis>
  3594. </animation>
  3595. <animation n="412">
  3596. <type type="string">textranslate</type>
  3597. <object-name type="string">Plane.412</object-name>
  3598. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[28]/elevation-ft</property>
  3599. <factor type="double">5.5556e-05</factor>
  3600. <axis>
  3601. <x type="double">1</x>
  3602. </axis>
  3603. </animation>
  3604. <animation n="413">
  3605. <type type="string">textranslate</type>
  3606. <object-name type="string">Plane.413</object-name>
  3607. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[29]/elevation-ft</property>
  3608. <factor type="double">5.5556e-05</factor>
  3609. <axis>
  3610. <x type="double">1</x>
  3611. </axis>
  3612. </animation>
  3613. <animation n="414">
  3614. <type type="string">textranslate</type>
  3615. <object-name type="string">Plane.414</object-name>
  3616. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[30]/elevation-ft</property>
  3617. <factor type="double">5.5556e-05</factor>
  3618. <axis>
  3619. <x type="double">1</x>
  3620. </axis>
  3621. </animation>
  3622. <animation n="415">
  3623. <type type="string">textranslate</type>
  3624. <object-name type="string">Plane.415</object-name>
  3625. <property type="string">/instrumentation/terrain-map/pixels/row[12]/col[31]/elevation-ft</property>
  3626. <factor type="double">5.5556e-05</factor>
  3627. <axis>
  3628. <x type="double">1</x>
  3629. </axis>
  3630. </animation>
  3631. <animation n="417">
  3632. <type type="string">textranslate</type>
  3633. <object-name type="string">Plane.417</object-name>
  3634. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[1]/elevation-ft</property>
  3635. <factor type="double">5.5556e-05</factor>
  3636. <axis>
  3637. <x type="double">1</x>
  3638. </axis>
  3639. </animation>
  3640. <animation n="418">
  3641. <type type="string">textranslate</type>
  3642. <object-name type="string">Plane.418</object-name>
  3643. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[2]/elevation-ft</property>
  3644. <factor type="double">5.5556e-05</factor>
  3645. <axis>
  3646. <x type="double">1</x>
  3647. </axis>
  3648. </animation>
  3649. <animation n="419">
  3650. <type type="string">textranslate</type>
  3651. <object-name type="string">Plane.419</object-name>
  3652. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[3]/elevation-ft</property>
  3653. <factor type="double">5.5556e-05</factor>
  3654. <axis>
  3655. <x type="double">1</x>
  3656. </axis>
  3657. </animation>
  3658. <animation n="420">
  3659. <type type="string">textranslate</type>
  3660. <object-name type="string">Plane.420</object-name>
  3661. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[4]/elevation-ft</property>
  3662. <factor type="double">5.5556e-05</factor>
  3663. <axis>
  3664. <x type="double">1</x>
  3665. </axis>
  3666. </animation>
  3667. <animation n="421">
  3668. <type type="string">textranslate</type>
  3669. <object-name type="string">Plane.421</object-name>
  3670. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[5]/elevation-ft</property>
  3671. <factor type="double">5.5556e-05</factor>
  3672. <axis>
  3673. <x type="double">1</x>
  3674. </axis>
  3675. </animation>
  3676. <animation n="422">
  3677. <type type="string">textranslate</type>
  3678. <object-name type="string">Plane.422</object-name>
  3679. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[6]/elevation-ft</property>
  3680. <factor type="double">5.5556e-05</factor>
  3681. <axis>
  3682. <x type="double">1</x>
  3683. </axis>
  3684. </animation>
  3685. <animation n="423">
  3686. <type type="string">textranslate</type>
  3687. <object-name type="string">Plane.423</object-name>
  3688. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[7]/elevation-ft</property>
  3689. <factor type="double">5.5556e-05</factor>
  3690. <axis>
  3691. <x type="double">1</x>
  3692. </axis>
  3693. </animation>
  3694. <animation n="424">
  3695. <type type="string">textranslate</type>
  3696. <object-name type="string">Plane.424</object-name>
  3697. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[8]/elevation-ft</property>
  3698. <factor type="double">5.5556e-05</factor>
  3699. <axis>
  3700. <x type="double">1</x>
  3701. </axis>
  3702. </animation>
  3703. <animation n="425">
  3704. <type type="string">textranslate</type>
  3705. <object-name type="string">Plane.425</object-name>
  3706. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[9]/elevation-ft</property>
  3707. <factor type="double">5.5556e-05</factor>
  3708. <axis>
  3709. <x type="double">1</x>
  3710. </axis>
  3711. </animation>
  3712. <animation n="426">
  3713. <type type="string">textranslate</type>
  3714. <object-name type="string">Plane.426</object-name>
  3715. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[10]/elevation-ft</property>
  3716. <factor type="double">5.5556e-05</factor>
  3717. <axis>
  3718. <x type="double">1</x>
  3719. </axis>
  3720. </animation>
  3721. <animation n="427">
  3722. <type type="string">textranslate</type>
  3723. <object-name type="string">Plane.427</object-name>
  3724. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[11]/elevation-ft</property>
  3725. <factor type="double">5.5556e-05</factor>
  3726. <axis>
  3727. <x type="double">1</x>
  3728. </axis>
  3729. </animation>
  3730. <animation n="428">
  3731. <type type="string">textranslate</type>
  3732. <object-name type="string">Plane.428</object-name>
  3733. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[12]/elevation-ft</property>
  3734. <factor type="double">5.5556e-05</factor>
  3735. <axis>
  3736. <x type="double">1</x>
  3737. </axis>
  3738. </animation>
  3739. <animation n="429">
  3740. <type type="string">textranslate</type>
  3741. <object-name type="string">Plane.429</object-name>
  3742. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[13]/elevation-ft</property>
  3743. <factor type="double">5.5556e-05</factor>
  3744. <axis>
  3745. <x type="double">1</x>
  3746. </axis>
  3747. </animation>
  3748. <animation n="430">
  3749. <type type="string">textranslate</type>
  3750. <object-name type="string">Plane.430</object-name>
  3751. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[14]/elevation-ft</property>
  3752. <factor type="double">5.5556e-05</factor>
  3753. <axis>
  3754. <x type="double">1</x>
  3755. </axis>
  3756. </animation>
  3757. <animation n="431">
  3758. <type type="string">textranslate</type>
  3759. <object-name type="string">Plane.431</object-name>
  3760. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[15]/elevation-ft</property>
  3761. <factor type="double">5.5556e-05</factor>
  3762. <axis>
  3763. <x type="double">1</x>
  3764. </axis>
  3765. </animation>
  3766. <animation n="432">
  3767. <type type="string">textranslate</type>
  3768. <object-name type="string">Plane.432</object-name>
  3769. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[16]/elevation-ft</property>
  3770. <factor type="double">5.5556e-05</factor>
  3771. <axis>
  3772. <x type="double">1</x>
  3773. </axis>
  3774. </animation>
  3775. <animation n="433">
  3776. <type type="string">textranslate</type>
  3777. <object-name type="string">Plane.433</object-name>
  3778. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[17]/elevation-ft</property>
  3779. <factor type="double">5.5556e-05</factor>
  3780. <axis>
  3781. <x type="double">1</x>
  3782. </axis>
  3783. </animation>
  3784. <animation n="434">
  3785. <type type="string">textranslate</type>
  3786. <object-name type="string">Plane.434</object-name>
  3787. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[18]/elevation-ft</property>
  3788. <factor type="double">5.5556e-05</factor>
  3789. <axis>
  3790. <x type="double">1</x>
  3791. </axis>
  3792. </animation>
  3793. <animation n="435">
  3794. <type type="string">textranslate</type>
  3795. <object-name type="string">Plane.435</object-name>
  3796. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[19]/elevation-ft</property>
  3797. <factor type="double">5.5556e-05</factor>
  3798. <axis>
  3799. <x type="double">1</x>
  3800. </axis>
  3801. </animation>
  3802. <animation n="436">
  3803. <type type="string">textranslate</type>
  3804. <object-name type="string">Plane.436</object-name>
  3805. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[20]/elevation-ft</property>
  3806. <factor type="double">5.5556e-05</factor>
  3807. <axis>
  3808. <x type="double">1</x>
  3809. </axis>
  3810. </animation>
  3811. <animation n="437">
  3812. <type type="string">textranslate</type>
  3813. <object-name type="string">Plane.437</object-name>
  3814. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[21]/elevation-ft</property>
  3815. <factor type="double">5.5556e-05</factor>
  3816. <axis>
  3817. <x type="double">1</x>
  3818. </axis>
  3819. </animation>
  3820. <animation n="438">
  3821. <type type="string">textranslate</type>
  3822. <object-name type="string">Plane.438</object-name>
  3823. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[22]/elevation-ft</property>
  3824. <factor type="double">5.5556e-05</factor>
  3825. <axis>
  3826. <x type="double">1</x>
  3827. </axis>
  3828. </animation>
  3829. <animation n="439">
  3830. <type type="string">textranslate</type>
  3831. <object-name type="string">Plane.439</object-name>
  3832. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[23]/elevation-ft</property>
  3833. <factor type="double">5.5556e-05</factor>
  3834. <axis>
  3835. <x type="double">1</x>
  3836. </axis>
  3837. </animation>
  3838. <animation n="440">
  3839. <type type="string">textranslate</type>
  3840. <object-name type="string">Plane.440</object-name>
  3841. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[24]/elevation-ft</property>
  3842. <factor type="double">5.5556e-05</factor>
  3843. <axis>
  3844. <x type="double">1</x>
  3845. </axis>
  3846. </animation>
  3847. <animation n="441">
  3848. <type type="string">textranslate</type>
  3849. <object-name type="string">Plane.441</object-name>
  3850. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[25]/elevation-ft</property>
  3851. <factor type="double">5.5556e-05</factor>
  3852. <axis>
  3853. <x type="double">1</x>
  3854. </axis>
  3855. </animation>
  3856. <animation n="442">
  3857. <type type="string">textranslate</type>
  3858. <object-name type="string">Plane.442</object-name>
  3859. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[26]/elevation-ft</property>
  3860. <factor type="double">5.5556e-05</factor>
  3861. <axis>
  3862. <x type="double">1</x>
  3863. </axis>
  3864. </animation>
  3865. <animation n="443">
  3866. <type type="string">textranslate</type>
  3867. <object-name type="string">Plane.443</object-name>
  3868. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[27]/elevation-ft</property>
  3869. <factor type="double">5.5556e-05</factor>
  3870. <axis>
  3871. <x type="double">1</x>
  3872. </axis>
  3873. </animation>
  3874. <animation n="444">
  3875. <type type="string">textranslate</type>
  3876. <object-name type="string">Plane.444</object-name>
  3877. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[28]/elevation-ft</property>
  3878. <factor type="double">5.5556e-05</factor>
  3879. <axis>
  3880. <x type="double">1</x>
  3881. </axis>
  3882. </animation>
  3883. <animation n="445">
  3884. <type type="string">textranslate</type>
  3885. <object-name type="string">Plane.445</object-name>
  3886. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[29]/elevation-ft</property>
  3887. <factor type="double">5.5556e-05</factor>
  3888. <axis>
  3889. <x type="double">1</x>
  3890. </axis>
  3891. </animation>
  3892. <animation n="446">
  3893. <type type="string">textranslate</type>
  3894. <object-name type="string">Plane.446</object-name>
  3895. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[30]/elevation-ft</property>
  3896. <factor type="double">5.5556e-05</factor>
  3897. <axis>
  3898. <x type="double">1</x>
  3899. </axis>
  3900. </animation>
  3901. <animation n="447">
  3902. <type type="string">textranslate</type>
  3903. <object-name type="string">Plane.447</object-name>
  3904. <property type="string">/instrumentation/terrain-map/pixels/row[13]/col[31]/elevation-ft</property>
  3905. <factor type="double">5.5556e-05</factor>
  3906. <axis>
  3907. <x type="double">1</x>
  3908. </axis>
  3909. </animation>
  3910. <animation n="449">
  3911. <type type="string">textranslate</type>
  3912. <object-name type="string">Plane.449</object-name>
  3913. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[1]/elevation-ft</property>
  3914. <factor type="double">5.5556e-05</factor>
  3915. <axis>
  3916. <x type="double">1</x>
  3917. </axis>
  3918. </animation>
  3919. <animation n="450">
  3920. <type type="string">textranslate</type>
  3921. <object-name type="string">Plane.450</object-name>
  3922. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[2]/elevation-ft</property>
  3923. <factor type="double">5.5556e-05</factor>
  3924. <axis>
  3925. <x type="double">1</x>
  3926. </axis>
  3927. </animation>
  3928. <animation n="451">
  3929. <type type="string">textranslate</type>
  3930. <object-name type="string">Plane.451</object-name>
  3931. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[3]/elevation-ft</property>
  3932. <factor type="double">5.5556e-05</factor>
  3933. <axis>
  3934. <x type="double">1</x>
  3935. </axis>
  3936. </animation>
  3937. <animation n="452">
  3938. <type type="string">textranslate</type>
  3939. <object-name type="string">Plane.452</object-name>
  3940. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[4]/elevation-ft</property>
  3941. <factor type="double">5.5556e-05</factor>
  3942. <axis>
  3943. <x type="double">1</x>
  3944. </axis>
  3945. </animation>
  3946. <animation n="453">
  3947. <type type="string">textranslate</type>
  3948. <object-name type="string">Plane.453</object-name>
  3949. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[5]/elevation-ft</property>
  3950. <factor type="double">5.5556e-05</factor>
  3951. <axis>
  3952. <x type="double">1</x>
  3953. </axis>
  3954. </animation>
  3955. <animation n="454">
  3956. <type type="string">textranslate</type>
  3957. <object-name type="string">Plane.454</object-name>
  3958. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[6]/elevation-ft</property>
  3959. <factor type="double">5.5556e-05</factor>
  3960. <axis>
  3961. <x type="double">1</x>
  3962. </axis>
  3963. </animation>
  3964. <animation n="455">
  3965. <type type="string">textranslate</type>
  3966. <object-name type="string">Plane.455</object-name>
  3967. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[7]/elevation-ft</property>
  3968. <factor type="double">5.5556e-05</factor>
  3969. <axis>
  3970. <x type="double">1</x>
  3971. </axis>
  3972. </animation>
  3973. <animation n="456">
  3974. <type type="string">textranslate</type>
  3975. <object-name type="string">Plane.456</object-name>
  3976. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[8]/elevation-ft</property>
  3977. <factor type="double">5.5556e-05</factor>
  3978. <axis>
  3979. <x type="double">1</x>
  3980. </axis>
  3981. </animation>
  3982. <animation n="457">
  3983. <type type="string">textranslate</type>
  3984. <object-name type="string">Plane.457</object-name>
  3985. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[9]/elevation-ft</property>
  3986. <factor type="double">5.5556e-05</factor>
  3987. <axis>
  3988. <x type="double">1</x>
  3989. </axis>
  3990. </animation>
  3991. <animation n="458">
  3992. <type type="string">textranslate</type>
  3993. <object-name type="string">Plane.458</object-name>
  3994. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[10]/elevation-ft</property>
  3995. <factor type="double">5.5556e-05</factor>
  3996. <axis>
  3997. <x type="double">1</x>
  3998. </axis>
  3999. </animation>
  4000. <animation n="459">
  4001. <type type="string">textranslate</type>
  4002. <object-name type="string">Plane.459</object-name>
  4003. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[11]/elevation-ft</property>
  4004. <factor type="double">5.5556e-05</factor>
  4005. <axis>
  4006. <x type="double">1</x>
  4007. </axis>
  4008. </animation>
  4009. <animation n="460">
  4010. <type type="string">textranslate</type>
  4011. <object-name type="string">Plane.460</object-name>
  4012. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[12]/elevation-ft</property>
  4013. <factor type="double">5.5556e-05</factor>
  4014. <axis>
  4015. <x type="double">1</x>
  4016. </axis>
  4017. </animation>
  4018. <animation n="461">
  4019. <type type="string">textranslate</type>
  4020. <object-name type="string">Plane.461</object-name>
  4021. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[13]/elevation-ft</property>
  4022. <factor type="double">5.5556e-05</factor>
  4023. <axis>
  4024. <x type="double">1</x>
  4025. </axis>
  4026. </animation>
  4027. <animation n="462">
  4028. <type type="string">textranslate</type>
  4029. <object-name type="string">Plane.462</object-name>
  4030. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[14]/elevation-ft</property>
  4031. <factor type="double">5.5556e-05</factor>
  4032. <axis>
  4033. <x type="double">1</x>
  4034. </axis>
  4035. </animation>
  4036. <animation n="463">
  4037. <type type="string">textranslate</type>
  4038. <object-name type="string">Plane.463</object-name>
  4039. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[15]/elevation-ft</property>
  4040. <factor type="double">5.5556e-05</factor>
  4041. <axis>
  4042. <x type="double">1</x>
  4043. </axis>
  4044. </animation>
  4045. <animation n="464">
  4046. <type type="string">textranslate</type>
  4047. <object-name type="string">Plane.464</object-name>
  4048. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[16]/elevation-ft</property>
  4049. <factor type="double">5.5556e-05</factor>
  4050. <axis>
  4051. <x type="double">1</x>
  4052. </axis>
  4053. </animation>
  4054. <animation n="465">
  4055. <type type="string">textranslate</type>
  4056. <object-name type="string">Plane.465</object-name>
  4057. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[17]/elevation-ft</property>
  4058. <factor type="double">5.5556e-05</factor>
  4059. <axis>
  4060. <x type="double">1</x>
  4061. </axis>
  4062. </animation>
  4063. <animation n="466">
  4064. <type type="string">textranslate</type>
  4065. <object-name type="string">Plane.466</object-name>
  4066. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[18]/elevation-ft</property>
  4067. <factor type="double">5.5556e-05</factor>
  4068. <axis>
  4069. <x type="double">1</x>
  4070. </axis>
  4071. </animation>
  4072. <animation n="467">
  4073. <type type="string">textranslate</type>
  4074. <object-name type="string">Plane.467</object-name>
  4075. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[19]/elevation-ft</property>
  4076. <factor type="double">5.5556e-05</factor>
  4077. <axis>
  4078. <x type="double">1</x>
  4079. </axis>
  4080. </animation>
  4081. <animation n="468">
  4082. <type type="string">textranslate</type>
  4083. <object-name type="string">Plane.468</object-name>
  4084. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[20]/elevation-ft</property>
  4085. <factor type="double">5.5556e-05</factor>
  4086. <axis>
  4087. <x type="double">1</x>
  4088. </axis>
  4089. </animation>
  4090. <animation n="469">
  4091. <type type="string">textranslate</type>
  4092. <object-name type="string">Plane.469</object-name>
  4093. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[21]/elevation-ft</property>
  4094. <factor type="double">5.5556e-05</factor>
  4095. <axis>
  4096. <x type="double">1</x>
  4097. </axis>
  4098. </animation>
  4099. <animation n="470">
  4100. <type type="string">textranslate</type>
  4101. <object-name type="string">Plane.470</object-name>
  4102. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[22]/elevation-ft</property>
  4103. <factor type="double">5.5556e-05</factor>
  4104. <axis>
  4105. <x type="double">1</x>
  4106. </axis>
  4107. </animation>
  4108. <animation n="471">
  4109. <type type="string">textranslate</type>
  4110. <object-name type="string">Plane.471</object-name>
  4111. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[23]/elevation-ft</property>
  4112. <factor type="double">5.5556e-05</factor>
  4113. <axis>
  4114. <x type="double">1</x>
  4115. </axis>
  4116. </animation>
  4117. <animation n="472">
  4118. <type type="string">textranslate</type>
  4119. <object-name type="string">Plane.472</object-name>
  4120. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[24]/elevation-ft</property>
  4121. <factor type="double">5.5556e-05</factor>
  4122. <axis>
  4123. <x type="double">1</x>
  4124. </axis>
  4125. </animation>
  4126. <animation n="473">
  4127. <type type="string">textranslate</type>
  4128. <object-name type="string">Plane.473</object-name>
  4129. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[25]/elevation-ft</property>
  4130. <factor type="double">5.5556e-05</factor>
  4131. <axis>
  4132. <x type="double">1</x>
  4133. </axis>
  4134. </animation>
  4135. <animation n="474">
  4136. <type type="string">textranslate</type>
  4137. <object-name type="string">Plane.474</object-name>
  4138. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[26]/elevation-ft</property>
  4139. <factor type="double">5.5556e-05</factor>
  4140. <axis>
  4141. <x type="double">1</x>
  4142. </axis>
  4143. </animation>
  4144. <animation n="475">
  4145. <type type="string">textranslate</type>
  4146. <object-name type="string">Plane.475</object-name>
  4147. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[27]/elevation-ft</property>
  4148. <factor type="double">5.5556e-05</factor>
  4149. <axis>
  4150. <x type="double">1</x>
  4151. </axis>
  4152. </animation>
  4153. <animation n="476">
  4154. <type type="string">textranslate</type>
  4155. <object-name type="string">Plane.476</object-name>
  4156. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[28]/elevation-ft</property>
  4157. <factor type="double">5.5556e-05</factor>
  4158. <axis>
  4159. <x type="double">1</x>
  4160. </axis>
  4161. </animation>
  4162. <animation n="477">
  4163. <type type="string">textranslate</type>
  4164. <object-name type="string">Plane.477</object-name>
  4165. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[29]/elevation-ft</property>
  4166. <factor type="double">5.5556e-05</factor>
  4167. <axis>
  4168. <x type="double">1</x>
  4169. </axis>
  4170. </animation>
  4171. <animation n="478">
  4172. <type type="string">textranslate</type>
  4173. <object-name type="string">Plane.478</object-name>
  4174. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[30]/elevation-ft</property>
  4175. <factor type="double">5.5556e-05</factor>
  4176. <axis>
  4177. <x type="double">1</x>
  4178. </axis>
  4179. </animation>
  4180. <animation n="479">
  4181. <type type="string">textranslate</type>
  4182. <object-name type="string">Plane.479</object-name>
  4183. <property type="string">/instrumentation/terrain-map/pixels/row[14]/col[31]/elevation-ft</property>
  4184. <factor type="double">5.5556e-05</factor>
  4185. <axis>
  4186. <x type="double">1</x>
  4187. </axis>
  4188. </animation>
  4189. <animation n="481">
  4190. <type type="string">textranslate</type>
  4191. <object-name type="string">Plane.481</object-name>
  4192. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[1]/elevation-ft</property>
  4193. <factor type="double">5.5556e-05</factor>
  4194. <axis>
  4195. <x type="double">1</x>
  4196. </axis>
  4197. </animation>
  4198. <animation n="482">
  4199. <type type="string">textranslate</type>
  4200. <object-name type="string">Plane.482</object-name>
  4201. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[2]/elevation-ft</property>
  4202. <factor type="double">5.5556e-05</factor>
  4203. <axis>
  4204. <x type="double">1</x>
  4205. </axis>
  4206. </animation>
  4207. <animation n="483">
  4208. <type type="string">textranslate</type>
  4209. <object-name type="string">Plane.483</object-name>
  4210. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[3]/elevation-ft</property>
  4211. <factor type="double">5.5556e-05</factor>
  4212. <axis>
  4213. <x type="double">1</x>
  4214. </axis>
  4215. </animation>
  4216. <animation n="484">
  4217. <type type="string">textranslate</type>
  4218. <object-name type="string">Plane.484</object-name>
  4219. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[4]/elevation-ft</property>
  4220. <factor type="double">5.5556e-05</factor>
  4221. <axis>
  4222. <x type="double">1</x>
  4223. </axis>
  4224. </animation>
  4225. <animation n="485">
  4226. <type type="string">textranslate</type>
  4227. <object-name type="string">Plane.485</object-name>
  4228. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[5]/elevation-ft</property>
  4229. <factor type="double">5.5556e-05</factor>
  4230. <axis>
  4231. <x type="double">1</x>
  4232. </axis>
  4233. </animation>
  4234. <animation n="486">
  4235. <type type="string">textranslate</type>
  4236. <object-name type="string">Plane.486</object-name>
  4237. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[6]/elevation-ft</property>
  4238. <factor type="double">5.5556e-05</factor>
  4239. <axis>
  4240. <x type="double">1</x>
  4241. </axis>
  4242. </animation>
  4243. <animation n="487">
  4244. <type type="string">textranslate</type>
  4245. <object-name type="string">Plane.487</object-name>
  4246. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[7]/elevation-ft</property>
  4247. <factor type="double">5.5556e-05</factor>
  4248. <axis>
  4249. <x type="double">1</x>
  4250. </axis>
  4251. </animation>
  4252. <animation n="488">
  4253. <type type="string">textranslate</type>
  4254. <object-name type="string">Plane.488</object-name>
  4255. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[8]/elevation-ft</property>
  4256. <factor type="double">5.5556e-05</factor>
  4257. <axis>
  4258. <x type="double">1</x>
  4259. </axis>
  4260. </animation>
  4261. <animation n="489">
  4262. <type type="string">textranslate</type>
  4263. <object-name type="string">Plane.489</object-name>
  4264. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[9]/elevation-ft</property>
  4265. <factor type="double">5.5556e-05</factor>
  4266. <axis>
  4267. <x type="double">1</x>
  4268. </axis>
  4269. </animation>
  4270. <animation n="490">
  4271. <type type="string">textranslate</type>
  4272. <object-name type="string">Plane.490</object-name>
  4273. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[10]/elevation-ft</property>
  4274. <factor type="double">5.5556e-05</factor>
  4275. <axis>
  4276. <x type="double">1</x>
  4277. </axis>
  4278. </animation>
  4279. <animation n="491">
  4280. <type type="string">textranslate</type>
  4281. <object-name type="string">Plane.491</object-name>
  4282. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[11]/elevation-ft</property>
  4283. <factor type="double">5.5556e-05</factor>
  4284. <axis>
  4285. <x type="double">1</x>
  4286. </axis>
  4287. </animation>
  4288. <animation n="492">
  4289. <type type="string">textranslate</type>
  4290. <object-name type="string">Plane.492</object-name>
  4291. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[12]/elevation-ft</property>
  4292. <factor type="double">5.5556e-05</factor>
  4293. <axis>
  4294. <x type="double">1</x>
  4295. </axis>
  4296. </animation>
  4297. <animation n="493">
  4298. <type type="string">textranslate</type>
  4299. <object-name type="string">Plane.493</object-name>
  4300. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[13]/elevation-ft</property>
  4301. <factor type="double">5.5556e-05</factor>
  4302. <axis>
  4303. <x type="double">1</x>
  4304. </axis>
  4305. </animation>
  4306. <animation n="494">
  4307. <type type="string">textranslate</type>
  4308. <object-name type="string">Plane.494</object-name>
  4309. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[14]/elevation-ft</property>
  4310. <factor type="double">5.5556e-05</factor>
  4311. <axis>
  4312. <x type="double">1</x>
  4313. </axis>
  4314. </animation>
  4315. <animation n="495">
  4316. <type type="string">textranslate</type>
  4317. <object-name type="string">Plane.495</object-name>
  4318. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[15]/elevation-ft</property>
  4319. <factor type="double">5.5556e-05</factor>
  4320. <axis>
  4321. <x type="double">1</x>
  4322. </axis>
  4323. </animation>
  4324. <animation n="496">
  4325. <type type="string">textranslate</type>
  4326. <object-name type="string">Plane.496</object-name>
  4327. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[16]/elevation-ft</property>
  4328. <factor type="double">5.5556e-05</factor>
  4329. <axis>
  4330. <x type="double">1</x>
  4331. </axis>
  4332. </animation>
  4333. <animation n="497">
  4334. <type type="string">textranslate</type>
  4335. <object-name type="string">Plane.497</object-name>
  4336. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[17]/elevation-ft</property>
  4337. <factor type="double">5.5556e-05</factor>
  4338. <axis>
  4339. <x type="double">1</x>
  4340. </axis>
  4341. </animation>
  4342. <animation n="498">
  4343. <type type="string">textranslate</type>
  4344. <object-name type="string">Plane.498</object-name>
  4345. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[18]/elevation-ft</property>
  4346. <factor type="double">5.5556e-05</factor>
  4347. <axis>
  4348. <x type="double">1</x>
  4349. </axis>
  4350. </animation>
  4351. <animation n="499">
  4352. <type type="string">textranslate</type>
  4353. <object-name type="string">Plane.499</object-name>
  4354. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[19]/elevation-ft</property>
  4355. <factor type="double">5.5556e-05</factor>
  4356. <axis>
  4357. <x type="double">1</x>
  4358. </axis>
  4359. </animation>
  4360. <animation n="500">
  4361. <type type="string">textranslate</type>
  4362. <object-name type="string">Plane.500</object-name>
  4363. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[20]/elevation-ft</property>
  4364. <factor type="double">5.5556e-05</factor>
  4365. <axis>
  4366. <x type="double">1</x>
  4367. </axis>
  4368. </animation>
  4369. <animation n="501">
  4370. <type type="string">textranslate</type>
  4371. <object-name type="string">Plane.501</object-name>
  4372. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[21]/elevation-ft</property>
  4373. <factor type="double">5.5556e-05</factor>
  4374. <axis>
  4375. <x type="double">1</x>
  4376. </axis>
  4377. </animation>
  4378. <animation n="502">
  4379. <type type="string">textranslate</type>
  4380. <object-name type="string">Plane.502</object-name>
  4381. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[22]/elevation-ft</property>
  4382. <factor type="double">5.5556e-05</factor>
  4383. <axis>
  4384. <x type="double">1</x>
  4385. </axis>
  4386. </animation>
  4387. <animation n="503">
  4388. <type type="string">textranslate</type>
  4389. <object-name type="string">Plane.503</object-name>
  4390. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[23]/elevation-ft</property>
  4391. <factor type="double">5.5556e-05</factor>
  4392. <axis>
  4393. <x type="double">1</x>
  4394. </axis>
  4395. </animation>
  4396. <animation n="504">
  4397. <type type="string">textranslate</type>
  4398. <object-name type="string">Plane.504</object-name>
  4399. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[24]/elevation-ft</property>
  4400. <factor type="double">5.5556e-05</factor>
  4401. <axis>
  4402. <x type="double">1</x>
  4403. </axis>
  4404. </animation>
  4405. <animation n="505">
  4406. <type type="string">textranslate</type>
  4407. <object-name type="string">Plane.505</object-name>
  4408. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[25]/elevation-ft</property>
  4409. <factor type="double">5.5556e-05</factor>
  4410. <axis>
  4411. <x type="double">1</x>
  4412. </axis>
  4413. </animation>
  4414. <animation n="506">
  4415. <type type="string">textranslate</type>
  4416. <object-name type="string">Plane.506</object-name>
  4417. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[26]/elevation-ft</property>
  4418. <factor type="double">5.5556e-05</factor>
  4419. <axis>
  4420. <x type="double">1</x>
  4421. </axis>
  4422. </animation>
  4423. <animation n="507">
  4424. <type type="string">textranslate</type>
  4425. <object-name type="string">Plane.507</object-name>
  4426. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[27]/elevation-ft</property>
  4427. <factor type="double">5.5556e-05</factor>
  4428. <axis>
  4429. <x type="double">1</x>
  4430. </axis>
  4431. </animation>
  4432. <animation n="508">
  4433. <type type="string">textranslate</type>
  4434. <object-name type="string">Plane.508</object-name>
  4435. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[28]/elevation-ft</property>
  4436. <factor type="double">5.5556e-05</factor>
  4437. <axis>
  4438. <x type="double">1</x>
  4439. </axis>
  4440. </animation>
  4441. <animation n="509">
  4442. <type type="string">textranslate</type>
  4443. <object-name type="string">Plane.509</object-name>
  4444. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[29]/elevation-ft</property>
  4445. <factor type="double">5.5556e-05</factor>
  4446. <axis>
  4447. <x type="double">1</x>
  4448. </axis>
  4449. </animation>
  4450. <animation n="510">
  4451. <type type="string">textranslate</type>
  4452. <object-name type="string">Plane.510</object-name>
  4453. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[30]/elevation-ft</property>
  4454. <factor type="double">5.5556e-05</factor>
  4455. <axis>
  4456. <x type="double">1</x>
  4457. </axis>
  4458. </animation>
  4459. <animation n="511">
  4460. <type type="string">textranslate</type>
  4461. <object-name type="string">Plane.511</object-name>
  4462. <property type="string">/instrumentation/terrain-map/pixels/row[15]/col[31]/elevation-ft</property>
  4463. <factor type="double">5.5556e-05</factor>
  4464. <axis>
  4465. <x type="double">1</x>
  4466. </axis>
  4467. </animation>
  4468. <animation n="513">
  4469. <type type="string">textranslate</type>
  4470. <object-name type="string">Plane.513</object-name>
  4471. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[1]/elevation-ft</property>
  4472. <factor type="double">5.5556e-05</factor>
  4473. <axis>
  4474. <x type="double">1</x>
  4475. </axis>
  4476. </animation>
  4477. <animation n="514">
  4478. <type type="string">textranslate</type>
  4479. <object-name type="string">Plane.514</object-name>
  4480. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[2]/elevation-ft</property>
  4481. <factor type="double">5.5556e-05</factor>
  4482. <axis>
  4483. <x type="double">1</x>
  4484. </axis>
  4485. </animation>
  4486. <animation n="515">
  4487. <type type="string">textranslate</type>
  4488. <object-name type="string">Plane.515</object-name>
  4489. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[3]/elevation-ft</property>
  4490. <factor type="double">5.5556e-05</factor>
  4491. <axis>
  4492. <x type="double">1</x>
  4493. </axis>
  4494. </animation>
  4495. <animation n="516">
  4496. <type type="string">textranslate</type>
  4497. <object-name type="string">Plane.516</object-name>
  4498. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[4]/elevation-ft</property>
  4499. <factor type="double">5.5556e-05</factor>
  4500. <axis>
  4501. <x type="double">1</x>
  4502. </axis>
  4503. </animation>
  4504. <animation n="517">
  4505. <type type="string">textranslate</type>
  4506. <object-name type="string">Plane.517</object-name>
  4507. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[5]/elevation-ft</property>
  4508. <factor type="double">5.5556e-05</factor>
  4509. <axis>
  4510. <x type="double">1</x>
  4511. </axis>
  4512. </animation>
  4513. <animation n="518">
  4514. <type type="string">textranslate</type>
  4515. <object-name type="string">Plane.518</object-name>
  4516. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[6]/elevation-ft</property>
  4517. <factor type="double">5.5556e-05</factor>
  4518. <axis>
  4519. <x type="double">1</x>
  4520. </axis>
  4521. </animation>
  4522. <animation n="519">
  4523. <type type="string">textranslate</type>
  4524. <object-name type="string">Plane.519</object-name>
  4525. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[7]/elevation-ft</property>
  4526. <factor type="double">5.5556e-05</factor>
  4527. <axis>
  4528. <x type="double">1</x>
  4529. </axis>
  4530. </animation>
  4531. <animation n="520">
  4532. <type type="string">textranslate</type>
  4533. <object-name type="string">Plane.520</object-name>
  4534. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[8]/elevation-ft</property>
  4535. <factor type="double">5.5556e-05</factor>
  4536. <axis>
  4537. <x type="double">1</x>
  4538. </axis>
  4539. </animation>
  4540. <animation n="521">
  4541. <type type="string">textranslate</type>
  4542. <object-name type="string">Plane.521</object-name>
  4543. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[9]/elevation-ft</property>
  4544. <factor type="double">5.5556e-05</factor>
  4545. <axis>
  4546. <x type="double">1</x>
  4547. </axis>
  4548. </animation>
  4549. <animation n="522">
  4550. <type type="string">textranslate</type>
  4551. <object-name type="string">Plane.522</object-name>
  4552. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[10]/elevation-ft</property>
  4553. <factor type="double">5.5556e-05</factor>
  4554. <axis>
  4555. <x type="double">1</x>
  4556. </axis>
  4557. </animation>
  4558. <animation n="523">
  4559. <type type="string">textranslate</type>
  4560. <object-name type="string">Plane.523</object-name>
  4561. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[11]/elevation-ft</property>
  4562. <factor type="double">5.5556e-05</factor>
  4563. <axis>
  4564. <x type="double">1</x>
  4565. </axis>
  4566. </animation>
  4567. <animation n="524">
  4568. <type type="string">textranslate</type>
  4569. <object-name type="string">Plane.524</object-name>
  4570. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[12]/elevation-ft</property>
  4571. <factor type="double">5.5556e-05</factor>
  4572. <axis>
  4573. <x type="double">1</x>
  4574. </axis>
  4575. </animation>
  4576. <animation n="525">
  4577. <type type="string">textranslate</type>
  4578. <object-name type="string">Plane.525</object-name>
  4579. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[13]/elevation-ft</property>
  4580. <factor type="double">5.5556e-05</factor>
  4581. <axis>
  4582. <x type="double">1</x>
  4583. </axis>
  4584. </animation>
  4585. <animation n="526">
  4586. <type type="string">textranslate</type>
  4587. <object-name type="string">Plane.526</object-name>
  4588. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[14]/elevation-ft</property>
  4589. <factor type="double">5.5556e-05</factor>
  4590. <axis>
  4591. <x type="double">1</x>
  4592. </axis>
  4593. </animation>
  4594. <animation n="527">
  4595. <type type="string">textranslate</type>
  4596. <object-name type="string">Plane.527</object-name>
  4597. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[15]/elevation-ft</property>
  4598. <factor type="double">5.5556e-05</factor>
  4599. <axis>
  4600. <x type="double">1</x>
  4601. </axis>
  4602. </animation>
  4603. <animation n="528">
  4604. <type type="string">textranslate</type>
  4605. <object-name type="string">Plane.528</object-name>
  4606. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[16]/elevation-ft</property>
  4607. <factor type="double">5.5556e-05</factor>
  4608. <axis>
  4609. <x type="double">1</x>
  4610. </axis>
  4611. </animation>
  4612. <animation n="529">
  4613. <type type="string">textranslate</type>
  4614. <object-name type="string">Plane.529</object-name>
  4615. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[17]/elevation-ft</property>
  4616. <factor type="double">5.5556e-05</factor>
  4617. <axis>
  4618. <x type="double">1</x>
  4619. </axis>
  4620. </animation>
  4621. <animation n="530">
  4622. <type type="string">textranslate</type>
  4623. <object-name type="string">Plane.530</object-name>
  4624. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[18]/elevation-ft</property>
  4625. <factor type="double">5.5556e-05</factor>
  4626. <axis>
  4627. <x type="double">1</x>
  4628. </axis>
  4629. </animation>
  4630. <animation n="531">
  4631. <type type="string">textranslate</type>
  4632. <object-name type="string">Plane.531</object-name>
  4633. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[19]/elevation-ft</property>
  4634. <factor type="double">5.5556e-05</factor>
  4635. <axis>
  4636. <x type="double">1</x>
  4637. </axis>
  4638. </animation>
  4639. <animation n="532">
  4640. <type type="string">textranslate</type>
  4641. <object-name type="string">Plane.532</object-name>
  4642. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[20]/elevation-ft</property>
  4643. <factor type="double">5.5556e-05</factor>
  4644. <axis>
  4645. <x type="double">1</x>
  4646. </axis>
  4647. </animation>
  4648. <animation n="533">
  4649. <type type="string">textranslate</type>
  4650. <object-name type="string">Plane.533</object-name>
  4651. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[21]/elevation-ft</property>
  4652. <factor type="double">5.5556e-05</factor>
  4653. <axis>
  4654. <x type="double">1</x>
  4655. </axis>
  4656. </animation>
  4657. <animation n="534">
  4658. <type type="string">textranslate</type>
  4659. <object-name type="string">Plane.534</object-name>
  4660. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[22]/elevation-ft</property>
  4661. <factor type="double">5.5556e-05</factor>
  4662. <axis>
  4663. <x type="double">1</x>
  4664. </axis>
  4665. </animation>
  4666. <animation n="535">
  4667. <type type="string">textranslate</type>
  4668. <object-name type="string">Plane.535</object-name>
  4669. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[23]/elevation-ft</property>
  4670. <factor type="double">5.5556e-05</factor>
  4671. <axis>
  4672. <x type="double">1</x>
  4673. </axis>
  4674. </animation>
  4675. <animation n="536">
  4676. <type type="string">textranslate</type>
  4677. <object-name type="string">Plane.536</object-name>
  4678. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[24]/elevation-ft</property>
  4679. <factor type="double">5.5556e-05</factor>
  4680. <axis>
  4681. <x type="double">1</x>
  4682. </axis>
  4683. </animation>
  4684. <animation n="537">
  4685. <type type="string">textranslate</type>
  4686. <object-name type="string">Plane.537</object-name>
  4687. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[25]/elevation-ft</property>
  4688. <factor type="double">5.5556e-05</factor>
  4689. <axis>
  4690. <x type="double">1</x>
  4691. </axis>
  4692. </animation>
  4693. <animation n="538">
  4694. <type type="string">textranslate</type>
  4695. <object-name type="string">Plane.538</object-name>
  4696. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[26]/elevation-ft</property>
  4697. <factor type="double">5.5556e-05</factor>
  4698. <axis>
  4699. <x type="double">1</x>
  4700. </axis>
  4701. </animation>
  4702. <animation n="539">
  4703. <type type="string">textranslate</type>
  4704. <object-name type="string">Plane.539</object-name>
  4705. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[27]/elevation-ft</property>
  4706. <factor type="double">5.5556e-05</factor>
  4707. <axis>
  4708. <x type="double">1</x>
  4709. </axis>
  4710. </animation>
  4711. <animation n="540">
  4712. <type type="string">textranslate</type>
  4713. <object-name type="string">Plane.540</object-name>
  4714. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[28]/elevation-ft</property>
  4715. <factor type="double">5.5556e-05</factor>
  4716. <axis>
  4717. <x type="double">1</x>
  4718. </axis>
  4719. </animation>
  4720. <animation n="541">
  4721. <type type="string">textranslate</type>
  4722. <object-name type="string">Plane.541</object-name>
  4723. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[29]/elevation-ft</property>
  4724. <factor type="double">5.5556e-05</factor>
  4725. <axis>
  4726. <x type="double">1</x>
  4727. </axis>
  4728. </animation>
  4729. <animation n="542">
  4730. <type type="string">textranslate</type>
  4731. <object-name type="string">Plane.542</object-name>
  4732. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[30]/elevation-ft</property>
  4733. <factor type="double">5.5556e-05</factor>
  4734. <axis>
  4735. <x type="double">1</x>
  4736. </axis>
  4737. </animation>
  4738. <animation n="543">
  4739. <type type="string">textranslate</type>
  4740. <object-name type="string">Plane.543</object-name>
  4741. <property type="string">/instrumentation/terrain-map/pixels/row[16]/col[31]/elevation-ft</property>
  4742. <factor type="double">5.5556e-05</factor>
  4743. <axis>
  4744. <x type="double">1</x>
  4745. </axis>
  4746. </animation>
  4747. <animation n="545">
  4748. <type type="string">textranslate</type>
  4749. <object-name type="string">Plane.545</object-name>
  4750. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[1]/elevation-ft</property>
  4751. <factor type="double">5.5556e-05</factor>
  4752. <axis>
  4753. <x type="double">1</x>
  4754. </axis>
  4755. </animation>
  4756. <animation n="546">
  4757. <type type="string">textranslate</type>
  4758. <object-name type="string">Plane.546</object-name>
  4759. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[2]/elevation-ft</property>
  4760. <factor type="double">5.5556e-05</factor>
  4761. <axis>
  4762. <x type="double">1</x>
  4763. </axis>
  4764. </animation>
  4765. <animation n="547">
  4766. <type type="string">textranslate</type>
  4767. <object-name type="string">Plane.547</object-name>
  4768. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[3]/elevation-ft</property>
  4769. <factor type="double">5.5556e-05</factor>
  4770. <axis>
  4771. <x type="double">1</x>
  4772. </axis>
  4773. </animation>
  4774. <animation n="548">
  4775. <type type="string">textranslate</type>
  4776. <object-name type="string">Plane.548</object-name>
  4777. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[4]/elevation-ft</property>
  4778. <factor type="double">5.5556e-05</factor>
  4779. <axis>
  4780. <x type="double">1</x>
  4781. </axis>
  4782. </animation>
  4783. <animation n="549">
  4784. <type type="string">textranslate</type>
  4785. <object-name type="string">Plane.549</object-name>
  4786. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[5]/elevation-ft</property>
  4787. <factor type="double">5.5556e-05</factor>
  4788. <axis>
  4789. <x type="double">1</x>
  4790. </axis>
  4791. </animation>
  4792. <animation n="550">
  4793. <type type="string">textranslate</type>
  4794. <object-name type="string">Plane.550</object-name>
  4795. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[6]/elevation-ft</property>
  4796. <factor type="double">5.5556e-05</factor>
  4797. <axis>
  4798. <x type="double">1</x>
  4799. </axis>
  4800. </animation>
  4801. <animation n="551">
  4802. <type type="string">textranslate</type>
  4803. <object-name type="string">Plane.551</object-name>
  4804. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[7]/elevation-ft</property>
  4805. <factor type="double">5.5556e-05</factor>
  4806. <axis>
  4807. <x type="double">1</x>
  4808. </axis>
  4809. </animation>
  4810. <animation n="552">
  4811. <type type="string">textranslate</type>
  4812. <object-name type="string">Plane.552</object-name>
  4813. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[8]/elevation-ft</property>
  4814. <factor type="double">5.5556e-05</factor>
  4815. <axis>
  4816. <x type="double">1</x>
  4817. </axis>
  4818. </animation>
  4819. <animation n="553">
  4820. <type type="string">textranslate</type>
  4821. <object-name type="string">Plane.553</object-name>
  4822. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[9]/elevation-ft</property>
  4823. <factor type="double">5.5556e-05</factor>
  4824. <axis>
  4825. <x type="double">1</x>
  4826. </axis>
  4827. </animation>
  4828. <animation n="554">
  4829. <type type="string">textranslate</type>
  4830. <object-name type="string">Plane.554</object-name>
  4831. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[10]/elevation-ft</property>
  4832. <factor type="double">5.5556e-05</factor>
  4833. <axis>
  4834. <x type="double">1</x>
  4835. </axis>
  4836. </animation>
  4837. <animation n="555">
  4838. <type type="string">textranslate</type>
  4839. <object-name type="string">Plane.555</object-name>
  4840. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[11]/elevation-ft</property>
  4841. <factor type="double">5.5556e-05</factor>
  4842. <axis>
  4843. <x type="double">1</x>
  4844. </axis>
  4845. </animation>
  4846. <animation n="556">
  4847. <type type="string">textranslate</type>
  4848. <object-name type="string">Plane.556</object-name>
  4849. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[12]/elevation-ft</property>
  4850. <factor type="double">5.5556e-05</factor>
  4851. <axis>
  4852. <x type="double">1</x>
  4853. </axis>
  4854. </animation>
  4855. <animation n="557">
  4856. <type type="string">textranslate</type>
  4857. <object-name type="string">Plane.557</object-name>
  4858. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[13]/elevation-ft</property>
  4859. <factor type="double">5.5556e-05</factor>
  4860. <axis>
  4861. <x type="double">1</x>
  4862. </axis>
  4863. </animation>
  4864. <animation n="558">
  4865. <type type="string">textranslate</type>
  4866. <object-name type="string">Plane.558</object-name>
  4867. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[14]/elevation-ft</property>
  4868. <factor type="double">5.5556e-05</factor>
  4869. <axis>
  4870. <x type="double">1</x>
  4871. </axis>
  4872. </animation>
  4873. <animation n="559">
  4874. <type type="string">textranslate</type>
  4875. <object-name type="string">Plane.559</object-name>
  4876. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[15]/elevation-ft</property>
  4877. <factor type="double">5.5556e-05</factor>
  4878. <axis>
  4879. <x type="double">1</x>
  4880. </axis>
  4881. </animation>
  4882. <animation n="560">
  4883. <type type="string">textranslate</type>
  4884. <object-name type="string">Plane.560</object-name>
  4885. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[16]/elevation-ft</property>
  4886. <factor type="double">5.5556e-05</factor>
  4887. <axis>
  4888. <x type="double">1</x>
  4889. </axis>
  4890. </animation>
  4891. <animation n="561">
  4892. <type type="string">textranslate</type>
  4893. <object-name type="string">Plane.561</object-name>
  4894. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[17]/elevation-ft</property>
  4895. <factor type="double">5.5556e-05</factor>
  4896. <axis>
  4897. <x type="double">1</x>
  4898. </axis>
  4899. </animation>
  4900. <animation n="562">
  4901. <type type="string">textranslate</type>
  4902. <object-name type="string">Plane.562</object-name>
  4903. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[18]/elevation-ft</property>
  4904. <factor type="double">5.5556e-05</factor>
  4905. <axis>
  4906. <x type="double">1</x>
  4907. </axis>
  4908. </animation>
  4909. <animation n="563">
  4910. <type type="string">textranslate</type>
  4911. <object-name type="string">Plane.563</object-name>
  4912. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[19]/elevation-ft</property>
  4913. <factor type="double">5.5556e-05</factor>
  4914. <axis>
  4915. <x type="double">1</x>
  4916. </axis>
  4917. </animation>
  4918. <animation n="564">
  4919. <type type="string">textranslate</type>
  4920. <object-name type="string">Plane.564</object-name>
  4921. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[20]/elevation-ft</property>
  4922. <factor type="double">5.5556e-05</factor>
  4923. <axis>
  4924. <x type="double">1</x>
  4925. </axis>
  4926. </animation>
  4927. <animation n="565">
  4928. <type type="string">textranslate</type>
  4929. <object-name type="string">Plane.565</object-name>
  4930. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[21]/elevation-ft</property>
  4931. <factor type="double">5.5556e-05</factor>
  4932. <axis>
  4933. <x type="double">1</x>
  4934. </axis>
  4935. </animation>
  4936. <animation n="566">
  4937. <type type="string">textranslate</type>
  4938. <object-name type="string">Plane.566</object-name>
  4939. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[22]/elevation-ft</property>
  4940. <factor type="double">5.5556e-05</factor>
  4941. <axis>
  4942. <x type="double">1</x>
  4943. </axis>
  4944. </animation>
  4945. <animation n="567">
  4946. <type type="string">textranslate</type>
  4947. <object-name type="string">Plane.567</object-name>
  4948. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[23]/elevation-ft</property>
  4949. <factor type="double">5.5556e-05</factor>
  4950. <axis>
  4951. <x type="double">1</x>
  4952. </axis>
  4953. </animation>
  4954. <animation n="568">
  4955. <type type="string">textranslate</type>
  4956. <object-name type="string">Plane.568</object-name>
  4957. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[24]/elevation-ft</property>
  4958. <factor type="double">5.5556e-05</factor>
  4959. <axis>
  4960. <x type="double">1</x>
  4961. </axis>
  4962. </animation>
  4963. <animation n="569">
  4964. <type type="string">textranslate</type>
  4965. <object-name type="string">Plane.569</object-name>
  4966. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[25]/elevation-ft</property>
  4967. <factor type="double">5.5556e-05</factor>
  4968. <axis>
  4969. <x type="double">1</x>
  4970. </axis>
  4971. </animation>
  4972. <animation n="570">
  4973. <type type="string">textranslate</type>
  4974. <object-name type="string">Plane.570</object-name>
  4975. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[26]/elevation-ft</property>
  4976. <factor type="double">5.5556e-05</factor>
  4977. <axis>
  4978. <x type="double">1</x>
  4979. </axis>
  4980. </animation>
  4981. <animation n="571">
  4982. <type type="string">textranslate</type>
  4983. <object-name type="string">Plane.571</object-name>
  4984. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[27]/elevation-ft</property>
  4985. <factor type="double">5.5556e-05</factor>
  4986. <axis>
  4987. <x type="double">1</x>
  4988. </axis>
  4989. </animation>
  4990. <animation n="572">
  4991. <type type="string">textranslate</type>
  4992. <object-name type="string">Plane.572</object-name>
  4993. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[28]/elevation-ft</property>
  4994. <factor type="double">5.5556e-05</factor>
  4995. <axis>
  4996. <x type="double">1</x>
  4997. </axis>
  4998. </animation>
  4999. <animation n="573">
  5000. <type type="string">textranslate</type>
  5001. <object-name type="string">Plane.573</object-name>
  5002. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[29]/elevation-ft</property>
  5003. <factor type="double">5.5556e-05</factor>
  5004. <axis>
  5005. <x type="double">1</x>
  5006. </axis>
  5007. </animation>
  5008. <animation n="574">
  5009. <type type="string">textranslate</type>
  5010. <object-name type="string">Plane.574</object-name>
  5011. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[30]/elevation-ft</property>
  5012. <factor type="double">5.5556e-05</factor>
  5013. <axis>
  5014. <x type="double">1</x>
  5015. </axis>
  5016. </animation>
  5017. <animation n="575">
  5018. <type type="string">textranslate</type>
  5019. <object-name type="string">Plane.575</object-name>
  5020. <property type="string">/instrumentation/terrain-map/pixels/row[17]/col[31]/elevation-ft</property>
  5021. <factor type="double">5.5556e-05</factor>
  5022. <axis>
  5023. <x type="double">1</x>
  5024. </axis>
  5025. </animation>
  5026. <animation n="577">
  5027. <type type="string">textranslate</type>
  5028. <object-name type="string">Plane.577</object-name>
  5029. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[1]/elevation-ft</property>
  5030. <factor type="double">5.5556e-05</factor>
  5031. <axis>
  5032. <x type="double">1</x>
  5033. </axis>
  5034. </animation>
  5035. <animation n="578">
  5036. <type type="string">textranslate</type>
  5037. <object-name type="string">Plane.578</object-name>
  5038. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[2]/elevation-ft</property>
  5039. <factor type="double">5.5556e-05</factor>
  5040. <axis>
  5041. <x type="double">1</x>
  5042. </axis>
  5043. </animation>
  5044. <animation n="579">
  5045. <type type="string">textranslate</type>
  5046. <object-name type="string">Plane.579</object-name>
  5047. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[3]/elevation-ft</property>
  5048. <factor type="double">5.5556e-05</factor>
  5049. <axis>
  5050. <x type="double">1</x>
  5051. </axis>
  5052. </animation>
  5053. <animation n="580">
  5054. <type type="string">textranslate</type>
  5055. <object-name type="string">Plane.580</object-name>
  5056. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[4]/elevation-ft</property>
  5057. <factor type="double">5.5556e-05</factor>
  5058. <axis>
  5059. <x type="double">1</x>
  5060. </axis>
  5061. </animation>
  5062. <animation n="581">
  5063. <type type="string">textranslate</type>
  5064. <object-name type="string">Plane.581</object-name>
  5065. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[5]/elevation-ft</property>
  5066. <factor type="double">5.5556e-05</factor>
  5067. <axis>
  5068. <x type="double">1</x>
  5069. </axis>
  5070. </animation>
  5071. <animation n="582">
  5072. <type type="string">textranslate</type>
  5073. <object-name type="string">Plane.582</object-name>
  5074. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[6]/elevation-ft</property>
  5075. <factor type="double">5.5556e-05</factor>
  5076. <axis>
  5077. <x type="double">1</x>
  5078. </axis>
  5079. </animation>
  5080. <animation n="583">
  5081. <type type="string">textranslate</type>
  5082. <object-name type="string">Plane.583</object-name>
  5083. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[7]/elevation-ft</property>
  5084. <factor type="double">5.5556e-05</factor>
  5085. <axis>
  5086. <x type="double">1</x>
  5087. </axis>
  5088. </animation>
  5089. <animation n="584">
  5090. <type type="string">textranslate</type>
  5091. <object-name type="string">Plane.584</object-name>
  5092. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[8]/elevation-ft</property>
  5093. <factor type="double">5.5556e-05</factor>
  5094. <axis>
  5095. <x type="double">1</x>
  5096. </axis>
  5097. </animation>
  5098. <animation n="585">
  5099. <type type="string">textranslate</type>
  5100. <object-name type="string">Plane.585</object-name>
  5101. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[9]/elevation-ft</property>
  5102. <factor type="double">5.5556e-05</factor>
  5103. <axis>
  5104. <x type="double">1</x>
  5105. </axis>
  5106. </animation>
  5107. <animation n="586">
  5108. <type type="string">textranslate</type>
  5109. <object-name type="string">Plane.586</object-name>
  5110. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[10]/elevation-ft</property>
  5111. <factor type="double">5.5556e-05</factor>
  5112. <axis>
  5113. <x type="double">1</x>
  5114. </axis>
  5115. </animation>
  5116. <animation n="587">
  5117. <type type="string">textranslate</type>
  5118. <object-name type="string">Plane.587</object-name>
  5119. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[11]/elevation-ft</property>
  5120. <factor type="double">5.5556e-05</factor>
  5121. <axis>
  5122. <x type="double">1</x>
  5123. </axis>
  5124. </animation>
  5125. <animation n="588">
  5126. <type type="string">textranslate</type>
  5127. <object-name type="string">Plane.588</object-name>
  5128. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[12]/elevation-ft</property>
  5129. <factor type="double">5.5556e-05</factor>
  5130. <axis>
  5131. <x type="double">1</x>
  5132. </axis>
  5133. </animation>
  5134. <animation n="589">
  5135. <type type="string">textranslate</type>
  5136. <object-name type="string">Plane.589</object-name>
  5137. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[13]/elevation-ft</property>
  5138. <factor type="double">5.5556e-05</factor>
  5139. <axis>
  5140. <x type="double">1</x>
  5141. </axis>
  5142. </animation>
  5143. <animation n="590">
  5144. <type type="string">textranslate</type>
  5145. <object-name type="string">Plane.590</object-name>
  5146. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[14]/elevation-ft</property>
  5147. <factor type="double">5.5556e-05</factor>
  5148. <axis>
  5149. <x type="double">1</x>
  5150. </axis>
  5151. </animation>
  5152. <animation n="591">
  5153. <type type="string">textranslate</type>
  5154. <object-name type="string">Plane.591</object-name>
  5155. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[15]/elevation-ft</property>
  5156. <factor type="double">5.5556e-05</factor>
  5157. <axis>
  5158. <x type="double">1</x>
  5159. </axis>
  5160. </animation>
  5161. <animation n="592">
  5162. <type type="string">textranslate</type>
  5163. <object-name type="string">Plane.592</object-name>
  5164. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[16]/elevation-ft</property>
  5165. <factor type="double">5.5556e-05</factor>
  5166. <axis>
  5167. <x type="double">1</x>
  5168. </axis>
  5169. </animation>
  5170. <animation n="593">
  5171. <type type="string">textranslate</type>
  5172. <object-name type="string">Plane.593</object-name>
  5173. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[17]/elevation-ft</property>
  5174. <factor type="double">5.5556e-05</factor>
  5175. <axis>
  5176. <x type="double">1</x>
  5177. </axis>
  5178. </animation>
  5179. <animation n="594">
  5180. <type type="string">textranslate</type>
  5181. <object-name type="string">Plane.594</object-name>
  5182. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[18]/elevation-ft</property>
  5183. <factor type="double">5.5556e-05</factor>
  5184. <axis>
  5185. <x type="double">1</x>
  5186. </axis>
  5187. </animation>
  5188. <animation n="595">
  5189. <type type="string">textranslate</type>
  5190. <object-name type="string">Plane.595</object-name>
  5191. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[19]/elevation-ft</property>
  5192. <factor type="double">5.5556e-05</factor>
  5193. <axis>
  5194. <x type="double">1</x>
  5195. </axis>
  5196. </animation>
  5197. <animation n="596">
  5198. <type type="string">textranslate</type>
  5199. <object-name type="string">Plane.596</object-name>
  5200. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[20]/elevation-ft</property>
  5201. <factor type="double">5.5556e-05</factor>
  5202. <axis>
  5203. <x type="double">1</x>
  5204. </axis>
  5205. </animation>
  5206. <animation n="597">
  5207. <type type="string">textranslate</type>
  5208. <object-name type="string">Plane.597</object-name>
  5209. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[21]/elevation-ft</property>
  5210. <factor type="double">5.5556e-05</factor>
  5211. <axis>
  5212. <x type="double">1</x>
  5213. </axis>
  5214. </animation>
  5215. <animation n="598">
  5216. <type type="string">textranslate</type>
  5217. <object-name type="string">Plane.598</object-name>
  5218. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[22]/elevation-ft</property>
  5219. <factor type="double">5.5556e-05</factor>
  5220. <axis>
  5221. <x type="double">1</x>
  5222. </axis>
  5223. </animation>
  5224. <animation n="599">
  5225. <type type="string">textranslate</type>
  5226. <object-name type="string">Plane.599</object-name>
  5227. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[23]/elevation-ft</property>
  5228. <factor type="double">5.5556e-05</factor>
  5229. <axis>
  5230. <x type="double">1</x>
  5231. </axis>
  5232. </animation>
  5233. <animation n="600">
  5234. <type type="string">textranslate</type>
  5235. <object-name type="string">Plane.600</object-name>
  5236. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[24]/elevation-ft</property>
  5237. <factor type="double">5.5556e-05</factor>
  5238. <axis>
  5239. <x type="double">1</x>
  5240. </axis>
  5241. </animation>
  5242. <animation n="601">
  5243. <type type="string">textranslate</type>
  5244. <object-name type="string">Plane.601</object-name>
  5245. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[25]/elevation-ft</property>
  5246. <factor type="double">5.5556e-05</factor>
  5247. <axis>
  5248. <x type="double">1</x>
  5249. </axis>
  5250. </animation>
  5251. <animation n="602">
  5252. <type type="string">textranslate</type>
  5253. <object-name type="string">Plane.602</object-name>
  5254. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[26]/elevation-ft</property>
  5255. <factor type="double">5.5556e-05</factor>
  5256. <axis>
  5257. <x type="double">1</x>
  5258. </axis>
  5259. </animation>
  5260. <animation n="603">
  5261. <type type="string">textranslate</type>
  5262. <object-name type="string">Plane.603</object-name>
  5263. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[27]/elevation-ft</property>
  5264. <factor type="double">5.5556e-05</factor>
  5265. <axis>
  5266. <x type="double">1</x>
  5267. </axis>
  5268. </animation>
  5269. <animation n="604">
  5270. <type type="string">textranslate</type>
  5271. <object-name type="string">Plane.604</object-name>
  5272. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[28]/elevation-ft</property>
  5273. <factor type="double">5.5556e-05</factor>
  5274. <axis>
  5275. <x type="double">1</x>
  5276. </axis>
  5277. </animation>
  5278. <animation n="605">
  5279. <type type="string">textranslate</type>
  5280. <object-name type="string">Plane.605</object-name>
  5281. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[29]/elevation-ft</property>
  5282. <factor type="double">5.5556e-05</factor>
  5283. <axis>
  5284. <x type="double">1</x>
  5285. </axis>
  5286. </animation>
  5287. <animation n="606">
  5288. <type type="string">textranslate</type>
  5289. <object-name type="string">Plane.606</object-name>
  5290. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[30]/elevation-ft</property>
  5291. <factor type="double">5.5556e-05</factor>
  5292. <axis>
  5293. <x type="double">1</x>
  5294. </axis>
  5295. </animation>
  5296. <animation n="607">
  5297. <type type="string">textranslate</type>
  5298. <object-name type="string">Plane.607</object-name>
  5299. <property type="string">/instrumentation/terrain-map/pixels/row[18]/col[31]/elevation-ft</property>
  5300. <factor type="double">5.5556e-05</factor>
  5301. <axis>
  5302. <x type="double">1</x>
  5303. </axis>
  5304. </animation>
  5305. <animation n="609">
  5306. <type type="string">textranslate</type>
  5307. <object-name type="string">Plane.609</object-name>
  5308. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[1]/elevation-ft</property>
  5309. <factor type="double">5.5556e-05</factor>
  5310. <axis>
  5311. <x type="double">1</x>
  5312. </axis>
  5313. </animation>
  5314. <animation n="610">
  5315. <type type="string">textranslate</type>
  5316. <object-name type="string">Plane.610</object-name>
  5317. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[2]/elevation-ft</property>
  5318. <factor type="double">5.5556e-05</factor>
  5319. <axis>
  5320. <x type="double">1</x>
  5321. </axis>
  5322. </animation>
  5323. <animation n="611">
  5324. <type type="string">textranslate</type>
  5325. <object-name type="string">Plane.611</object-name>
  5326. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[3]/elevation-ft</property>
  5327. <factor type="double">5.5556e-05</factor>
  5328. <axis>
  5329. <x type="double">1</x>
  5330. </axis>
  5331. </animation>
  5332. <animation n="612">
  5333. <type type="string">textranslate</type>
  5334. <object-name type="string">Plane.612</object-name>
  5335. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[4]/elevation-ft</property>
  5336. <factor type="double">5.5556e-05</factor>
  5337. <axis>
  5338. <x type="double">1</x>
  5339. </axis>
  5340. </animation>
  5341. <animation n="613">
  5342. <type type="string">textranslate</type>
  5343. <object-name type="string">Plane.613</object-name>
  5344. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[5]/elevation-ft</property>
  5345. <factor type="double">5.5556e-05</factor>
  5346. <axis>
  5347. <x type="double">1</x>
  5348. </axis>
  5349. </animation>
  5350. <animation n="614">
  5351. <type type="string">textranslate</type>
  5352. <object-name type="string">Plane.614</object-name>
  5353. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[6]/elevation-ft</property>
  5354. <factor type="double">5.5556e-05</factor>
  5355. <axis>
  5356. <x type="double">1</x>
  5357. </axis>
  5358. </animation>
  5359. <animation n="615">
  5360. <type type="string">textranslate</type>
  5361. <object-name type="string">Plane.615</object-name>
  5362. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[7]/elevation-ft</property>
  5363. <factor type="double">5.5556e-05</factor>
  5364. <axis>
  5365. <x type="double">1</x>
  5366. </axis>
  5367. </animation>
  5368. <animation n="616">
  5369. <type type="string">textranslate</type>
  5370. <object-name type="string">Plane.616</object-name>
  5371. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[8]/elevation-ft</property>
  5372. <factor type="double">5.5556e-05</factor>
  5373. <axis>
  5374. <x type="double">1</x>
  5375. </axis>
  5376. </animation>
  5377. <animation n="617">
  5378. <type type="string">textranslate</type>
  5379. <object-name type="string">Plane.617</object-name>
  5380. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[9]/elevation-ft</property>
  5381. <factor type="double">5.5556e-05</factor>
  5382. <axis>
  5383. <x type="double">1</x>
  5384. </axis>
  5385. </animation>
  5386. <animation n="618">
  5387. <type type="string">textranslate</type>
  5388. <object-name type="string">Plane.618</object-name>
  5389. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[10]/elevation-ft</property>
  5390. <factor type="double">5.5556e-05</factor>
  5391. <axis>
  5392. <x type="double">1</x>
  5393. </axis>
  5394. </animation>
  5395. <animation n="619">
  5396. <type type="string">textranslate</type>
  5397. <object-name type="string">Plane.619</object-name>
  5398. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[11]/elevation-ft</property>
  5399. <factor type="double">5.5556e-05</factor>
  5400. <axis>
  5401. <x type="double">1</x>
  5402. </axis>
  5403. </animation>
  5404. <animation n="620">
  5405. <type type="string">textranslate</type>
  5406. <object-name type="string">Plane.620</object-name>
  5407. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[12]/elevation-ft</property>
  5408. <factor type="double">5.5556e-05</factor>
  5409. <axis>
  5410. <x type="double">1</x>
  5411. </axis>
  5412. </animation>
  5413. <animation n="621">
  5414. <type type="string">textranslate</type>
  5415. <object-name type="string">Plane.621</object-name>
  5416. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[13]/elevation-ft</property>
  5417. <factor type="double">5.5556e-05</factor>
  5418. <axis>
  5419. <x type="double">1</x>
  5420. </axis>
  5421. </animation>
  5422. <animation n="622">
  5423. <type type="string">textranslate</type>
  5424. <object-name type="string">Plane.622</object-name>
  5425. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[14]/elevation-ft</property>
  5426. <factor type="double">5.5556e-05</factor>
  5427. <axis>
  5428. <x type="double">1</x>
  5429. </axis>
  5430. </animation>
  5431. <animation n="623">
  5432. <type type="string">textranslate</type>
  5433. <object-name type="string">Plane.623</object-name>
  5434. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[15]/elevation-ft</property>
  5435. <factor type="double">5.5556e-05</factor>
  5436. <axis>
  5437. <x type="double">1</x>
  5438. </axis>
  5439. </animation>
  5440. <animation n="624">
  5441. <type type="string">textranslate</type>
  5442. <object-name type="string">Plane.624</object-name>
  5443. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[16]/elevation-ft</property>
  5444. <factor type="double">5.5556e-05</factor>
  5445. <axis>
  5446. <x type="double">1</x>
  5447. </axis>
  5448. </animation>
  5449. <animation n="625">
  5450. <type type="string">textranslate</type>
  5451. <object-name type="string">Plane.625</object-name>
  5452. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[17]/elevation-ft</property>
  5453. <factor type="double">5.5556e-05</factor>
  5454. <axis>
  5455. <x type="double">1</x>
  5456. </axis>
  5457. </animation>
  5458. <animation n="626">
  5459. <type type="string">textranslate</type>
  5460. <object-name type="string">Plane.626</object-name>
  5461. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[18]/elevation-ft</property>
  5462. <factor type="double">5.5556e-05</factor>
  5463. <axis>
  5464. <x type="double">1</x>
  5465. </axis>
  5466. </animation>
  5467. <animation n="627">
  5468. <type type="string">textranslate</type>
  5469. <object-name type="string">Plane.627</object-name>
  5470. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[19]/elevation-ft</property>
  5471. <factor type="double">5.5556e-05</factor>
  5472. <axis>
  5473. <x type="double">1</x>
  5474. </axis>
  5475. </animation>
  5476. <animation n="628">
  5477. <type type="string">textranslate</type>
  5478. <object-name type="string">Plane.628</object-name>
  5479. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[20]/elevation-ft</property>
  5480. <factor type="double">5.5556e-05</factor>
  5481. <axis>
  5482. <x type="double">1</x>
  5483. </axis>
  5484. </animation>
  5485. <animation n="629">
  5486. <type type="string">textranslate</type>
  5487. <object-name type="string">Plane.629</object-name>
  5488. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[21]/elevation-ft</property>
  5489. <factor type="double">5.5556e-05</factor>
  5490. <axis>
  5491. <x type="double">1</x>
  5492. </axis>
  5493. </animation>
  5494. <animation n="630">
  5495. <type type="string">textranslate</type>
  5496. <object-name type="string">Plane.630</object-name>
  5497. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[22]/elevation-ft</property>
  5498. <factor type="double">5.5556e-05</factor>
  5499. <axis>
  5500. <x type="double">1</x>
  5501. </axis>
  5502. </animation>
  5503. <animation n="631">
  5504. <type type="string">textranslate</type>
  5505. <object-name type="string">Plane.631</object-name>
  5506. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[23]/elevation-ft</property>
  5507. <factor type="double">5.5556e-05</factor>
  5508. <axis>
  5509. <x type="double">1</x>
  5510. </axis>
  5511. </animation>
  5512. <animation n="632">
  5513. <type type="string">textranslate</type>
  5514. <object-name type="string">Plane.632</object-name>
  5515. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[24]/elevation-ft</property>
  5516. <factor type="double">5.5556e-05</factor>
  5517. <axis>
  5518. <x type="double">1</x>
  5519. </axis>
  5520. </animation>
  5521. <animation n="633">
  5522. <type type="string">textranslate</type>
  5523. <object-name type="string">Plane.633</object-name>
  5524. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[25]/elevation-ft</property>
  5525. <factor type="double">5.5556e-05</factor>
  5526. <axis>
  5527. <x type="double">1</x>
  5528. </axis>
  5529. </animation>
  5530. <animation n="634">
  5531. <type type="string">textranslate</type>
  5532. <object-name type="string">Plane.634</object-name>
  5533. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[26]/elevation-ft</property>
  5534. <factor type="double">5.5556e-05</factor>
  5535. <axis>
  5536. <x type="double">1</x>
  5537. </axis>
  5538. </animation>
  5539. <animation n="635">
  5540. <type type="string">textranslate</type>
  5541. <object-name type="string">Plane.635</object-name>
  5542. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[27]/elevation-ft</property>
  5543. <factor type="double">5.5556e-05</factor>
  5544. <axis>
  5545. <x type="double">1</x>
  5546. </axis>
  5547. </animation>
  5548. <animation n="636">
  5549. <type type="string">textranslate</type>
  5550. <object-name type="string">Plane.636</object-name>
  5551. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[28]/elevation-ft</property>
  5552. <factor type="double">5.5556e-05</factor>
  5553. <axis>
  5554. <x type="double">1</x>
  5555. </axis>
  5556. </animation>
  5557. <animation n="637">
  5558. <type type="string">textranslate</type>
  5559. <object-name type="string">Plane.637</object-name>
  5560. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[29]/elevation-ft</property>
  5561. <factor type="double">5.5556e-05</factor>
  5562. <axis>
  5563. <x type="double">1</x>
  5564. </axis>
  5565. </animation>
  5566. <animation n="638">
  5567. <type type="string">textranslate</type>
  5568. <object-name type="string">Plane.638</object-name>
  5569. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[30]/elevation-ft</property>
  5570. <factor type="double">5.5556e-05</factor>
  5571. <axis>
  5572. <x type="double">1</x>
  5573. </axis>
  5574. </animation>
  5575. <animation n="639">
  5576. <type type="string">textranslate</type>
  5577. <object-name type="string">Plane.639</object-name>
  5578. <property type="string">/instrumentation/terrain-map/pixels/row[19]/col[31]/elevation-ft</property>
  5579. <factor type="double">5.5556e-05</factor>
  5580. <axis>
  5581. <x type="double">1</x>
  5582. </axis>
  5583. </animation>
  5584. <animation n="641">
  5585. <type type="string">textranslate</type>
  5586. <object-name type="string">Plane.641</object-name>
  5587. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[1]/elevation-ft</property>
  5588. <factor type="double">5.5556e-05</factor>
  5589. <axis>
  5590. <x type="double">1</x>
  5591. </axis>
  5592. </animation>
  5593. <animation n="642">
  5594. <type type="string">textranslate</type>
  5595. <object-name type="string">Plane.642</object-name>
  5596. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[2]/elevation-ft</property>
  5597. <factor type="double">5.5556e-05</factor>
  5598. <axis>
  5599. <x type="double">1</x>
  5600. </axis>
  5601. </animation>
  5602. <animation n="643">
  5603. <type type="string">textranslate</type>
  5604. <object-name type="string">Plane.643</object-name>
  5605. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[3]/elevation-ft</property>
  5606. <factor type="double">5.5556e-05</factor>
  5607. <axis>
  5608. <x type="double">1</x>
  5609. </axis>
  5610. </animation>
  5611. <animation n="644">
  5612. <type type="string">textranslate</type>
  5613. <object-name type="string">Plane.644</object-name>
  5614. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[4]/elevation-ft</property>
  5615. <factor type="double">5.5556e-05</factor>
  5616. <axis>
  5617. <x type="double">1</x>
  5618. </axis>
  5619. </animation>
  5620. <animation n="645">
  5621. <type type="string">textranslate</type>
  5622. <object-name type="string">Plane.645</object-name>
  5623. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[5]/elevation-ft</property>
  5624. <factor type="double">5.5556e-05</factor>
  5625. <axis>
  5626. <x type="double">1</x>
  5627. </axis>
  5628. </animation>
  5629. <animation n="646">
  5630. <type type="string">textranslate</type>
  5631. <object-name type="string">Plane.646</object-name>
  5632. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[6]/elevation-ft</property>
  5633. <factor type="double">5.5556e-05</factor>
  5634. <axis>
  5635. <x type="double">1</x>
  5636. </axis>
  5637. </animation>
  5638. <animation n="647">
  5639. <type type="string">textranslate</type>
  5640. <object-name type="string">Plane.647</object-name>
  5641. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[7]/elevation-ft</property>
  5642. <factor type="double">5.5556e-05</factor>
  5643. <axis>
  5644. <x type="double">1</x>
  5645. </axis>
  5646. </animation>
  5647. <animation n="648">
  5648. <type type="string">textranslate</type>
  5649. <object-name type="string">Plane.648</object-name>
  5650. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[8]/elevation-ft</property>
  5651. <factor type="double">5.5556e-05</factor>
  5652. <axis>
  5653. <x type="double">1</x>
  5654. </axis>
  5655. </animation>
  5656. <animation n="649">
  5657. <type type="string">textranslate</type>
  5658. <object-name type="string">Plane.649</object-name>
  5659. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[9]/elevation-ft</property>
  5660. <factor type="double">5.5556e-05</factor>
  5661. <axis>
  5662. <x type="double">1</x>
  5663. </axis>
  5664. </animation>
  5665. <animation n="650">
  5666. <type type="string">textranslate</type>
  5667. <object-name type="string">Plane.650</object-name>
  5668. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[10]/elevation-ft</property>
  5669. <factor type="double">5.5556e-05</factor>
  5670. <axis>
  5671. <x type="double">1</x>
  5672. </axis>
  5673. </animation>
  5674. <animation n="651">
  5675. <type type="string">textranslate</type>
  5676. <object-name type="string">Plane.651</object-name>
  5677. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[11]/elevation-ft</property>
  5678. <factor type="double">5.5556e-05</factor>
  5679. <axis>
  5680. <x type="double">1</x>
  5681. </axis>
  5682. </animation>
  5683. <animation n="652">
  5684. <type type="string">textranslate</type>
  5685. <object-name type="string">Plane.652</object-name>
  5686. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[12]/elevation-ft</property>
  5687. <factor type="double">5.5556e-05</factor>
  5688. <axis>
  5689. <x type="double">1</x>
  5690. </axis>
  5691. </animation>
  5692. <animation n="653">
  5693. <type type="string">textranslate</type>
  5694. <object-name type="string">Plane.653</object-name>
  5695. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[13]/elevation-ft</property>
  5696. <factor type="double">5.5556e-05</factor>
  5697. <axis>
  5698. <x type="double">1</x>
  5699. </axis>
  5700. </animation>
  5701. <animation n="654">
  5702. <type type="string">textranslate</type>
  5703. <object-name type="string">Plane.654</object-name>
  5704. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[14]/elevation-ft</property>
  5705. <factor type="double">5.5556e-05</factor>
  5706. <axis>
  5707. <x type="double">1</x>
  5708. </axis>
  5709. </animation>
  5710. <animation n="655">
  5711. <type type="string">textranslate</type>
  5712. <object-name type="string">Plane.655</object-name>
  5713. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[15]/elevation-ft</property>
  5714. <factor type="double">5.5556e-05</factor>
  5715. <axis>
  5716. <x type="double">1</x>
  5717. </axis>
  5718. </animation>
  5719. <animation n="656">
  5720. <type type="string">textranslate</type>
  5721. <object-name type="string">Plane.656</object-name>
  5722. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[16]/elevation-ft</property>
  5723. <factor type="double">5.5556e-05</factor>
  5724. <axis>
  5725. <x type="double">1</x>
  5726. </axis>
  5727. </animation>
  5728. <animation n="657">
  5729. <type type="string">textranslate</type>
  5730. <object-name type="string">Plane.657</object-name>
  5731. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[17]/elevation-ft</property>
  5732. <factor type="double">5.5556e-05</factor>
  5733. <axis>
  5734. <x type="double">1</x>
  5735. </axis>
  5736. </animation>
  5737. <animation n="658">
  5738. <type type="string">textranslate</type>
  5739. <object-name type="string">Plane.658</object-name>
  5740. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[18]/elevation-ft</property>
  5741. <factor type="double">5.5556e-05</factor>
  5742. <axis>
  5743. <x type="double">1</x>
  5744. </axis>
  5745. </animation>
  5746. <animation n="659">
  5747. <type type="string">textranslate</type>
  5748. <object-name type="string">Plane.659</object-name>
  5749. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[19]/elevation-ft</property>
  5750. <factor type="double">5.5556e-05</factor>
  5751. <axis>
  5752. <x type="double">1</x>
  5753. </axis>
  5754. </animation>
  5755. <animation n="660">
  5756. <type type="string">textranslate</type>
  5757. <object-name type="string">Plane.660</object-name>
  5758. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[20]/elevation-ft</property>
  5759. <factor type="double">5.5556e-05</factor>
  5760. <axis>
  5761. <x type="double">1</x>
  5762. </axis>
  5763. </animation>
  5764. <animation n="661">
  5765. <type type="string">textranslate</type>
  5766. <object-name type="string">Plane.661</object-name>
  5767. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[21]/elevation-ft</property>
  5768. <factor type="double">5.5556e-05</factor>
  5769. <axis>
  5770. <x type="double">1</x>
  5771. </axis>
  5772. </animation>
  5773. <animation n="662">
  5774. <type type="string">textranslate</type>
  5775. <object-name type="string">Plane.662</object-name>
  5776. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[22]/elevation-ft</property>
  5777. <factor type="double">5.5556e-05</factor>
  5778. <axis>
  5779. <x type="double">1</x>
  5780. </axis>
  5781. </animation>
  5782. <animation n="663">
  5783. <type type="string">textranslate</type>
  5784. <object-name type="string">Plane.663</object-name>
  5785. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[23]/elevation-ft</property>
  5786. <factor type="double">5.5556e-05</factor>
  5787. <axis>
  5788. <x type="double">1</x>
  5789. </axis>
  5790. </animation>
  5791. <animation n="664">
  5792. <type type="string">textranslate</type>
  5793. <object-name type="string">Plane.664</object-name>
  5794. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[24]/elevation-ft</property>
  5795. <factor type="double">5.5556e-05</factor>
  5796. <axis>
  5797. <x type="double">1</x>
  5798. </axis>
  5799. </animation>
  5800. <animation n="665">
  5801. <type type="string">textranslate</type>
  5802. <object-name type="string">Plane.665</object-name>
  5803. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[25]/elevation-ft</property>
  5804. <factor type="double">5.5556e-05</factor>
  5805. <axis>
  5806. <x type="double">1</x>
  5807. </axis>
  5808. </animation>
  5809. <animation n="666">
  5810. <type type="string">textranslate</type>
  5811. <object-name type="string">Plane.666</object-name>
  5812. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[26]/elevation-ft</property>
  5813. <factor type="double">5.5556e-05</factor>
  5814. <axis>
  5815. <x type="double">1</x>
  5816. </axis>
  5817. </animation>
  5818. <animation n="667">
  5819. <type type="string">textranslate</type>
  5820. <object-name type="string">Plane.667</object-name>
  5821. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[27]/elevation-ft</property>
  5822. <factor type="double">5.5556e-05</factor>
  5823. <axis>
  5824. <x type="double">1</x>
  5825. </axis>
  5826. </animation>
  5827. <animation n="668">
  5828. <type type="string">textranslate</type>
  5829. <object-name type="string">Plane.668</object-name>
  5830. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[28]/elevation-ft</property>
  5831. <factor type="double">5.5556e-05</factor>
  5832. <axis>
  5833. <x type="double">1</x>
  5834. </axis>
  5835. </animation>
  5836. <animation n="669">
  5837. <type type="string">textranslate</type>
  5838. <object-name type="string">Plane.669</object-name>
  5839. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[29]/elevation-ft</property>
  5840. <factor type="double">5.5556e-05</factor>
  5841. <axis>
  5842. <x type="double">1</x>
  5843. </axis>
  5844. </animation>
  5845. <animation n="670">
  5846. <type type="string">textranslate</type>
  5847. <object-name type="string">Plane.670</object-name>
  5848. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[30]/elevation-ft</property>
  5849. <factor type="double">5.5556e-05</factor>
  5850. <axis>
  5851. <x type="double">1</x>
  5852. </axis>
  5853. </animation>
  5854. <animation n="671">
  5855. <type type="string">textranslate</type>
  5856. <object-name type="string">Plane.671</object-name>
  5857. <property type="string">/instrumentation/terrain-map/pixels/row[20]/col[31]/elevation-ft</property>
  5858. <factor type="double">5.5556e-05</factor>
  5859. <axis>
  5860. <x type="double">1</x>
  5861. </axis>
  5862. </animation>
  5863. <animation n="673">
  5864. <type type="string">textranslate</type>
  5865. <object-name type="string">Plane.673</object-name>
  5866. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[1]/elevation-ft</property>
  5867. <factor type="double">5.5556e-05</factor>
  5868. <axis>
  5869. <x type="double">1</x>
  5870. </axis>
  5871. </animation>
  5872. <animation n="674">
  5873. <type type="string">textranslate</type>
  5874. <object-name type="string">Plane.674</object-name>
  5875. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[2]/elevation-ft</property>
  5876. <factor type="double">5.5556e-05</factor>
  5877. <axis>
  5878. <x type="double">1</x>
  5879. </axis>
  5880. </animation>
  5881. <animation n="675">
  5882. <type type="string">textranslate</type>
  5883. <object-name type="string">Plane.675</object-name>
  5884. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[3]/elevation-ft</property>
  5885. <factor type="double">5.5556e-05</factor>
  5886. <axis>
  5887. <x type="double">1</x>
  5888. </axis>
  5889. </animation>
  5890. <animation n="676">
  5891. <type type="string">textranslate</type>
  5892. <object-name type="string">Plane.676</object-name>
  5893. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[4]/elevation-ft</property>
  5894. <factor type="double">5.5556e-05</factor>
  5895. <axis>
  5896. <x type="double">1</x>
  5897. </axis>
  5898. </animation>
  5899. <animation n="677">
  5900. <type type="string">textranslate</type>
  5901. <object-name type="string">Plane.677</object-name>
  5902. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[5]/elevation-ft</property>
  5903. <factor type="double">5.5556e-05</factor>
  5904. <axis>
  5905. <x type="double">1</x>
  5906. </axis>
  5907. </animation>
  5908. <animation n="678">
  5909. <type type="string">textranslate</type>
  5910. <object-name type="string">Plane.678</object-name>
  5911. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[6]/elevation-ft</property>
  5912. <factor type="double">5.5556e-05</factor>
  5913. <axis>
  5914. <x type="double">1</x>
  5915. </axis>
  5916. </animation>
  5917. <animation n="679">
  5918. <type type="string">textranslate</type>
  5919. <object-name type="string">Plane.679</object-name>
  5920. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[7]/elevation-ft</property>
  5921. <factor type="double">5.5556e-05</factor>
  5922. <axis>
  5923. <x type="double">1</x>
  5924. </axis>
  5925. </animation>
  5926. <animation n="680">
  5927. <type type="string">textranslate</type>
  5928. <object-name type="string">Plane.680</object-name>
  5929. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[8]/elevation-ft</property>
  5930. <factor type="double">5.5556e-05</factor>
  5931. <axis>
  5932. <x type="double">1</x>
  5933. </axis>
  5934. </animation>
  5935. <animation n="681">
  5936. <type type="string">textranslate</type>
  5937. <object-name type="string">Plane.681</object-name>
  5938. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[9]/elevation-ft</property>
  5939. <factor type="double">5.5556e-05</factor>
  5940. <axis>
  5941. <x type="double">1</x>
  5942. </axis>
  5943. </animation>
  5944. <animation n="682">
  5945. <type type="string">textranslate</type>
  5946. <object-name type="string">Plane.682</object-name>
  5947. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[10]/elevation-ft</property>
  5948. <factor type="double">5.5556e-05</factor>
  5949. <axis>
  5950. <x type="double">1</x>
  5951. </axis>
  5952. </animation>
  5953. <animation n="683">
  5954. <type type="string">textranslate</type>
  5955. <object-name type="string">Plane.683</object-name>
  5956. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[11]/elevation-ft</property>
  5957. <factor type="double">5.5556e-05</factor>
  5958. <axis>
  5959. <x type="double">1</x>
  5960. </axis>
  5961. </animation>
  5962. <animation n="684">
  5963. <type type="string">textranslate</type>
  5964. <object-name type="string">Plane.684</object-name>
  5965. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[12]/elevation-ft</property>
  5966. <factor type="double">5.5556e-05</factor>
  5967. <axis>
  5968. <x type="double">1</x>
  5969. </axis>
  5970. </animation>
  5971. <animation n="685">
  5972. <type type="string">textranslate</type>
  5973. <object-name type="string">Plane.685</object-name>
  5974. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[13]/elevation-ft</property>
  5975. <factor type="double">5.5556e-05</factor>
  5976. <axis>
  5977. <x type="double">1</x>
  5978. </axis>
  5979. </animation>
  5980. <animation n="686">
  5981. <type type="string">textranslate</type>
  5982. <object-name type="string">Plane.686</object-name>
  5983. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[14]/elevation-ft</property>
  5984. <factor type="double">5.5556e-05</factor>
  5985. <axis>
  5986. <x type="double">1</x>
  5987. </axis>
  5988. </animation>
  5989. <animation n="687">
  5990. <type type="string">textranslate</type>
  5991. <object-name type="string">Plane.687</object-name>
  5992. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[15]/elevation-ft</property>
  5993. <factor type="double">5.5556e-05</factor>
  5994. <axis>
  5995. <x type="double">1</x>
  5996. </axis>
  5997. </animation>
  5998. <animation n="688">
  5999. <type type="string">textranslate</type>
  6000. <object-name type="string">Plane.688</object-name>
  6001. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[16]/elevation-ft</property>
  6002. <factor type="double">5.5556e-05</factor>
  6003. <axis>
  6004. <x type="double">1</x>
  6005. </axis>
  6006. </animation>
  6007. <animation n="689">
  6008. <type type="string">textranslate</type>
  6009. <object-name type="string">Plane.689</object-name>
  6010. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[17]/elevation-ft</property>
  6011. <factor type="double">5.5556e-05</factor>
  6012. <axis>
  6013. <x type="double">1</x>
  6014. </axis>
  6015. </animation>
  6016. <animation n="690">
  6017. <type type="string">textranslate</type>
  6018. <object-name type="string">Plane.690</object-name>
  6019. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[18]/elevation-ft</property>
  6020. <factor type="double">5.5556e-05</factor>
  6021. <axis>
  6022. <x type="double">1</x>
  6023. </axis>
  6024. </animation>
  6025. <animation n="691">
  6026. <type type="string">textranslate</type>
  6027. <object-name type="string">Plane.691</object-name>
  6028. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[19]/elevation-ft</property>
  6029. <factor type="double">5.5556e-05</factor>
  6030. <axis>
  6031. <x type="double">1</x>
  6032. </axis>
  6033. </animation>
  6034. <animation n="692">
  6035. <type type="string">textranslate</type>
  6036. <object-name type="string">Plane.692</object-name>
  6037. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[20]/elevation-ft</property>
  6038. <factor type="double">5.5556e-05</factor>
  6039. <axis>
  6040. <x type="double">1</x>
  6041. </axis>
  6042. </animation>
  6043. <animation n="693">
  6044. <type type="string">textranslate</type>
  6045. <object-name type="string">Plane.693</object-name>
  6046. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[21]/elevation-ft</property>
  6047. <factor type="double">5.5556e-05</factor>
  6048. <axis>
  6049. <x type="double">1</x>
  6050. </axis>
  6051. </animation>
  6052. <animation n="694">
  6053. <type type="string">textranslate</type>
  6054. <object-name type="string">Plane.694</object-name>
  6055. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[22]/elevation-ft</property>
  6056. <factor type="double">5.5556e-05</factor>
  6057. <axis>
  6058. <x type="double">1</x>
  6059. </axis>
  6060. </animation>
  6061. <animation n="695">
  6062. <type type="string">textranslate</type>
  6063. <object-name type="string">Plane.695</object-name>
  6064. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[23]/elevation-ft</property>
  6065. <factor type="double">5.5556e-05</factor>
  6066. <axis>
  6067. <x type="double">1</x>
  6068. </axis>
  6069. </animation>
  6070. <animation n="696">
  6071. <type type="string">textranslate</type>
  6072. <object-name type="string">Plane.696</object-name>
  6073. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[24]/elevation-ft</property>
  6074. <factor type="double">5.5556e-05</factor>
  6075. <axis>
  6076. <x type="double">1</x>
  6077. </axis>
  6078. </animation>
  6079. <animation n="697">
  6080. <type type="string">textranslate</type>
  6081. <object-name type="string">Plane.697</object-name>
  6082. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[25]/elevation-ft</property>
  6083. <factor type="double">5.5556e-05</factor>
  6084. <axis>
  6085. <x type="double">1</x>
  6086. </axis>
  6087. </animation>
  6088. <animation n="698">
  6089. <type type="string">textranslate</type>
  6090. <object-name type="string">Plane.698</object-name>
  6091. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[26]/elevation-ft</property>
  6092. <factor type="double">5.5556e-05</factor>
  6093. <axis>
  6094. <x type="double">1</x>
  6095. </axis>
  6096. </animation>
  6097. <animation n="699">
  6098. <type type="string">textranslate</type>
  6099. <object-name type="string">Plane.699</object-name>
  6100. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[27]/elevation-ft</property>
  6101. <factor type="double">5.5556e-05</factor>
  6102. <axis>
  6103. <x type="double">1</x>
  6104. </axis>
  6105. </animation>
  6106. <animation n="700">
  6107. <type type="string">textranslate</type>
  6108. <object-name type="string">Plane.700</object-name>
  6109. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[28]/elevation-ft</property>
  6110. <factor type="double">5.5556e-05</factor>
  6111. <axis>
  6112. <x type="double">1</x>
  6113. </axis>
  6114. </animation>
  6115. <animation n="701">
  6116. <type type="string">textranslate</type>
  6117. <object-name type="string">Plane.701</object-name>
  6118. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[29]/elevation-ft</property>
  6119. <factor type="double">5.5556e-05</factor>
  6120. <axis>
  6121. <x type="double">1</x>
  6122. </axis>
  6123. </animation>
  6124. <animation n="702">
  6125. <type type="string">textranslate</type>
  6126. <object-name type="string">Plane.702</object-name>
  6127. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[30]/elevation-ft</property>
  6128. <factor type="double">5.5556e-05</factor>
  6129. <axis>
  6130. <x type="double">1</x>
  6131. </axis>
  6132. </animation>
  6133. <animation n="703">
  6134. <type type="string">textranslate</type>
  6135. <object-name type="string">Plane.703</object-name>
  6136. <property type="string">/instrumentation/terrain-map/pixels/row[21]/col[31]/elevation-ft</property>
  6137. <factor type="double">5.5556e-05</factor>
  6138. <axis>
  6139. <x type="double">1</x>
  6140. </axis>
  6141. </animation>
  6142. <animation n="705">
  6143. <type type="string">textranslate</type>
  6144. <object-name type="string">Plane.705</object-name>
  6145. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[1]/elevation-ft</property>
  6146. <factor type="double">5.5556e-05</factor>
  6147. <axis>
  6148. <x type="double">1</x>
  6149. </axis>
  6150. </animation>
  6151. <animation n="706">
  6152. <type type="string">textranslate</type>
  6153. <object-name type="string">Plane.706</object-name>
  6154. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[2]/elevation-ft</property>
  6155. <factor type="double">5.5556e-05</factor>
  6156. <axis>
  6157. <x type="double">1</x>
  6158. </axis>
  6159. </animation>
  6160. <animation n="707">
  6161. <type type="string">textranslate</type>
  6162. <object-name type="string">Plane.707</object-name>
  6163. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[3]/elevation-ft</property>
  6164. <factor type="double">5.5556e-05</factor>
  6165. <axis>
  6166. <x type="double">1</x>
  6167. </axis>
  6168. </animation>
  6169. <animation n="708">
  6170. <type type="string">textranslate</type>
  6171. <object-name type="string">Plane.708</object-name>
  6172. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[4]/elevation-ft</property>
  6173. <factor type="double">5.5556e-05</factor>
  6174. <axis>
  6175. <x type="double">1</x>
  6176. </axis>
  6177. </animation>
  6178. <animation n="709">
  6179. <type type="string">textranslate</type>
  6180. <object-name type="string">Plane.709</object-name>
  6181. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[5]/elevation-ft</property>
  6182. <factor type="double">5.5556e-05</factor>
  6183. <axis>
  6184. <x type="double">1</x>
  6185. </axis>
  6186. </animation>
  6187. <animation n="710">
  6188. <type type="string">textranslate</type>
  6189. <object-name type="string">Plane.710</object-name>
  6190. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[6]/elevation-ft</property>
  6191. <factor type="double">5.5556e-05</factor>
  6192. <axis>
  6193. <x type="double">1</x>
  6194. </axis>
  6195. </animation>
  6196. <animation n="711">
  6197. <type type="string">textranslate</type>
  6198. <object-name type="string">Plane.711</object-name>
  6199. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[7]/elevation-ft</property>
  6200. <factor type="double">5.5556e-05</factor>
  6201. <axis>
  6202. <x type="double">1</x>
  6203. </axis>
  6204. </animation>
  6205. <animation n="712">
  6206. <type type="string">textranslate</type>
  6207. <object-name type="string">Plane.712</object-name>
  6208. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[8]/elevation-ft</property>
  6209. <factor type="double">5.5556e-05</factor>
  6210. <axis>
  6211. <x type="double">1</x>
  6212. </axis>
  6213. </animation>
  6214. <animation n="713">
  6215. <type type="string">textranslate</type>
  6216. <object-name type="string">Plane.713</object-name>
  6217. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[9]/elevation-ft</property>
  6218. <factor type="double">5.5556e-05</factor>
  6219. <axis>
  6220. <x type="double">1</x>
  6221. </axis>
  6222. </animation>
  6223. <animation n="714">
  6224. <type type="string">textranslate</type>
  6225. <object-name type="string">Plane.714</object-name>
  6226. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[10]/elevation-ft</property>
  6227. <factor type="double">5.5556e-05</factor>
  6228. <axis>
  6229. <x type="double">1</x>
  6230. </axis>
  6231. </animation>
  6232. <animation n="715">
  6233. <type type="string">textranslate</type>
  6234. <object-name type="string">Plane.715</object-name>
  6235. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[11]/elevation-ft</property>
  6236. <factor type="double">5.5556e-05</factor>
  6237. <axis>
  6238. <x type="double">1</x>
  6239. </axis>
  6240. </animation>
  6241. <animation n="716">
  6242. <type type="string">textranslate</type>
  6243. <object-name type="string">Plane.716</object-name>
  6244. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[12]/elevation-ft</property>
  6245. <factor type="double">5.5556e-05</factor>
  6246. <axis>
  6247. <x type="double">1</x>
  6248. </axis>
  6249. </animation>
  6250. <animation n="717">
  6251. <type type="string">textranslate</type>
  6252. <object-name type="string">Plane.717</object-name>
  6253. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[13]/elevation-ft</property>
  6254. <factor type="double">5.5556e-05</factor>
  6255. <axis>
  6256. <x type="double">1</x>
  6257. </axis>
  6258. </animation>
  6259. <animation n="718">
  6260. <type type="string">textranslate</type>
  6261. <object-name type="string">Plane.718</object-name>
  6262. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[14]/elevation-ft</property>
  6263. <factor type="double">5.5556e-05</factor>
  6264. <axis>
  6265. <x type="double">1</x>
  6266. </axis>
  6267. </animation>
  6268. <animation n="719">
  6269. <type type="string">textranslate</type>
  6270. <object-name type="string">Plane.719</object-name>
  6271. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[15]/elevation-ft</property>
  6272. <factor type="double">5.5556e-05</factor>
  6273. <axis>
  6274. <x type="double">1</x>
  6275. </axis>
  6276. </animation>
  6277. <animation n="720">
  6278. <type type="string">textranslate</type>
  6279. <object-name type="string">Plane.720</object-name>
  6280. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[16]/elevation-ft</property>
  6281. <factor type="double">5.5556e-05</factor>
  6282. <axis>
  6283. <x type="double">1</x>
  6284. </axis>
  6285. </animation>
  6286. <animation n="721">
  6287. <type type="string">textranslate</type>
  6288. <object-name type="string">Plane.721</object-name>
  6289. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[17]/elevation-ft</property>
  6290. <factor type="double">5.5556e-05</factor>
  6291. <axis>
  6292. <x type="double">1</x>
  6293. </axis>
  6294. </animation>
  6295. <animation n="722">
  6296. <type type="string">textranslate</type>
  6297. <object-name type="string">Plane.722</object-name>
  6298. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[18]/elevation-ft</property>
  6299. <factor type="double">5.5556e-05</factor>
  6300. <axis>
  6301. <x type="double">1</x>
  6302. </axis>
  6303. </animation>
  6304. <animation n="723">
  6305. <type type="string">textranslate</type>
  6306. <object-name type="string">Plane.723</object-name>
  6307. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[19]/elevation-ft</property>
  6308. <factor type="double">5.5556e-05</factor>
  6309. <axis>
  6310. <x type="double">1</x>
  6311. </axis>
  6312. </animation>
  6313. <animation n="724">
  6314. <type type="string">textranslate</type>
  6315. <object-name type="string">Plane.724</object-name>
  6316. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[20]/elevation-ft</property>
  6317. <factor type="double">5.5556e-05</factor>
  6318. <axis>
  6319. <x type="double">1</x>
  6320. </axis>
  6321. </animation>
  6322. <animation n="725">
  6323. <type type="string">textranslate</type>
  6324. <object-name type="string">Plane.725</object-name>
  6325. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[21]/elevation-ft</property>
  6326. <factor type="double">5.5556e-05</factor>
  6327. <axis>
  6328. <x type="double">1</x>
  6329. </axis>
  6330. </animation>
  6331. <animation n="726">
  6332. <type type="string">textranslate</type>
  6333. <object-name type="string">Plane.726</object-name>
  6334. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[22]/elevation-ft</property>
  6335. <factor type="double">5.5556e-05</factor>
  6336. <axis>
  6337. <x type="double">1</x>
  6338. </axis>
  6339. </animation>
  6340. <animation n="727">
  6341. <type type="string">textranslate</type>
  6342. <object-name type="string">Plane.727</object-name>
  6343. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[23]/elevation-ft</property>
  6344. <factor type="double">5.5556e-05</factor>
  6345. <axis>
  6346. <x type="double">1</x>
  6347. </axis>
  6348. </animation>
  6349. <animation n="728">
  6350. <type type="string">textranslate</type>
  6351. <object-name type="string">Plane.728</object-name>
  6352. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[24]/elevation-ft</property>
  6353. <factor type="double">5.5556e-05</factor>
  6354. <axis>
  6355. <x type="double">1</x>
  6356. </axis>
  6357. </animation>
  6358. <animation n="729">
  6359. <type type="string">textranslate</type>
  6360. <object-name type="string">Plane.729</object-name>
  6361. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[25]/elevation-ft</property>
  6362. <factor type="double">5.5556e-05</factor>
  6363. <axis>
  6364. <x type="double">1</x>
  6365. </axis>
  6366. </animation>
  6367. <animation n="730">
  6368. <type type="string">textranslate</type>
  6369. <object-name type="string">Plane.730</object-name>
  6370. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[26]/elevation-ft</property>
  6371. <factor type="double">5.5556e-05</factor>
  6372. <axis>
  6373. <x type="double">1</x>
  6374. </axis>
  6375. </animation>
  6376. <animation n="731">
  6377. <type type="string">textranslate</type>
  6378. <object-name type="string">Plane.731</object-name>
  6379. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[27]/elevation-ft</property>
  6380. <factor type="double">5.5556e-05</factor>
  6381. <axis>
  6382. <x type="double">1</x>
  6383. </axis>
  6384. </animation>
  6385. <animation n="732">
  6386. <type type="string">textranslate</type>
  6387. <object-name type="string">Plane.732</object-name>
  6388. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[28]/elevation-ft</property>
  6389. <factor type="double">5.5556e-05</factor>
  6390. <axis>
  6391. <x type="double">1</x>
  6392. </axis>
  6393. </animation>
  6394. <animation n="733">
  6395. <type type="string">textranslate</type>
  6396. <object-name type="string">Plane.733</object-name>
  6397. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[29]/elevation-ft</property>
  6398. <factor type="double">5.5556e-05</factor>
  6399. <axis>
  6400. <x type="double">1</x>
  6401. </axis>
  6402. </animation>
  6403. <animation n="734">
  6404. <type type="string">textranslate</type>
  6405. <object-name type="string">Plane.734</object-name>
  6406. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[30]/elevation-ft</property>
  6407. <factor type="double">5.5556e-05</factor>
  6408. <axis>
  6409. <x type="double">1</x>
  6410. </axis>
  6411. </animation>
  6412. <animation n="735">
  6413. <type type="string">textranslate</type>
  6414. <object-name type="string">Plane.735</object-name>
  6415. <property type="string">/instrumentation/terrain-map/pixels/row[22]/col[31]/elevation-ft</property>
  6416. <factor type="double">5.5556e-05</factor>
  6417. <axis>
  6418. <x type="double">1</x>
  6419. </axis>
  6420. </animation>
  6421. <animation n="737">
  6422. <type type="string">textranslate</type>
  6423. <object-name type="string">Plane.737</object-name>
  6424. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[1]/elevation-ft</property>
  6425. <factor type="double">5.5556e-05</factor>
  6426. <axis>
  6427. <x type="double">1</x>
  6428. </axis>
  6429. </animation>
  6430. <animation n="738">
  6431. <type type="string">textranslate</type>
  6432. <object-name type="string">Plane.738</object-name>
  6433. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[2]/elevation-ft</property>
  6434. <factor type="double">5.5556e-05</factor>
  6435. <axis>
  6436. <x type="double">1</x>
  6437. </axis>
  6438. </animation>
  6439. <animation n="739">
  6440. <type type="string">textranslate</type>
  6441. <object-name type="string">Plane.739</object-name>
  6442. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[3]/elevation-ft</property>
  6443. <factor type="double">5.5556e-05</factor>
  6444. <axis>
  6445. <x type="double">1</x>
  6446. </axis>
  6447. </animation>
  6448. <animation n="740">
  6449. <type type="string">textranslate</type>
  6450. <object-name type="string">Plane.740</object-name>
  6451. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[4]/elevation-ft</property>
  6452. <factor type="double">5.5556e-05</factor>
  6453. <axis>
  6454. <x type="double">1</x>
  6455. </axis>
  6456. </animation>
  6457. <animation n="741">
  6458. <type type="string">textranslate</type>
  6459. <object-name type="string">Plane.741</object-name>
  6460. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[5]/elevation-ft</property>
  6461. <factor type="double">5.5556e-05</factor>
  6462. <axis>
  6463. <x type="double">1</x>
  6464. </axis>
  6465. </animation>
  6466. <animation n="742">
  6467. <type type="string">textranslate</type>
  6468. <object-name type="string">Plane.742</object-name>
  6469. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[6]/elevation-ft</property>
  6470. <factor type="double">5.5556e-05</factor>
  6471. <axis>
  6472. <x type="double">1</x>
  6473. </axis>
  6474. </animation>
  6475. <animation n="743">
  6476. <type type="string">textranslate</type>
  6477. <object-name type="string">Plane.743</object-name>
  6478. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[7]/elevation-ft</property>
  6479. <factor type="double">5.5556e-05</factor>
  6480. <axis>
  6481. <x type="double">1</x>
  6482. </axis>
  6483. </animation>
  6484. <animation n="744">
  6485. <type type="string">textranslate</type>
  6486. <object-name type="string">Plane.744</object-name>
  6487. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[8]/elevation-ft</property>
  6488. <factor type="double">5.5556e-05</factor>
  6489. <axis>
  6490. <x type="double">1</x>
  6491. </axis>
  6492. </animation>
  6493. <animation n="745">
  6494. <type type="string">textranslate</type>
  6495. <object-name type="string">Plane.745</object-name>
  6496. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[9]/elevation-ft</property>
  6497. <factor type="double">5.5556e-05</factor>
  6498. <axis>
  6499. <x type="double">1</x>
  6500. </axis>
  6501. </animation>
  6502. <animation n="746">
  6503. <type type="string">textranslate</type>
  6504. <object-name type="string">Plane.746</object-name>
  6505. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[10]/elevation-ft</property>
  6506. <factor type="double">5.5556e-05</factor>
  6507. <axis>
  6508. <x type="double">1</x>
  6509. </axis>
  6510. </animation>
  6511. <animation n="747">
  6512. <type type="string">textranslate</type>
  6513. <object-name type="string">Plane.747</object-name>
  6514. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[11]/elevation-ft</property>
  6515. <factor type="double">5.5556e-05</factor>
  6516. <axis>
  6517. <x type="double">1</x>
  6518. </axis>
  6519. </animation>
  6520. <animation n="748">
  6521. <type type="string">textranslate</type>
  6522. <object-name type="string">Plane.748</object-name>
  6523. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[12]/elevation-ft</property>
  6524. <factor type="double">5.5556e-05</factor>
  6525. <axis>
  6526. <x type="double">1</x>
  6527. </axis>
  6528. </animation>
  6529. <animation n="749">
  6530. <type type="string">textranslate</type>
  6531. <object-name type="string">Plane.749</object-name>
  6532. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[13]/elevation-ft</property>
  6533. <factor type="double">5.5556e-05</factor>
  6534. <axis>
  6535. <x type="double">1</x>
  6536. </axis>
  6537. </animation>
  6538. <animation n="750">
  6539. <type type="string">textranslate</type>
  6540. <object-name type="string">Plane.750</object-name>
  6541. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[14]/elevation-ft</property>
  6542. <factor type="double">5.5556e-05</factor>
  6543. <axis>
  6544. <x type="double">1</x>
  6545. </axis>
  6546. </animation>
  6547. <animation n="751">
  6548. <type type="string">textranslate</type>
  6549. <object-name type="string">Plane.751</object-name>
  6550. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[15]/elevation-ft</property>
  6551. <factor type="double">5.5556e-05</factor>
  6552. <axis>
  6553. <x type="double">1</x>
  6554. </axis>
  6555. </animation>
  6556. <animation n="752">
  6557. <type type="string">textranslate</type>
  6558. <object-name type="string">Plane.752</object-name>
  6559. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[16]/elevation-ft</property>
  6560. <factor type="double">5.5556e-05</factor>
  6561. <axis>
  6562. <x type="double">1</x>
  6563. </axis>
  6564. </animation>
  6565. <animation n="753">
  6566. <type type="string">textranslate</type>
  6567. <object-name type="string">Plane.753</object-name>
  6568. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[17]/elevation-ft</property>
  6569. <factor type="double">5.5556e-05</factor>
  6570. <axis>
  6571. <x type="double">1</x>
  6572. </axis>
  6573. </animation>
  6574. <animation n="754">
  6575. <type type="string">textranslate</type>
  6576. <object-name type="string">Plane.754</object-name>
  6577. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[18]/elevation-ft</property>
  6578. <factor type="double">5.5556e-05</factor>
  6579. <axis>
  6580. <x type="double">1</x>
  6581. </axis>
  6582. </animation>
  6583. <animation n="755">
  6584. <type type="string">textranslate</type>
  6585. <object-name type="string">Plane.755</object-name>
  6586. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[19]/elevation-ft</property>
  6587. <factor type="double">5.5556e-05</factor>
  6588. <axis>
  6589. <x type="double">1</x>
  6590. </axis>
  6591. </animation>
  6592. <animation n="756">
  6593. <type type="string">textranslate</type>
  6594. <object-name type="string">Plane.756</object-name>
  6595. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[20]/elevation-ft</property>
  6596. <factor type="double">5.5556e-05</factor>
  6597. <axis>
  6598. <x type="double">1</x>
  6599. </axis>
  6600. </animation>
  6601. <animation n="757">
  6602. <type type="string">textranslate</type>
  6603. <object-name type="string">Plane.757</object-name>
  6604. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[21]/elevation-ft</property>
  6605. <factor type="double">5.5556e-05</factor>
  6606. <axis>
  6607. <x type="double">1</x>
  6608. </axis>
  6609. </animation>
  6610. <animation n="758">
  6611. <type type="string">textranslate</type>
  6612. <object-name type="string">Plane.758</object-name>
  6613. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[22]/elevation-ft</property>
  6614. <factor type="double">5.5556e-05</factor>
  6615. <axis>
  6616. <x type="double">1</x>
  6617. </axis>
  6618. </animation>
  6619. <animation n="759">
  6620. <type type="string">textranslate</type>
  6621. <object-name type="string">Plane.759</object-name>
  6622. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[23]/elevation-ft</property>
  6623. <factor type="double">5.5556e-05</factor>
  6624. <axis>
  6625. <x type="double">1</x>
  6626. </axis>
  6627. </animation>
  6628. <animation n="760">
  6629. <type type="string">textranslate</type>
  6630. <object-name type="string">Plane.760</object-name>
  6631. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[24]/elevation-ft</property>
  6632. <factor type="double">5.5556e-05</factor>
  6633. <axis>
  6634. <x type="double">1</x>
  6635. </axis>
  6636. </animation>
  6637. <animation n="761">
  6638. <type type="string">textranslate</type>
  6639. <object-name type="string">Plane.761</object-name>
  6640. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[25]/elevation-ft</property>
  6641. <factor type="double">5.5556e-05</factor>
  6642. <axis>
  6643. <x type="double">1</x>
  6644. </axis>
  6645. </animation>
  6646. <animation n="762">
  6647. <type type="string">textranslate</type>
  6648. <object-name type="string">Plane.762</object-name>
  6649. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[26]/elevation-ft</property>
  6650. <factor type="double">5.5556e-05</factor>
  6651. <axis>
  6652. <x type="double">1</x>
  6653. </axis>
  6654. </animation>
  6655. <animation n="763">
  6656. <type type="string">textranslate</type>
  6657. <object-name type="string">Plane.763</object-name>
  6658. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[27]/elevation-ft</property>
  6659. <factor type="double">5.5556e-05</factor>
  6660. <axis>
  6661. <x type="double">1</x>
  6662. </axis>
  6663. </animation>
  6664. <animation n="764">
  6665. <type type="string">textranslate</type>
  6666. <object-name type="string">Plane.764</object-name>
  6667. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[28]/elevation-ft</property>
  6668. <factor type="double">5.5556e-05</factor>
  6669. <axis>
  6670. <x type="double">1</x>
  6671. </axis>
  6672. </animation>
  6673. <animation n="765">
  6674. <type type="string">textranslate</type>
  6675. <object-name type="string">Plane.765</object-name>
  6676. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[29]/elevation-ft</property>
  6677. <factor type="double">5.5556e-05</factor>
  6678. <axis>
  6679. <x type="double">1</x>
  6680. </axis>
  6681. </animation>
  6682. <animation n="766">
  6683. <type type="string">textranslate</type>
  6684. <object-name type="string">Plane.766</object-name>
  6685. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[30]/elevation-ft</property>
  6686. <factor type="double">5.5556e-05</factor>
  6687. <axis>
  6688. <x type="double">1</x>
  6689. </axis>
  6690. </animation>
  6691. <animation n="767">
  6692. <type type="string">textranslate</type>
  6693. <object-name type="string">Plane.767</object-name>
  6694. <property type="string">/instrumentation/terrain-map/pixels/row[23]/col[31]/elevation-ft</property>
  6695. <factor type="double">5.5556e-05</factor>
  6696. <axis>
  6697. <x type="double">1</x>
  6698. </axis>
  6699. </animation>
  6700. <animation n="769">
  6701. <type type="string">textranslate</type>
  6702. <object-name type="string">Plane.769</object-name>
  6703. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[1]/elevation-ft</property>
  6704. <factor type="double">5.5556e-05</factor>
  6705. <axis>
  6706. <x type="double">1</x>
  6707. </axis>
  6708. </animation>
  6709. <animation n="770">
  6710. <type type="string">textranslate</type>
  6711. <object-name type="string">Plane.770</object-name>
  6712. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[2]/elevation-ft</property>
  6713. <factor type="double">5.5556e-05</factor>
  6714. <axis>
  6715. <x type="double">1</x>
  6716. </axis>
  6717. </animation>
  6718. <animation n="771">
  6719. <type type="string">textranslate</type>
  6720. <object-name type="string">Plane.771</object-name>
  6721. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[3]/elevation-ft</property>
  6722. <factor type="double">5.5556e-05</factor>
  6723. <axis>
  6724. <x type="double">1</x>
  6725. </axis>
  6726. </animation>
  6727. <animation n="772">
  6728. <type type="string">textranslate</type>
  6729. <object-name type="string">Plane.772</object-name>
  6730. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[4]/elevation-ft</property>
  6731. <factor type="double">5.5556e-05</factor>
  6732. <axis>
  6733. <x type="double">1</x>
  6734. </axis>
  6735. </animation>
  6736. <animation n="773">
  6737. <type type="string">textranslate</type>
  6738. <object-name type="string">Plane.773</object-name>
  6739. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[5]/elevation-ft</property>
  6740. <factor type="double">5.5556e-05</factor>
  6741. <axis>
  6742. <x type="double">1</x>
  6743. </axis>
  6744. </animation>
  6745. <animation n="774">
  6746. <type type="string">textranslate</type>
  6747. <object-name type="string">Plane.774</object-name>
  6748. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[6]/elevation-ft</property>
  6749. <factor type="double">5.5556e-05</factor>
  6750. <axis>
  6751. <x type="double">1</x>
  6752. </axis>
  6753. </animation>
  6754. <animation n="775">
  6755. <type type="string">textranslate</type>
  6756. <object-name type="string">Plane.775</object-name>
  6757. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[7]/elevation-ft</property>
  6758. <factor type="double">5.5556e-05</factor>
  6759. <axis>
  6760. <x type="double">1</x>
  6761. </axis>
  6762. </animation>
  6763. <animation n="776">
  6764. <type type="string">textranslate</type>
  6765. <object-name type="string">Plane.776</object-name>
  6766. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[8]/elevation-ft</property>
  6767. <factor type="double">5.5556e-05</factor>
  6768. <axis>
  6769. <x type="double">1</x>
  6770. </axis>
  6771. </animation>
  6772. <animation n="777">
  6773. <type type="string">textranslate</type>
  6774. <object-name type="string">Plane.777</object-name>
  6775. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[9]/elevation-ft</property>
  6776. <factor type="double">5.5556e-05</factor>
  6777. <axis>
  6778. <x type="double">1</x>
  6779. </axis>
  6780. </animation>
  6781. <animation n="778">
  6782. <type type="string">textranslate</type>
  6783. <object-name type="string">Plane.778</object-name>
  6784. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[10]/elevation-ft</property>
  6785. <factor type="double">5.5556e-05</factor>
  6786. <axis>
  6787. <x type="double">1</x>
  6788. </axis>
  6789. </animation>
  6790. <animation n="779">
  6791. <type type="string">textranslate</type>
  6792. <object-name type="string">Plane.779</object-name>
  6793. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[11]/elevation-ft</property>
  6794. <factor type="double">5.5556e-05</factor>
  6795. <axis>
  6796. <x type="double">1</x>
  6797. </axis>
  6798. </animation>
  6799. <animation n="780">
  6800. <type type="string">textranslate</type>
  6801. <object-name type="string">Plane.780</object-name>
  6802. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[12]/elevation-ft</property>
  6803. <factor type="double">5.5556e-05</factor>
  6804. <axis>
  6805. <x type="double">1</x>
  6806. </axis>
  6807. </animation>
  6808. <animation n="781">
  6809. <type type="string">textranslate</type>
  6810. <object-name type="string">Plane.781</object-name>
  6811. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[13]/elevation-ft</property>
  6812. <factor type="double">5.5556e-05</factor>
  6813. <axis>
  6814. <x type="double">1</x>
  6815. </axis>
  6816. </animation>
  6817. <animation n="782">
  6818. <type type="string">textranslate</type>
  6819. <object-name type="string">Plane.782</object-name>
  6820. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[14]/elevation-ft</property>
  6821. <factor type="double">5.5556e-05</factor>
  6822. <axis>
  6823. <x type="double">1</x>
  6824. </axis>
  6825. </animation>
  6826. <animation n="783">
  6827. <type type="string">textranslate</type>
  6828. <object-name type="string">Plane.783</object-name>
  6829. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[15]/elevation-ft</property>
  6830. <factor type="double">5.5556e-05</factor>
  6831. <axis>
  6832. <x type="double">1</x>
  6833. </axis>
  6834. </animation>
  6835. <animation n="784">
  6836. <type type="string">textranslate</type>
  6837. <object-name type="string">Plane.784</object-name>
  6838. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[16]/elevation-ft</property>
  6839. <factor type="double">5.5556e-05</factor>
  6840. <axis>
  6841. <x type="double">1</x>
  6842. </axis>
  6843. </animation>
  6844. <animation n="785">
  6845. <type type="string">textranslate</type>
  6846. <object-name type="string">Plane.785</object-name>
  6847. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[17]/elevation-ft</property>
  6848. <factor type="double">5.5556e-05</factor>
  6849. <axis>
  6850. <x type="double">1</x>
  6851. </axis>
  6852. </animation>
  6853. <animation n="786">
  6854. <type type="string">textranslate</type>
  6855. <object-name type="string">Plane.786</object-name>
  6856. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[18]/elevation-ft</property>
  6857. <factor type="double">5.5556e-05</factor>
  6858. <axis>
  6859. <x type="double">1</x>
  6860. </axis>
  6861. </animation>
  6862. <animation n="787">
  6863. <type type="string">textranslate</type>
  6864. <object-name type="string">Plane.787</object-name>
  6865. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[19]/elevation-ft</property>
  6866. <factor type="double">5.5556e-05</factor>
  6867. <axis>
  6868. <x type="double">1</x>
  6869. </axis>
  6870. </animation>
  6871. <animation n="788">
  6872. <type type="string">textranslate</type>
  6873. <object-name type="string">Plane.788</object-name>
  6874. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[20]/elevation-ft</property>
  6875. <factor type="double">5.5556e-05</factor>
  6876. <axis>
  6877. <x type="double">1</x>
  6878. </axis>
  6879. </animation>
  6880. <animation n="789">
  6881. <type type="string">textranslate</type>
  6882. <object-name type="string">Plane.789</object-name>
  6883. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[21]/elevation-ft</property>
  6884. <factor type="double">5.5556e-05</factor>
  6885. <axis>
  6886. <x type="double">1</x>
  6887. </axis>
  6888. </animation>
  6889. <animation n="790">
  6890. <type type="string">textranslate</type>
  6891. <object-name type="string">Plane.790</object-name>
  6892. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[22]/elevation-ft</property>
  6893. <factor type="double">5.5556e-05</factor>
  6894. <axis>
  6895. <x type="double">1</x>
  6896. </axis>
  6897. </animation>
  6898. <animation n="791">
  6899. <type type="string">textranslate</type>
  6900. <object-name type="string">Plane.791</object-name>
  6901. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[23]/elevation-ft</property>
  6902. <factor type="double">5.5556e-05</factor>
  6903. <axis>
  6904. <x type="double">1</x>
  6905. </axis>
  6906. </animation>
  6907. <animation n="792">
  6908. <type type="string">textranslate</type>
  6909. <object-name type="string">Plane.792</object-name>
  6910. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[24]/elevation-ft</property>
  6911. <factor type="double">5.5556e-05</factor>
  6912. <axis>
  6913. <x type="double">1</x>
  6914. </axis>
  6915. </animation>
  6916. <animation n="793">
  6917. <type type="string">textranslate</type>
  6918. <object-name type="string">Plane.793</object-name>
  6919. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[25]/elevation-ft</property>
  6920. <factor type="double">5.5556e-05</factor>
  6921. <axis>
  6922. <x type="double">1</x>
  6923. </axis>
  6924. </animation>
  6925. <animation n="794">
  6926. <type type="string">textranslate</type>
  6927. <object-name type="string">Plane.794</object-name>
  6928. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[26]/elevation-ft</property>
  6929. <factor type="double">5.5556e-05</factor>
  6930. <axis>
  6931. <x type="double">1</x>
  6932. </axis>
  6933. </animation>
  6934. <animation n="795">
  6935. <type type="string">textranslate</type>
  6936. <object-name type="string">Plane.795</object-name>
  6937. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[27]/elevation-ft</property>
  6938. <factor type="double">5.5556e-05</factor>
  6939. <axis>
  6940. <x type="double">1</x>
  6941. </axis>
  6942. </animation>
  6943. <animation n="796">
  6944. <type type="string">textranslate</type>
  6945. <object-name type="string">Plane.796</object-name>
  6946. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[28]/elevation-ft</property>
  6947. <factor type="double">5.5556e-05</factor>
  6948. <axis>
  6949. <x type="double">1</x>
  6950. </axis>
  6951. </animation>
  6952. <animation n="797">
  6953. <type type="string">textranslate</type>
  6954. <object-name type="string">Plane.797</object-name>
  6955. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[29]/elevation-ft</property>
  6956. <factor type="double">5.5556e-05</factor>
  6957. <axis>
  6958. <x type="double">1</x>
  6959. </axis>
  6960. </animation>
  6961. <animation n="798">
  6962. <type type="string">textranslate</type>
  6963. <object-name type="string">Plane.798</object-name>
  6964. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[30]/elevation-ft</property>
  6965. <factor type="double">5.5556e-05</factor>
  6966. <axis>
  6967. <x type="double">1</x>
  6968. </axis>
  6969. </animation>
  6970. <animation n="799">
  6971. <type type="string">textranslate</type>
  6972. <object-name type="string">Plane.799</object-name>
  6973. <property type="string">/instrumentation/terrain-map/pixels/row[24]/col[31]/elevation-ft</property>
  6974. <factor type="double">5.5556e-05</factor>
  6975. <axis>
  6976. <x type="double">1</x>
  6977. </axis>
  6978. </animation>
  6979. <animation n="801">
  6980. <type type="string">textranslate</type>
  6981. <object-name type="string">Plane.801</object-name>
  6982. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[1]/elevation-ft</property>
  6983. <factor type="double">5.5556e-05</factor>
  6984. <axis>
  6985. <x type="double">1</x>
  6986. </axis>
  6987. </animation>
  6988. <animation n="802">
  6989. <type type="string">textranslate</type>
  6990. <object-name type="string">Plane.802</object-name>
  6991. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[2]/elevation-ft</property>
  6992. <factor type="double">5.5556e-05</factor>
  6993. <axis>
  6994. <x type="double">1</x>
  6995. </axis>
  6996. </animation>
  6997. <animation n="803">
  6998. <type type="string">textranslate</type>
  6999. <object-name type="string">Plane.803</object-name>
  7000. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[3]/elevation-ft</property>
  7001. <factor type="double">5.5556e-05</factor>
  7002. <axis>
  7003. <x type="double">1</x>
  7004. </axis>
  7005. </animation>
  7006. <animation n="804">
  7007. <type type="string">textranslate</type>
  7008. <object-name type="string">Plane.804</object-name>
  7009. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[4]/elevation-ft</property>
  7010. <factor type="double">5.5556e-05</factor>
  7011. <axis>
  7012. <x type="double">1</x>
  7013. </axis>
  7014. </animation>
  7015. <animation n="805">
  7016. <type type="string">textranslate</type>
  7017. <object-name type="string">Plane.805</object-name>
  7018. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[5]/elevation-ft</property>
  7019. <factor type="double">5.5556e-05</factor>
  7020. <axis>
  7021. <x type="double">1</x>
  7022. </axis>
  7023. </animation>
  7024. <animation n="806">
  7025. <type type="string">textranslate</type>
  7026. <object-name type="string">Plane.806</object-name>
  7027. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[6]/elevation-ft</property>
  7028. <factor type="double">5.5556e-05</factor>
  7029. <axis>
  7030. <x type="double">1</x>
  7031. </axis>
  7032. </animation>
  7033. <animation n="807">
  7034. <type type="string">textranslate</type>
  7035. <object-name type="string">Plane.807</object-name>
  7036. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[7]/elevation-ft</property>
  7037. <factor type="double">5.5556e-05</factor>
  7038. <axis>
  7039. <x type="double">1</x>
  7040. </axis>
  7041. </animation>
  7042. <animation n="808">
  7043. <type type="string">textranslate</type>
  7044. <object-name type="string">Plane.808</object-name>
  7045. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[8]/elevation-ft</property>
  7046. <factor type="double">5.5556e-05</factor>
  7047. <axis>
  7048. <x type="double">1</x>
  7049. </axis>
  7050. </animation>
  7051. <animation n="809">
  7052. <type type="string">textranslate</type>
  7053. <object-name type="string">Plane.809</object-name>
  7054. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[9]/elevation-ft</property>
  7055. <factor type="double">5.5556e-05</factor>
  7056. <axis>
  7057. <x type="double">1</x>
  7058. </axis>
  7059. </animation>
  7060. <animation n="810">
  7061. <type type="string">textranslate</type>
  7062. <object-name type="string">Plane.810</object-name>
  7063. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[10]/elevation-ft</property>
  7064. <factor type="double">5.5556e-05</factor>
  7065. <axis>
  7066. <x type="double">1</x>
  7067. </axis>
  7068. </animation>
  7069. <animation n="811">
  7070. <type type="string">textranslate</type>
  7071. <object-name type="string">Plane.811</object-name>
  7072. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[11]/elevation-ft</property>
  7073. <factor type="double">5.5556e-05</factor>
  7074. <axis>
  7075. <x type="double">1</x>
  7076. </axis>
  7077. </animation>
  7078. <animation n="812">
  7079. <type type="string">textranslate</type>
  7080. <object-name type="string">Plane.812</object-name>
  7081. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[12]/elevation-ft</property>
  7082. <factor type="double">5.5556e-05</factor>
  7083. <axis>
  7084. <x type="double">1</x>
  7085. </axis>
  7086. </animation>
  7087. <animation n="813">
  7088. <type type="string">textranslate</type>
  7089. <object-name type="string">Plane.813</object-name>
  7090. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[13]/elevation-ft</property>
  7091. <factor type="double">5.5556e-05</factor>
  7092. <axis>
  7093. <x type="double">1</x>
  7094. </axis>
  7095. </animation>
  7096. <animation n="814">
  7097. <type type="string">textranslate</type>
  7098. <object-name type="string">Plane.814</object-name>
  7099. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[14]/elevation-ft</property>
  7100. <factor type="double">5.5556e-05</factor>
  7101. <axis>
  7102. <x type="double">1</x>
  7103. </axis>
  7104. </animation>
  7105. <animation n="815">
  7106. <type type="string">textranslate</type>
  7107. <object-name type="string">Plane.815</object-name>
  7108. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[15]/elevation-ft</property>
  7109. <factor type="double">5.5556e-05</factor>
  7110. <axis>
  7111. <x type="double">1</x>
  7112. </axis>
  7113. </animation>
  7114. <animation n="816">
  7115. <type type="string">textranslate</type>
  7116. <object-name type="string">Plane.816</object-name>
  7117. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[16]/elevation-ft</property>
  7118. <factor type="double">5.5556e-05</factor>
  7119. <axis>
  7120. <x type="double">1</x>
  7121. </axis>
  7122. </animation>
  7123. <animation n="817">
  7124. <type type="string">textranslate</type>
  7125. <object-name type="string">Plane.817</object-name>
  7126. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[17]/elevation-ft</property>
  7127. <factor type="double">5.5556e-05</factor>
  7128. <axis>
  7129. <x type="double">1</x>
  7130. </axis>
  7131. </animation>
  7132. <animation n="818">
  7133. <type type="string">textranslate</type>
  7134. <object-name type="string">Plane.818</object-name>
  7135. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[18]/elevation-ft</property>
  7136. <factor type="double">5.5556e-05</factor>
  7137. <axis>
  7138. <x type="double">1</x>
  7139. </axis>
  7140. </animation>
  7141. <animation n="819">
  7142. <type type="string">textranslate</type>
  7143. <object-name type="string">Plane.819</object-name>
  7144. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[19]/elevation-ft</property>
  7145. <factor type="double">5.5556e-05</factor>
  7146. <axis>
  7147. <x type="double">1</x>
  7148. </axis>
  7149. </animation>
  7150. <animation n="820">
  7151. <type type="string">textranslate</type>
  7152. <object-name type="string">Plane.820</object-name>
  7153. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[20]/elevation-ft</property>
  7154. <factor type="double">5.5556e-05</factor>
  7155. <axis>
  7156. <x type="double">1</x>
  7157. </axis>
  7158. </animation>
  7159. <animation n="821">
  7160. <type type="string">textranslate</type>
  7161. <object-name type="string">Plane.821</object-name>
  7162. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[21]/elevation-ft</property>
  7163. <factor type="double">5.5556e-05</factor>
  7164. <axis>
  7165. <x type="double">1</x>
  7166. </axis>
  7167. </animation>
  7168. <animation n="822">
  7169. <type type="string">textranslate</type>
  7170. <object-name type="string">Plane.822</object-name>
  7171. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[22]/elevation-ft</property>
  7172. <factor type="double">5.5556e-05</factor>
  7173. <axis>
  7174. <x type="double">1</x>
  7175. </axis>
  7176. </animation>
  7177. <animation n="823">
  7178. <type type="string">textranslate</type>
  7179. <object-name type="string">Plane.823</object-name>
  7180. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[23]/elevation-ft</property>
  7181. <factor type="double">5.5556e-05</factor>
  7182. <axis>
  7183. <x type="double">1</x>
  7184. </axis>
  7185. </animation>
  7186. <animation n="824">
  7187. <type type="string">textranslate</type>
  7188. <object-name type="string">Plane.824</object-name>
  7189. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[24]/elevation-ft</property>
  7190. <factor type="double">5.5556e-05</factor>
  7191. <axis>
  7192. <x type="double">1</x>
  7193. </axis>
  7194. </animation>
  7195. <animation n="825">
  7196. <type type="string">textranslate</type>
  7197. <object-name type="string">Plane.825</object-name>
  7198. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[25]/elevation-ft</property>
  7199. <factor type="double">5.5556e-05</factor>
  7200. <axis>
  7201. <x type="double">1</x>
  7202. </axis>
  7203. </animation>
  7204. <animation n="826">
  7205. <type type="string">textranslate</type>
  7206. <object-name type="string">Plane.826</object-name>
  7207. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[26]/elevation-ft</property>
  7208. <factor type="double">5.5556e-05</factor>
  7209. <axis>
  7210. <x type="double">1</x>
  7211. </axis>
  7212. </animation>
  7213. <animation n="827">
  7214. <type type="string">textranslate</type>
  7215. <object-name type="string">Plane.827</object-name>
  7216. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[27]/elevation-ft</property>
  7217. <factor type="double">5.5556e-05</factor>
  7218. <axis>
  7219. <x type="double">1</x>
  7220. </axis>
  7221. </animation>
  7222. <animation n="828">
  7223. <type type="string">textranslate</type>
  7224. <object-name type="string">Plane.828</object-name>
  7225. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[28]/elevation-ft</property>
  7226. <factor type="double">5.5556e-05</factor>
  7227. <axis>
  7228. <x type="double">1</x>
  7229. </axis>
  7230. </animation>
  7231. <animation n="829">
  7232. <type type="string">textranslate</type>
  7233. <object-name type="string">Plane.829</object-name>
  7234. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[29]/elevation-ft</property>
  7235. <factor type="double">5.5556e-05</factor>
  7236. <axis>
  7237. <x type="double">1</x>
  7238. </axis>
  7239. </animation>
  7240. <animation n="830">
  7241. <type type="string">textranslate</type>
  7242. <object-name type="string">Plane.830</object-name>
  7243. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[30]/elevation-ft</property>
  7244. <factor type="double">5.5556e-05</factor>
  7245. <axis>
  7246. <x type="double">1</x>
  7247. </axis>
  7248. </animation>
  7249. <animation n="831">
  7250. <type type="string">textranslate</type>
  7251. <object-name type="string">Plane.831</object-name>
  7252. <property type="string">/instrumentation/terrain-map/pixels/row[25]/col[31]/elevation-ft</property>
  7253. <factor type="double">5.5556e-05</factor>
  7254. <axis>
  7255. <x type="double">1</x>
  7256. </axis>
  7257. </animation>
  7258. <animation n="833">
  7259. <type type="string">textranslate</type>
  7260. <object-name type="string">Plane.833</object-name>
  7261. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[1]/elevation-ft</property>
  7262. <factor type="double">5.5556e-05</factor>
  7263. <axis>
  7264. <x type="double">1</x>
  7265. </axis>
  7266. </animation>
  7267. <animation n="834">
  7268. <type type="string">textranslate</type>
  7269. <object-name type="string">Plane.834</object-name>
  7270. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[2]/elevation-ft</property>
  7271. <factor type="double">5.5556e-05</factor>
  7272. <axis>
  7273. <x type="double">1</x>
  7274. </axis>
  7275. </animation>
  7276. <animation n="835">
  7277. <type type="string">textranslate</type>
  7278. <object-name type="string">Plane.835</object-name>
  7279. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[3]/elevation-ft</property>
  7280. <factor type="double">5.5556e-05</factor>
  7281. <axis>
  7282. <x type="double">1</x>
  7283. </axis>
  7284. </animation>
  7285. <animation n="836">
  7286. <type type="string">textranslate</type>
  7287. <object-name type="string">Plane.836</object-name>
  7288. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[4]/elevation-ft</property>
  7289. <factor type="double">5.5556e-05</factor>
  7290. <axis>
  7291. <x type="double">1</x>
  7292. </axis>
  7293. </animation>
  7294. <animation n="837">
  7295. <type type="string">textranslate</type>
  7296. <object-name type="string">Plane.837</object-name>
  7297. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[5]/elevation-ft</property>
  7298. <factor type="double">5.5556e-05</factor>
  7299. <axis>
  7300. <x type="double">1</x>
  7301. </axis>
  7302. </animation>
  7303. <animation n="838">
  7304. <type type="string">textranslate</type>
  7305. <object-name type="string">Plane.838</object-name>
  7306. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[6]/elevation-ft</property>
  7307. <factor type="double">5.5556e-05</factor>
  7308. <axis>
  7309. <x type="double">1</x>
  7310. </axis>
  7311. </animation>
  7312. <animation n="839">
  7313. <type type="string">textranslate</type>
  7314. <object-name type="string">Plane.839</object-name>
  7315. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[7]/elevation-ft</property>
  7316. <factor type="double">5.5556e-05</factor>
  7317. <axis>
  7318. <x type="double">1</x>
  7319. </axis>
  7320. </animation>
  7321. <animation n="840">
  7322. <type type="string">textranslate</type>
  7323. <object-name type="string">Plane.840</object-name>
  7324. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[8]/elevation-ft</property>
  7325. <factor type="double">5.5556e-05</factor>
  7326. <axis>
  7327. <x type="double">1</x>
  7328. </axis>
  7329. </animation>
  7330. <animation n="841">
  7331. <type type="string">textranslate</type>
  7332. <object-name type="string">Plane.841</object-name>
  7333. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[9]/elevation-ft</property>
  7334. <factor type="double">5.5556e-05</factor>
  7335. <axis>
  7336. <x type="double">1</x>
  7337. </axis>
  7338. </animation>
  7339. <animation n="842">
  7340. <type type="string">textranslate</type>
  7341. <object-name type="string">Plane.842</object-name>
  7342. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[10]/elevation-ft</property>
  7343. <factor type="double">5.5556e-05</factor>
  7344. <axis>
  7345. <x type="double">1</x>
  7346. </axis>
  7347. </animation>
  7348. <animation n="843">
  7349. <type type="string">textranslate</type>
  7350. <object-name type="string">Plane.843</object-name>
  7351. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[11]/elevation-ft</property>
  7352. <factor type="double">5.5556e-05</factor>
  7353. <axis>
  7354. <x type="double">1</x>
  7355. </axis>
  7356. </animation>
  7357. <animation n="844">
  7358. <type type="string">textranslate</type>
  7359. <object-name type="string">Plane.844</object-name>
  7360. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[12]/elevation-ft</property>
  7361. <factor type="double">5.5556e-05</factor>
  7362. <axis>
  7363. <x type="double">1</x>
  7364. </axis>
  7365. </animation>
  7366. <animation n="845">
  7367. <type type="string">textranslate</type>
  7368. <object-name type="string">Plane.845</object-name>
  7369. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[13]/elevation-ft</property>
  7370. <factor type="double">5.5556e-05</factor>
  7371. <axis>
  7372. <x type="double">1</x>
  7373. </axis>
  7374. </animation>
  7375. <animation n="846">
  7376. <type type="string">textranslate</type>
  7377. <object-name type="string">Plane.846</object-name>
  7378. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[14]/elevation-ft</property>
  7379. <factor type="double">5.5556e-05</factor>
  7380. <axis>
  7381. <x type="double">1</x>
  7382. </axis>
  7383. </animation>
  7384. <animation n="847">
  7385. <type type="string">textranslate</type>
  7386. <object-name type="string">Plane.847</object-name>
  7387. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[15]/elevation-ft</property>
  7388. <factor type="double">5.5556e-05</factor>
  7389. <axis>
  7390. <x type="double">1</x>
  7391. </axis>
  7392. </animation>
  7393. <animation n="848">
  7394. <type type="string">textranslate</type>
  7395. <object-name type="string">Plane.848</object-name>
  7396. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[16]/elevation-ft</property>
  7397. <factor type="double">5.5556e-05</factor>
  7398. <axis>
  7399. <x type="double">1</x>
  7400. </axis>
  7401. </animation>
  7402. <animation n="849">
  7403. <type type="string">textranslate</type>
  7404. <object-name type="string">Plane.849</object-name>
  7405. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[17]/elevation-ft</property>
  7406. <factor type="double">5.5556e-05</factor>
  7407. <axis>
  7408. <x type="double">1</x>
  7409. </axis>
  7410. </animation>
  7411. <animation n="850">
  7412. <type type="string">textranslate</type>
  7413. <object-name type="string">Plane.850</object-name>
  7414. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[18]/elevation-ft</property>
  7415. <factor type="double">5.5556e-05</factor>
  7416. <axis>
  7417. <x type="double">1</x>
  7418. </axis>
  7419. </animation>
  7420. <animation n="851">
  7421. <type type="string">textranslate</type>
  7422. <object-name type="string">Plane.851</object-name>
  7423. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[19]/elevation-ft</property>
  7424. <factor type="double">5.5556e-05</factor>
  7425. <axis>
  7426. <x type="double">1</x>
  7427. </axis>
  7428. </animation>
  7429. <animation n="852">
  7430. <type type="string">textranslate</type>
  7431. <object-name type="string">Plane.852</object-name>
  7432. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[20]/elevation-ft</property>
  7433. <factor type="double">5.5556e-05</factor>
  7434. <axis>
  7435. <x type="double">1</x>
  7436. </axis>
  7437. </animation>
  7438. <animation n="853">
  7439. <type type="string">textranslate</type>
  7440. <object-name type="string">Plane.853</object-name>
  7441. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[21]/elevation-ft</property>
  7442. <factor type="double">5.5556e-05</factor>
  7443. <axis>
  7444. <x type="double">1</x>
  7445. </axis>
  7446. </animation>
  7447. <animation n="854">
  7448. <type type="string">textranslate</type>
  7449. <object-name type="string">Plane.854</object-name>
  7450. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[22]/elevation-ft</property>
  7451. <factor type="double">5.5556e-05</factor>
  7452. <axis>
  7453. <x type="double">1</x>
  7454. </axis>
  7455. </animation>
  7456. <animation n="855">
  7457. <type type="string">textranslate</type>
  7458. <object-name type="string">Plane.855</object-name>
  7459. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[23]/elevation-ft</property>
  7460. <factor type="double">5.5556e-05</factor>
  7461. <axis>
  7462. <x type="double">1</x>
  7463. </axis>
  7464. </animation>
  7465. <animation n="856">
  7466. <type type="string">textranslate</type>
  7467. <object-name type="string">Plane.856</object-name>
  7468. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[24]/elevation-ft</property>
  7469. <factor type="double">5.5556e-05</factor>
  7470. <axis>
  7471. <x type="double">1</x>
  7472. </axis>
  7473. </animation>
  7474. <animation n="857">
  7475. <type type="string">textranslate</type>
  7476. <object-name type="string">Plane.857</object-name>
  7477. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[25]/elevation-ft</property>
  7478. <factor type="double">5.5556e-05</factor>
  7479. <axis>
  7480. <x type="double">1</x>
  7481. </axis>
  7482. </animation>
  7483. <animation n="858">
  7484. <type type="string">textranslate</type>
  7485. <object-name type="string">Plane.858</object-name>
  7486. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[26]/elevation-ft</property>
  7487. <factor type="double">5.5556e-05</factor>
  7488. <axis>
  7489. <x type="double">1</x>
  7490. </axis>
  7491. </animation>
  7492. <animation n="859">
  7493. <type type="string">textranslate</type>
  7494. <object-name type="string">Plane.859</object-name>
  7495. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[27]/elevation-ft</property>
  7496. <factor type="double">5.5556e-05</factor>
  7497. <axis>
  7498. <x type="double">1</x>
  7499. </axis>
  7500. </animation>
  7501. <animation n="860">
  7502. <type type="string">textranslate</type>
  7503. <object-name type="string">Plane.860</object-name>
  7504. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[28]/elevation-ft</property>
  7505. <factor type="double">5.5556e-05</factor>
  7506. <axis>
  7507. <x type="double">1</x>
  7508. </axis>
  7509. </animation>
  7510. <animation n="861">
  7511. <type type="string">textranslate</type>
  7512. <object-name type="string">Plane.861</object-name>
  7513. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[29]/elevation-ft</property>
  7514. <factor type="double">5.5556e-05</factor>
  7515. <axis>
  7516. <x type="double">1</x>
  7517. </axis>
  7518. </animation>
  7519. <animation n="862">
  7520. <type type="string">textranslate</type>
  7521. <object-name type="string">Plane.862</object-name>
  7522. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[30]/elevation-ft</property>
  7523. <factor type="double">5.5556e-05</factor>
  7524. <axis>
  7525. <x type="double">1</x>
  7526. </axis>
  7527. </animation>
  7528. <animation n="863">
  7529. <type type="string">textranslate</type>
  7530. <object-name type="string">Plane.863</object-name>
  7531. <property type="string">/instrumentation/terrain-map/pixels/row[26]/col[31]/elevation-ft</property>
  7532. <factor type="double">5.5556e-05</factor>
  7533. <axis>
  7534. <x type="double">1</x>
  7535. </axis>
  7536. </animation>
  7537. <animation n="865">
  7538. <type type="string">textranslate</type>
  7539. <object-name type="string">Plane.865</object-name>
  7540. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[1]/elevation-ft</property>
  7541. <factor type="double">5.5556e-05</factor>
  7542. <axis>
  7543. <x type="double">1</x>
  7544. </axis>
  7545. </animation>
  7546. <animation n="866">
  7547. <type type="string">textranslate</type>
  7548. <object-name type="string">Plane.866</object-name>
  7549. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[2]/elevation-ft</property>
  7550. <factor type="double">5.5556e-05</factor>
  7551. <axis>
  7552. <x type="double">1</x>
  7553. </axis>
  7554. </animation>
  7555. <animation n="867">
  7556. <type type="string">textranslate</type>
  7557. <object-name type="string">Plane.867</object-name>
  7558. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[3]/elevation-ft</property>
  7559. <factor type="double">5.5556e-05</factor>
  7560. <axis>
  7561. <x type="double">1</x>
  7562. </axis>
  7563. </animation>
  7564. <animation n="868">
  7565. <type type="string">textranslate</type>
  7566. <object-name type="string">Plane.868</object-name>
  7567. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[4]/elevation-ft</property>
  7568. <factor type="double">5.5556e-05</factor>
  7569. <axis>
  7570. <x type="double">1</x>
  7571. </axis>
  7572. </animation>
  7573. <animation n="869">
  7574. <type type="string">textranslate</type>
  7575. <object-name type="string">Plane.869</object-name>
  7576. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[5]/elevation-ft</property>
  7577. <factor type="double">5.5556e-05</factor>
  7578. <axis>
  7579. <x type="double">1</x>
  7580. </axis>
  7581. </animation>
  7582. <animation n="870">
  7583. <type type="string">textranslate</type>
  7584. <object-name type="string">Plane.870</object-name>
  7585. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[6]/elevation-ft</property>
  7586. <factor type="double">5.5556e-05</factor>
  7587. <axis>
  7588. <x type="double">1</x>
  7589. </axis>
  7590. </animation>
  7591. <animation n="871">
  7592. <type type="string">textranslate</type>
  7593. <object-name type="string">Plane.871</object-name>
  7594. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[7]/elevation-ft</property>
  7595. <factor type="double">5.5556e-05</factor>
  7596. <axis>
  7597. <x type="double">1</x>
  7598. </axis>
  7599. </animation>
  7600. <animation n="872">
  7601. <type type="string">textranslate</type>
  7602. <object-name type="string">Plane.872</object-name>
  7603. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[8]/elevation-ft</property>
  7604. <factor type="double">5.5556e-05</factor>
  7605. <axis>
  7606. <x type="double">1</x>
  7607. </axis>
  7608. </animation>
  7609. <animation n="873">
  7610. <type type="string">textranslate</type>
  7611. <object-name type="string">Plane.873</object-name>
  7612. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[9]/elevation-ft</property>
  7613. <factor type="double">5.5556e-05</factor>
  7614. <axis>
  7615. <x type="double">1</x>
  7616. </axis>
  7617. </animation>
  7618. <animation n="874">
  7619. <type type="string">textranslate</type>
  7620. <object-name type="string">Plane.874</object-name>
  7621. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[10]/elevation-ft</property>
  7622. <factor type="double">5.5556e-05</factor>
  7623. <axis>
  7624. <x type="double">1</x>
  7625. </axis>
  7626. </animation>
  7627. <animation n="875">
  7628. <type type="string">textranslate</type>
  7629. <object-name type="string">Plane.875</object-name>
  7630. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[11]/elevation-ft</property>
  7631. <factor type="double">5.5556e-05</factor>
  7632. <axis>
  7633. <x type="double">1</x>
  7634. </axis>
  7635. </animation>
  7636. <animation n="876">
  7637. <type type="string">textranslate</type>
  7638. <object-name type="string">Plane.876</object-name>
  7639. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[12]/elevation-ft</property>
  7640. <factor type="double">5.5556e-05</factor>
  7641. <axis>
  7642. <x type="double">1</x>
  7643. </axis>
  7644. </animation>
  7645. <animation n="877">
  7646. <type type="string">textranslate</type>
  7647. <object-name type="string">Plane.877</object-name>
  7648. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[13]/elevation-ft</property>
  7649. <factor type="double">5.5556e-05</factor>
  7650. <axis>
  7651. <x type="double">1</x>
  7652. </axis>
  7653. </animation>
  7654. <animation n="878">
  7655. <type type="string">textranslate</type>
  7656. <object-name type="string">Plane.878</object-name>
  7657. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[14]/elevation-ft</property>
  7658. <factor type="double">5.5556e-05</factor>
  7659. <axis>
  7660. <x type="double">1</x>
  7661. </axis>
  7662. </animation>
  7663. <animation n="879">
  7664. <type type="string">textranslate</type>
  7665. <object-name type="string">Plane.879</object-name>
  7666. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[15]/elevation-ft</property>
  7667. <factor type="double">5.5556e-05</factor>
  7668. <axis>
  7669. <x type="double">1</x>
  7670. </axis>
  7671. </animation>
  7672. <animation n="880">
  7673. <type type="string">textranslate</type>
  7674. <object-name type="string">Plane.880</object-name>
  7675. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[16]/elevation-ft</property>
  7676. <factor type="double">5.5556e-05</factor>
  7677. <axis>
  7678. <x type="double">1</x>
  7679. </axis>
  7680. </animation>
  7681. <animation n="881">
  7682. <type type="string">textranslate</type>
  7683. <object-name type="string">Plane.881</object-name>
  7684. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[17]/elevation-ft</property>
  7685. <factor type="double">5.5556e-05</factor>
  7686. <axis>
  7687. <x type="double">1</x>
  7688. </axis>
  7689. </animation>
  7690. <animation n="882">
  7691. <type type="string">textranslate</type>
  7692. <object-name type="string">Plane.882</object-name>
  7693. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[18]/elevation-ft</property>
  7694. <factor type="double">5.5556e-05</factor>
  7695. <axis>
  7696. <x type="double">1</x>
  7697. </axis>
  7698. </animation>
  7699. <animation n="883">
  7700. <type type="string">textranslate</type>
  7701. <object-name type="string">Plane.883</object-name>
  7702. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[19]/elevation-ft</property>
  7703. <factor type="double">5.5556e-05</factor>
  7704. <axis>
  7705. <x type="double">1</x>
  7706. </axis>
  7707. </animation>
  7708. <animation n="884">
  7709. <type type="string">textranslate</type>
  7710. <object-name type="string">Plane.884</object-name>
  7711. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[20]/elevation-ft</property>
  7712. <factor type="double">5.5556e-05</factor>
  7713. <axis>
  7714. <x type="double">1</x>
  7715. </axis>
  7716. </animation>
  7717. <animation n="885">
  7718. <type type="string">textranslate</type>
  7719. <object-name type="string">Plane.885</object-name>
  7720. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[21]/elevation-ft</property>
  7721. <factor type="double">5.5556e-05</factor>
  7722. <axis>
  7723. <x type="double">1</x>
  7724. </axis>
  7725. </animation>
  7726. <animation n="886">
  7727. <type type="string">textranslate</type>
  7728. <object-name type="string">Plane.886</object-name>
  7729. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[22]/elevation-ft</property>
  7730. <factor type="double">5.5556e-05</factor>
  7731. <axis>
  7732. <x type="double">1</x>
  7733. </axis>
  7734. </animation>
  7735. <animation n="887">
  7736. <type type="string">textranslate</type>
  7737. <object-name type="string">Plane.887</object-name>
  7738. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[23]/elevation-ft</property>
  7739. <factor type="double">5.5556e-05</factor>
  7740. <axis>
  7741. <x type="double">1</x>
  7742. </axis>
  7743. </animation>
  7744. <animation n="888">
  7745. <type type="string">textranslate</type>
  7746. <object-name type="string">Plane.888</object-name>
  7747. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[24]/elevation-ft</property>
  7748. <factor type="double">5.5556e-05</factor>
  7749. <axis>
  7750. <x type="double">1</x>
  7751. </axis>
  7752. </animation>
  7753. <animation n="889">
  7754. <type type="string">textranslate</type>
  7755. <object-name type="string">Plane.889</object-name>
  7756. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[25]/elevation-ft</property>
  7757. <factor type="double">5.5556e-05</factor>
  7758. <axis>
  7759. <x type="double">1</x>
  7760. </axis>
  7761. </animation>
  7762. <animation n="890">
  7763. <type type="string">textranslate</type>
  7764. <object-name type="string">Plane.890</object-name>
  7765. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[26]/elevation-ft</property>
  7766. <factor type="double">5.5556e-05</factor>
  7767. <axis>
  7768. <x type="double">1</x>
  7769. </axis>
  7770. </animation>
  7771. <animation n="891">
  7772. <type type="string">textranslate</type>
  7773. <object-name type="string">Plane.891</object-name>
  7774. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[27]/elevation-ft</property>
  7775. <factor type="double">5.5556e-05</factor>
  7776. <axis>
  7777. <x type="double">1</x>
  7778. </axis>
  7779. </animation>
  7780. <animation n="892">
  7781. <type type="string">textranslate</type>
  7782. <object-name type="string">Plane.892</object-name>
  7783. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[28]/elevation-ft</property>
  7784. <factor type="double">5.5556e-05</factor>
  7785. <axis>
  7786. <x type="double">1</x>
  7787. </axis>
  7788. </animation>
  7789. <animation n="893">
  7790. <type type="string">textranslate</type>
  7791. <object-name type="string">Plane.893</object-name>
  7792. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[29]/elevation-ft</property>
  7793. <factor type="double">5.5556e-05</factor>
  7794. <axis>
  7795. <x type="double">1</x>
  7796. </axis>
  7797. </animation>
  7798. <animation n="894">
  7799. <type type="string">textranslate</type>
  7800. <object-name type="string">Plane.894</object-name>
  7801. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[30]/elevation-ft</property>
  7802. <factor type="double">5.5556e-05</factor>
  7803. <axis>
  7804. <x type="double">1</x>
  7805. </axis>
  7806. </animation>
  7807. <animation n="895">
  7808. <type type="string">textranslate</type>
  7809. <object-name type="string">Plane.895</object-name>
  7810. <property type="string">/instrumentation/terrain-map/pixels/row[27]/col[31]/elevation-ft</property>
  7811. <factor type="double">5.5556e-05</factor>
  7812. <axis>
  7813. <x type="double">1</x>
  7814. </axis>
  7815. </animation>
  7816. <animation n="897">
  7817. <type type="string">textranslate</type>
  7818. <object-name type="string">Plane.897</object-name>
  7819. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[1]/elevation-ft</property>
  7820. <factor type="double">5.5556e-05</factor>
  7821. <axis>
  7822. <x type="double">1</x>
  7823. </axis>
  7824. </animation>
  7825. <animation n="898">
  7826. <type type="string">textranslate</type>
  7827. <object-name type="string">Plane.898</object-name>
  7828. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[2]/elevation-ft</property>
  7829. <factor type="double">5.5556e-05</factor>
  7830. <axis>
  7831. <x type="double">1</x>
  7832. </axis>
  7833. </animation>
  7834. <animation n="899">
  7835. <type type="string">textranslate</type>
  7836. <object-name type="string">Plane.899</object-name>
  7837. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[3]/elevation-ft</property>
  7838. <factor type="double">5.5556e-05</factor>
  7839. <axis>
  7840. <x type="double">1</x>
  7841. </axis>
  7842. </animation>
  7843. <animation n="900">
  7844. <type type="string">textranslate</type>
  7845. <object-name type="string">Plane.900</object-name>
  7846. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[4]/elevation-ft</property>
  7847. <factor type="double">5.5556e-05</factor>
  7848. <axis>
  7849. <x type="double">1</x>
  7850. </axis>
  7851. </animation>
  7852. <animation n="901">
  7853. <type type="string">textranslate</type>
  7854. <object-name type="string">Plane.901</object-name>
  7855. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[5]/elevation-ft</property>
  7856. <factor type="double">5.5556e-05</factor>
  7857. <axis>
  7858. <x type="double">1</x>
  7859. </axis>
  7860. </animation>
  7861. <animation n="902">
  7862. <type type="string">textranslate</type>
  7863. <object-name type="string">Plane.902</object-name>
  7864. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[6]/elevation-ft</property>
  7865. <factor type="double">5.5556e-05</factor>
  7866. <axis>
  7867. <x type="double">1</x>
  7868. </axis>
  7869. </animation>
  7870. <animation n="903">
  7871. <type type="string">textranslate</type>
  7872. <object-name type="string">Plane.903</object-name>
  7873. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[7]/elevation-ft</property>
  7874. <factor type="double">5.5556e-05</factor>
  7875. <axis>
  7876. <x type="double">1</x>
  7877. </axis>
  7878. </animation>
  7879. <animation n="904">
  7880. <type type="string">textranslate</type>
  7881. <object-name type="string">Plane.904</object-name>
  7882. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[8]/elevation-ft</property>
  7883. <factor type="double">5.5556e-05</factor>
  7884. <axis>
  7885. <x type="double">1</x>
  7886. </axis>
  7887. </animation>
  7888. <animation n="905">
  7889. <type type="string">textranslate</type>
  7890. <object-name type="string">Plane.905</object-name>
  7891. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[9]/elevation-ft</property>
  7892. <factor type="double">5.5556e-05</factor>
  7893. <axis>
  7894. <x type="double">1</x>
  7895. </axis>
  7896. </animation>
  7897. <animation n="906">
  7898. <type type="string">textranslate</type>
  7899. <object-name type="string">Plane.906</object-name>
  7900. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[10]/elevation-ft</property>
  7901. <factor type="double">5.5556e-05</factor>
  7902. <axis>
  7903. <x type="double">1</x>
  7904. </axis>
  7905. </animation>
  7906. <animation n="907">
  7907. <type type="string">textranslate</type>
  7908. <object-name type="string">Plane.907</object-name>
  7909. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[11]/elevation-ft</property>
  7910. <factor type="double">5.5556e-05</factor>
  7911. <axis>
  7912. <x type="double">1</x>
  7913. </axis>
  7914. </animation>
  7915. <animation n="908">
  7916. <type type="string">textranslate</type>
  7917. <object-name type="string">Plane.908</object-name>
  7918. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[12]/elevation-ft</property>
  7919. <factor type="double">5.5556e-05</factor>
  7920. <axis>
  7921. <x type="double">1</x>
  7922. </axis>
  7923. </animation>
  7924. <animation n="909">
  7925. <type type="string">textranslate</type>
  7926. <object-name type="string">Plane.909</object-name>
  7927. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[13]/elevation-ft</property>
  7928. <factor type="double">5.5556e-05</factor>
  7929. <axis>
  7930. <x type="double">1</x>
  7931. </axis>
  7932. </animation>
  7933. <animation n="910">
  7934. <type type="string">textranslate</type>
  7935. <object-name type="string">Plane.910</object-name>
  7936. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[14]/elevation-ft</property>
  7937. <factor type="double">5.5556e-05</factor>
  7938. <axis>
  7939. <x type="double">1</x>
  7940. </axis>
  7941. </animation>
  7942. <animation n="911">
  7943. <type type="string">textranslate</type>
  7944. <object-name type="string">Plane.911</object-name>
  7945. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[15]/elevation-ft</property>
  7946. <factor type="double">5.5556e-05</factor>
  7947. <axis>
  7948. <x type="double">1</x>
  7949. </axis>
  7950. </animation>
  7951. <animation n="912">
  7952. <type type="string">textranslate</type>
  7953. <object-name type="string">Plane.912</object-name>
  7954. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[16]/elevation-ft</property>
  7955. <factor type="double">5.5556e-05</factor>
  7956. <axis>
  7957. <x type="double">1</x>
  7958. </axis>
  7959. </animation>
  7960. <animation n="913">
  7961. <type type="string">textranslate</type>
  7962. <object-name type="string">Plane.913</object-name>
  7963. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[17]/elevation-ft</property>
  7964. <factor type="double">5.5556e-05</factor>
  7965. <axis>
  7966. <x type="double">1</x>
  7967. </axis>
  7968. </animation>
  7969. <animation n="914">
  7970. <type type="string">textranslate</type>
  7971. <object-name type="string">Plane.914</object-name>
  7972. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[18]/elevation-ft</property>
  7973. <factor type="double">5.5556e-05</factor>
  7974. <axis>
  7975. <x type="double">1</x>
  7976. </axis>
  7977. </animation>
  7978. <animation n="915">
  7979. <type type="string">textranslate</type>
  7980. <object-name type="string">Plane.915</object-name>
  7981. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[19]/elevation-ft</property>
  7982. <factor type="double">5.5556e-05</factor>
  7983. <axis>
  7984. <x type="double">1</x>
  7985. </axis>
  7986. </animation>
  7987. <animation n="916">
  7988. <type type="string">textranslate</type>
  7989. <object-name type="string">Plane.916</object-name>
  7990. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[20]/elevation-ft</property>
  7991. <factor type="double">5.5556e-05</factor>
  7992. <axis>
  7993. <x type="double">1</x>
  7994. </axis>
  7995. </animation>
  7996. <animation n="917">
  7997. <type type="string">textranslate</type>
  7998. <object-name type="string">Plane.917</object-name>
  7999. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[21]/elevation-ft</property>
  8000. <factor type="double">5.5556e-05</factor>
  8001. <axis>
  8002. <x type="double">1</x>
  8003. </axis>
  8004. </animation>
  8005. <animation n="918">
  8006. <type type="string">textranslate</type>
  8007. <object-name type="string">Plane.918</object-name>
  8008. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[22]/elevation-ft</property>
  8009. <factor type="double">5.5556e-05</factor>
  8010. <axis>
  8011. <x type="double">1</x>
  8012. </axis>
  8013. </animation>
  8014. <animation n="919">
  8015. <type type="string">textranslate</type>
  8016. <object-name type="string">Plane.919</object-name>
  8017. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[23]/elevation-ft</property>
  8018. <factor type="double">5.5556e-05</factor>
  8019. <axis>
  8020. <x type="double">1</x>
  8021. </axis>
  8022. </animation>
  8023. <animation n="920">
  8024. <type type="string">textranslate</type>
  8025. <object-name type="string">Plane.920</object-name>
  8026. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[24]/elevation-ft</property>
  8027. <factor type="double">5.5556e-05</factor>
  8028. <axis>
  8029. <x type="double">1</x>
  8030. </axis>
  8031. </animation>
  8032. <animation n="921">
  8033. <type type="string">textranslate</type>
  8034. <object-name type="string">Plane.921</object-name>
  8035. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[25]/elevation-ft</property>
  8036. <factor type="double">5.5556e-05</factor>
  8037. <axis>
  8038. <x type="double">1</x>
  8039. </axis>
  8040. </animation>
  8041. <animation n="922">
  8042. <type type="string">textranslate</type>
  8043. <object-name type="string">Plane.922</object-name>
  8044. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[26]/elevation-ft</property>
  8045. <factor type="double">5.5556e-05</factor>
  8046. <axis>
  8047. <x type="double">1</x>
  8048. </axis>
  8049. </animation>
  8050. <animation n="923">
  8051. <type type="string">textranslate</type>
  8052. <object-name type="string">Plane.923</object-name>
  8053. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[27]/elevation-ft</property>
  8054. <factor type="double">5.5556e-05</factor>
  8055. <axis>
  8056. <x type="double">1</x>
  8057. </axis>
  8058. </animation>
  8059. <animation n="924">
  8060. <type type="string">textranslate</type>
  8061. <object-name type="string">Plane.924</object-name>
  8062. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[28]/elevation-ft</property>
  8063. <factor type="double">5.5556e-05</factor>
  8064. <axis>
  8065. <x type="double">1</x>
  8066. </axis>
  8067. </animation>
  8068. <animation n="925">
  8069. <type type="string">textranslate</type>
  8070. <object-name type="string">Plane.925</object-name>
  8071. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[29]/elevation-ft</property>
  8072. <factor type="double">5.5556e-05</factor>
  8073. <axis>
  8074. <x type="double">1</x>
  8075. </axis>
  8076. </animation>
  8077. <animation n="926">
  8078. <type type="string">textranslate</type>
  8079. <object-name type="string">Plane.926</object-name>
  8080. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[30]/elevation-ft</property>
  8081. <factor type="double">5.5556e-05</factor>
  8082. <axis>
  8083. <x type="double">1</x>
  8084. </axis>
  8085. </animation>
  8086. <animation n="927">
  8087. <type type="string">textranslate</type>
  8088. <object-name type="string">Plane.927</object-name>
  8089. <property type="string">/instrumentation/terrain-map/pixels/row[28]/col[31]/elevation-ft</property>
  8090. <factor type="double">5.5556e-05</factor>
  8091. <axis>
  8092. <x type="double">1</x>
  8093. </axis>
  8094. </animation>
  8095. <animation n="929">
  8096. <type type="string">textranslate</type>
  8097. <object-name type="string">Plane.929</object-name>
  8098. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[1]/elevation-ft</property>
  8099. <factor type="double">5.5556e-05</factor>
  8100. <axis>
  8101. <x type="double">1</x>
  8102. </axis>
  8103. </animation>
  8104. <animation n="930">
  8105. <type type="string">textranslate</type>
  8106. <object-name type="string">Plane.930</object-name>
  8107. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[2]/elevation-ft</property>
  8108. <factor type="double">5.5556e-05</factor>
  8109. <axis>
  8110. <x type="double">1</x>
  8111. </axis>
  8112. </animation>
  8113. <animation n="931">
  8114. <type type="string">textranslate</type>
  8115. <object-name type="string">Plane.931</object-name>
  8116. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[3]/elevation-ft</property>
  8117. <factor type="double">5.5556e-05</factor>
  8118. <axis>
  8119. <x type="double">1</x>
  8120. </axis>
  8121. </animation>
  8122. <animation n="932">
  8123. <type type="string">textranslate</type>
  8124. <object-name type="string">Plane.932</object-name>
  8125. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[4]/elevation-ft</property>
  8126. <factor type="double">5.5556e-05</factor>
  8127. <axis>
  8128. <x type="double">1</x>
  8129. </axis>
  8130. </animation>
  8131. <animation n="933">
  8132. <type type="string">textranslate</type>
  8133. <object-name type="string">Plane.933</object-name>
  8134. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[5]/elevation-ft</property>
  8135. <factor type="double">5.5556e-05</factor>
  8136. <axis>
  8137. <x type="double">1</x>
  8138. </axis>
  8139. </animation>
  8140. <animation n="934">
  8141. <type type="string">textranslate</type>
  8142. <object-name type="string">Plane.934</object-name>
  8143. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[6]/elevation-ft</property>
  8144. <factor type="double">5.5556e-05</factor>
  8145. <axis>
  8146. <x type="double">1</x>
  8147. </axis>
  8148. </animation>
  8149. <animation n="935">
  8150. <type type="string">textranslate</type>
  8151. <object-name type="string">Plane.935</object-name>
  8152. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[7]/elevation-ft</property>
  8153. <factor type="double">5.5556e-05</factor>
  8154. <axis>
  8155. <x type="double">1</x>
  8156. </axis>
  8157. </animation>
  8158. <animation n="936">
  8159. <type type="string">textranslate</type>
  8160. <object-name type="string">Plane.936</object-name>
  8161. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[8]/elevation-ft</property>
  8162. <factor type="double">5.5556e-05</factor>
  8163. <axis>
  8164. <x type="double">1</x>
  8165. </axis>
  8166. </animation>
  8167. <animation n="937">
  8168. <type type="string">textranslate</type>
  8169. <object-name type="string">Plane.937</object-name>
  8170. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[9]/elevation-ft</property>
  8171. <factor type="double">5.5556e-05</factor>
  8172. <axis>
  8173. <x type="double">1</x>
  8174. </axis>
  8175. </animation>
  8176. <animation n="938">
  8177. <type type="string">textranslate</type>
  8178. <object-name type="string">Plane.938</object-name>
  8179. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[10]/elevation-ft</property>
  8180. <factor type="double">5.5556e-05</factor>
  8181. <axis>
  8182. <x type="double">1</x>
  8183. </axis>
  8184. </animation>
  8185. <animation n="939">
  8186. <type type="string">textranslate</type>
  8187. <object-name type="string">Plane.939</object-name>
  8188. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[11]/elevation-ft</property>
  8189. <factor type="double">5.5556e-05</factor>
  8190. <axis>
  8191. <x type="double">1</x>
  8192. </axis>
  8193. </animation>
  8194. <animation n="940">
  8195. <type type="string">textranslate</type>
  8196. <object-name type="string">Plane.940</object-name>
  8197. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[12]/elevation-ft</property>
  8198. <factor type="double">5.5556e-05</factor>
  8199. <axis>
  8200. <x type="double">1</x>
  8201. </axis>
  8202. </animation>
  8203. <animation n="941">
  8204. <type type="string">textranslate</type>
  8205. <object-name type="string">Plane.941</object-name>
  8206. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[13]/elevation-ft</property>
  8207. <factor type="double">5.5556e-05</factor>
  8208. <axis>
  8209. <x type="double">1</x>
  8210. </axis>
  8211. </animation>
  8212. <animation n="942">
  8213. <type type="string">textranslate</type>
  8214. <object-name type="string">Plane.942</object-name>
  8215. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[14]/elevation-ft</property>
  8216. <factor type="double">5.5556e-05</factor>
  8217. <axis>
  8218. <x type="double">1</x>
  8219. </axis>
  8220. </animation>
  8221. <animation n="943">
  8222. <type type="string">textranslate</type>
  8223. <object-name type="string">Plane.943</object-name>
  8224. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[15]/elevation-ft</property>
  8225. <factor type="double">5.5556e-05</factor>
  8226. <axis>
  8227. <x type="double">1</x>
  8228. </axis>
  8229. </animation>
  8230. <animation n="944">
  8231. <type type="string">textranslate</type>
  8232. <object-name type="string">Plane.944</object-name>
  8233. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[16]/elevation-ft</property>
  8234. <factor type="double">5.5556e-05</factor>
  8235. <axis>
  8236. <x type="double">1</x>
  8237. </axis>
  8238. </animation>
  8239. <animation n="945">
  8240. <type type="string">textranslate</type>
  8241. <object-name type="string">Plane.945</object-name>
  8242. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[17]/elevation-ft</property>
  8243. <factor type="double">5.5556e-05</factor>
  8244. <axis>
  8245. <x type="double">1</x>
  8246. </axis>
  8247. </animation>
  8248. <animation n="946">
  8249. <type type="string">textranslate</type>
  8250. <object-name type="string">Plane.946</object-name>
  8251. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[18]/elevation-ft</property>
  8252. <factor type="double">5.5556e-05</factor>
  8253. <axis>
  8254. <x type="double">1</x>
  8255. </axis>
  8256. </animation>
  8257. <animation n="947">
  8258. <type type="string">textranslate</type>
  8259. <object-name type="string">Plane.947</object-name>
  8260. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[19]/elevation-ft</property>
  8261. <factor type="double">5.5556e-05</factor>
  8262. <axis>
  8263. <x type="double">1</x>
  8264. </axis>
  8265. </animation>
  8266. <animation n="948">
  8267. <type type="string">textranslate</type>
  8268. <object-name type="string">Plane.948</object-name>
  8269. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[20]/elevation-ft</property>
  8270. <factor type="double">5.5556e-05</factor>
  8271. <axis>
  8272. <x type="double">1</x>
  8273. </axis>
  8274. </animation>
  8275. <animation n="949">
  8276. <type type="string">textranslate</type>
  8277. <object-name type="string">Plane.949</object-name>
  8278. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[21]/elevation-ft</property>
  8279. <factor type="double">5.5556e-05</factor>
  8280. <axis>
  8281. <x type="double">1</x>
  8282. </axis>
  8283. </animation>
  8284. <animation n="950">
  8285. <type type="string">textranslate</type>
  8286. <object-name type="string">Plane.950</object-name>
  8287. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[22]/elevation-ft</property>
  8288. <factor type="double">5.5556e-05</factor>
  8289. <axis>
  8290. <x type="double">1</x>
  8291. </axis>
  8292. </animation>
  8293. <animation n="951">
  8294. <type type="string">textranslate</type>
  8295. <object-name type="string">Plane.951</object-name>
  8296. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[23]/elevation-ft</property>
  8297. <factor type="double">5.5556e-05</factor>
  8298. <axis>
  8299. <x type="double">1</x>
  8300. </axis>
  8301. </animation>
  8302. <animation n="952">
  8303. <type type="string">textranslate</type>
  8304. <object-name type="string">Plane.952</object-name>
  8305. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[24]/elevation-ft</property>
  8306. <factor type="double">5.5556e-05</factor>
  8307. <axis>
  8308. <x type="double">1</x>
  8309. </axis>
  8310. </animation>
  8311. <animation n="953">
  8312. <type type="string">textranslate</type>
  8313. <object-name type="string">Plane.953</object-name>
  8314. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[25]/elevation-ft</property>
  8315. <factor type="double">5.5556e-05</factor>
  8316. <axis>
  8317. <x type="double">1</x>
  8318. </axis>
  8319. </animation>
  8320. <animation n="954">
  8321. <type type="string">textranslate</type>
  8322. <object-name type="string">Plane.954</object-name>
  8323. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[26]/elevation-ft</property>
  8324. <factor type="double">5.5556e-05</factor>
  8325. <axis>
  8326. <x type="double">1</x>
  8327. </axis>
  8328. </animation>
  8329. <animation n="955">
  8330. <type type="string">textranslate</type>
  8331. <object-name type="string">Plane.955</object-name>
  8332. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[27]/elevation-ft</property>
  8333. <factor type="double">5.5556e-05</factor>
  8334. <axis>
  8335. <x type="double">1</x>
  8336. </axis>
  8337. </animation>
  8338. <animation n="956">
  8339. <type type="string">textranslate</type>
  8340. <object-name type="string">Plane.956</object-name>
  8341. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[28]/elevation-ft</property>
  8342. <factor type="double">5.5556e-05</factor>
  8343. <axis>
  8344. <x type="double">1</x>
  8345. </axis>
  8346. </animation>
  8347. <animation n="957">
  8348. <type type="string">textranslate</type>
  8349. <object-name type="string">Plane.957</object-name>
  8350. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[29]/elevation-ft</property>
  8351. <factor type="double">5.5556e-05</factor>
  8352. <axis>
  8353. <x type="double">1</x>
  8354. </axis>
  8355. </animation>
  8356. <animation n="958">
  8357. <type type="string">textranslate</type>
  8358. <object-name type="string">Plane.958</object-name>
  8359. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[30]/elevation-ft</property>
  8360. <factor type="double">5.5556e-05</factor>
  8361. <axis>
  8362. <x type="double">1</x>
  8363. </axis>
  8364. </animation>
  8365. <animation n="959">
  8366. <type type="string">textranslate</type>
  8367. <object-name type="string">Plane.959</object-name>
  8368. <property type="string">/instrumentation/terrain-map/pixels/row[29]/col[31]/elevation-ft</property>
  8369. <factor type="double">5.5556e-05</factor>
  8370. <axis>
  8371. <x type="double">1</x>
  8372. </axis>
  8373. </animation>
  8374. <animation n="961">
  8375. <type type="string">textranslate</type>
  8376. <object-name type="string">Plane.961</object-name>
  8377. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[1]/elevation-ft</property>
  8378. <factor type="double">5.5556e-05</factor>
  8379. <axis>
  8380. <x type="double">1</x>
  8381. </axis>
  8382. </animation>
  8383. <animation n="962">
  8384. <type type="string">textranslate</type>
  8385. <object-name type="string">Plane.962</object-name>
  8386. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[2]/elevation-ft</property>
  8387. <factor type="double">5.5556e-05</factor>
  8388. <axis>
  8389. <x type="double">1</x>
  8390. </axis>
  8391. </animation>
  8392. <animation n="963">
  8393. <type type="string">textranslate</type>
  8394. <object-name type="string">Plane.963</object-name>
  8395. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[3]/elevation-ft</property>
  8396. <factor type="double">5.5556e-05</factor>
  8397. <axis>
  8398. <x type="double">1</x>
  8399. </axis>
  8400. </animation>
  8401. <animation n="964">
  8402. <type type="string">textranslate</type>
  8403. <object-name type="string">Plane.964</object-name>
  8404. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[4]/elevation-ft</property>
  8405. <factor type="double">5.5556e-05</factor>
  8406. <axis>
  8407. <x type="double">1</x>
  8408. </axis>
  8409. </animation>
  8410. <animation n="965">
  8411. <type type="string">textranslate</type>
  8412. <object-name type="string">Plane.965</object-name>
  8413. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[5]/elevation-ft</property>
  8414. <factor type="double">5.5556e-05</factor>
  8415. <axis>
  8416. <x type="double">1</x>
  8417. </axis>
  8418. </animation>
  8419. <animation n="966">
  8420. <type type="string">textranslate</type>
  8421. <object-name type="string">Plane.966</object-name>
  8422. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[6]/elevation-ft</property>
  8423. <factor type="double">5.5556e-05</factor>
  8424. <axis>
  8425. <x type="double">1</x>
  8426. </axis>
  8427. </animation>
  8428. <animation n="967">
  8429. <type type="string">textranslate</type>
  8430. <object-name type="string">Plane.967</object-name>
  8431. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[7]/elevation-ft</property>
  8432. <factor type="double">5.5556e-05</factor>
  8433. <axis>
  8434. <x type="double">1</x>
  8435. </axis>
  8436. </animation>
  8437. <animation n="968">
  8438. <type type="string">textranslate</type>
  8439. <object-name type="string">Plane.968</object-name>
  8440. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[8]/elevation-ft</property>
  8441. <factor type="double">5.5556e-05</factor>
  8442. <axis>
  8443. <x type="double">1</x>
  8444. </axis>
  8445. </animation>
  8446. <animation n="969">
  8447. <type type="string">textranslate</type>
  8448. <object-name type="string">Plane.969</object-name>
  8449. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[9]/elevation-ft</property>
  8450. <factor type="double">5.5556e-05</factor>
  8451. <axis>
  8452. <x type="double">1</x>
  8453. </axis>
  8454. </animation>
  8455. <animation n="970">
  8456. <type type="string">textranslate</type>
  8457. <object-name type="string">Plane.970</object-name>
  8458. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[10]/elevation-ft</property>
  8459. <factor type="double">5.5556e-05</factor>
  8460. <axis>
  8461. <x type="double">1</x>
  8462. </axis>
  8463. </animation>
  8464. <animation n="971">
  8465. <type type="string">textranslate</type>
  8466. <object-name type="string">Plane.971</object-name>
  8467. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[11]/elevation-ft</property>
  8468. <factor type="double">5.5556e-05</factor>
  8469. <axis>
  8470. <x type="double">1</x>
  8471. </axis>
  8472. </animation>
  8473. <animation n="972">
  8474. <type type="string">textranslate</type>
  8475. <object-name type="string">Plane.972</object-name>
  8476. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[12]/elevation-ft</property>
  8477. <factor type="double">5.5556e-05</factor>
  8478. <axis>
  8479. <x type="double">1</x>
  8480. </axis>
  8481. </animation>
  8482. <animation n="973">
  8483. <type type="string">textranslate</type>
  8484. <object-name type="string">Plane.973</object-name>
  8485. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[13]/elevation-ft</property>
  8486. <factor type="double">5.5556e-05</factor>
  8487. <axis>
  8488. <x type="double">1</x>
  8489. </axis>
  8490. </animation>
  8491. <animation n="974">
  8492. <type type="string">textranslate</type>
  8493. <object-name type="string">Plane.974</object-name>
  8494. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[14]/elevation-ft</property>
  8495. <factor type="double">5.5556e-05</factor>
  8496. <axis>
  8497. <x type="double">1</x>
  8498. </axis>
  8499. </animation>
  8500. <animation n="975">
  8501. <type type="string">textranslate</type>
  8502. <object-name type="string">Plane.975</object-name>
  8503. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[15]/elevation-ft</property>
  8504. <factor type="double">5.5556e-05</factor>
  8505. <axis>
  8506. <x type="double">1</x>
  8507. </axis>
  8508. </animation>
  8509. <animation n="976">
  8510. <type type="string">textranslate</type>
  8511. <object-name type="string">Plane.976</object-name>
  8512. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[16]/elevation-ft</property>
  8513. <factor type="double">5.5556e-05</factor>
  8514. <axis>
  8515. <x type="double">1</x>
  8516. </axis>
  8517. </animation>
  8518. <animation n="977">
  8519. <type type="string">textranslate</type>
  8520. <object-name type="string">Plane.977</object-name>
  8521. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[17]/elevation-ft</property>
  8522. <factor type="double">5.5556e-05</factor>
  8523. <axis>
  8524. <x type="double">1</x>
  8525. </axis>
  8526. </animation>
  8527. <animation n="978">
  8528. <type type="string">textranslate</type>
  8529. <object-name type="string">Plane.978</object-name>
  8530. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[18]/elevation-ft</property>
  8531. <factor type="double">5.5556e-05</factor>
  8532. <axis>
  8533. <x type="double">1</x>
  8534. </axis>
  8535. </animation>
  8536. <animation n="979">
  8537. <type type="string">textranslate</type>
  8538. <object-name type="string">Plane.979</object-name>
  8539. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[19]/elevation-ft</property>
  8540. <factor type="double">5.5556e-05</factor>
  8541. <axis>
  8542. <x type="double">1</x>
  8543. </axis>
  8544. </animation>
  8545. <animation n="980">
  8546. <type type="string">textranslate</type>
  8547. <object-name type="string">Plane.980</object-name>
  8548. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[20]/elevation-ft</property>
  8549. <factor type="double">5.5556e-05</factor>
  8550. <axis>
  8551. <x type="double">1</x>
  8552. </axis>
  8553. </animation>
  8554. <animation n="981">
  8555. <type type="string">textranslate</type>
  8556. <object-name type="string">Plane.981</object-name>
  8557. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[21]/elevation-ft</property>
  8558. <factor type="double">5.5556e-05</factor>
  8559. <axis>
  8560. <x type="double">1</x>
  8561. </axis>
  8562. </animation>
  8563. <animation n="982">
  8564. <type type="string">textranslate</type>
  8565. <object-name type="string">Plane.982</object-name>
  8566. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[22]/elevation-ft</property>
  8567. <factor type="double">5.5556e-05</factor>
  8568. <axis>
  8569. <x type="double">1</x>
  8570. </axis>
  8571. </animation>
  8572. <animation n="983">
  8573. <type type="string">textranslate</type>
  8574. <object-name type="string">Plane.983</object-name>
  8575. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[23]/elevation-ft</property>
  8576. <factor type="double">5.5556e-05</factor>
  8577. <axis>
  8578. <x type="double">1</x>
  8579. </axis>
  8580. </animation>
  8581. <animation n="984">
  8582. <type type="string">textranslate</type>
  8583. <object-name type="string">Plane.984</object-name>
  8584. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[24]/elevation-ft</property>
  8585. <factor type="double">5.5556e-05</factor>
  8586. <axis>
  8587. <x type="double">1</x>
  8588. </axis>
  8589. </animation>
  8590. <animation n="985">
  8591. <type type="string">textranslate</type>
  8592. <object-name type="string">Plane.985</object-name>
  8593. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[25]/elevation-ft</property>
  8594. <factor type="double">5.5556e-05</factor>
  8595. <axis>
  8596. <x type="double">1</x>
  8597. </axis>
  8598. </animation>
  8599. <animation n="986">
  8600. <type type="string">textranslate</type>
  8601. <object-name type="string">Plane.986</object-name>
  8602. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[26]/elevation-ft</property>
  8603. <factor type="double">5.5556e-05</factor>
  8604. <axis>
  8605. <x type="double">1</x>
  8606. </axis>
  8607. </animation>
  8608. <animation n="987">
  8609. <type type="string">textranslate</type>
  8610. <object-name type="string">Plane.987</object-name>
  8611. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[27]/elevation-ft</property>
  8612. <factor type="double">5.5556e-05</factor>
  8613. <axis>
  8614. <x type="double">1</x>
  8615. </axis>
  8616. </animation>
  8617. <animation n="988">
  8618. <type type="string">textranslate</type>
  8619. <object-name type="string">Plane.988</object-name>
  8620. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[28]/elevation-ft</property>
  8621. <factor type="double">5.5556e-05</factor>
  8622. <axis>
  8623. <x type="double">1</x>
  8624. </axis>
  8625. </animation>
  8626. <animation n="989">
  8627. <type type="string">textranslate</type>
  8628. <object-name type="string">Plane.989</object-name>
  8629. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[29]/elevation-ft</property>
  8630. <factor type="double">5.5556e-05</factor>
  8631. <axis>
  8632. <x type="double">1</x>
  8633. </axis>
  8634. </animation>
  8635. <animation n="990">
  8636. <type type="string">textranslate</type>
  8637. <object-name type="string">Plane.990</object-name>
  8638. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[30]/elevation-ft</property>
  8639. <factor type="double">5.5556e-05</factor>
  8640. <axis>
  8641. <x type="double">1</x>
  8642. </axis>
  8643. </animation>
  8644. <animation n="991">
  8645. <type type="string">textranslate</type>
  8646. <object-name type="string">Plane.991</object-name>
  8647. <property type="string">/instrumentation/terrain-map/pixels/row[30]/col[31]/elevation-ft</property>
  8648. <factor type="double">5.5556e-05</factor>
  8649. <axis>
  8650. <x type="double">1</x>
  8651. </axis>
  8652. </animation>
  8653. <animation>
  8654. <type>material</type>
  8655. <object-name>Lat</object-name>
  8656. <object-name>Lat-label</object-name>
  8657. <object-name>Long</object-name>
  8658. <object-name>Long-label</object-name>
  8659. <object-name>wptdist-label</object-name>
  8660. <object-name>wptdist</object-name>
  8661. <object-name>ttd-label</object-name>
  8662. <object-name>ttddist</object-name>
  8663. <ambient>
  8664. <red>0.0</red>
  8665. <green>0.8</green>
  8666. <blue>0.0</blue>
  8667. </ambient>
  8668. <diffuse>
  8669. <red>0.0</red>
  8670. <green>0.1</green>
  8671. <blue>0.0</blue>
  8672. </diffuse>
  8673. <emission>
  8674. <red>0.3</red>
  8675. <green>0.6</green>
  8676. <blue>0.3</blue>
  8677. </emission>
  8678. </animation>
  8679. <text>
  8680. <name>Lat-label</name>
  8681. <font>typewrighter.txf</font>
  8682. <character-size type="double">0.006</character-size>
  8683. <offsets>
  8684. <x-m>0.007</x-m>
  8685. <y-m>-0.095</y-m>
  8686. <z-m>0.07</z-m>
  8687. <roll-deg>-90</roll-deg>
  8688. </offsets>
  8689. <axis-alignment>yz-plane</axis-alignment>
  8690. <type type="string">literal</type>
  8691. <text type="string">LAT:</text>
  8692. <draw-text type="bool">true</draw-text>
  8693. <alignment>left-top</alignment>
  8694. </text>
  8695. <text>
  8696. <name>Lat</name>
  8697. <font>typewrighter.txf</font>
  8698. <character-size type="double">0.006</character-size>
  8699. <offsets>
  8700. <x-m>0.007</x-m>
  8701. <y-m>-0.095</y-m>
  8702. <z-m>0.005</z-m>
  8703. <roll-deg>-90</roll-deg>
  8704. </offsets>
  8705. <axis-alignment>yz-plane</axis-alignment>
  8706. <type type="string">number-value</type>
  8707. <format type="string">%3.5f</format>
  8708. <truncate type="bool">false</truncate>
  8709. <property>instrumentation/gps/indicated-latitude-deg</property>
  8710. <alignment>right-top</alignment>
  8711. </text>
  8712. <text>
  8713. <name>Long-label</name>
  8714. <font>typewrighter.txf</font>
  8715. <character-size type="double">0.006</character-size>
  8716. <offsets>
  8717. <x-m>0.007</x-m>
  8718. <y-m>-0.105</y-m>
  8719. <z-m>0.07</z-m>
  8720. <roll-deg>-90</roll-deg>
  8721. </offsets>
  8722. <axis-alignment>yz-plane</axis-alignment>
  8723. <type type="string">literal</type>
  8724. <text type="string">LONG:</text>
  8725. <draw-text type="bool">true</draw-text>
  8726. <alignment>left-top</alignment>
  8727. </text>
  8728. <text>
  8729. <name>Long</name>
  8730. <font>typewrighter.txf</font>
  8731. <character-size type="double">0.006</character-size>
  8732. <offsets>
  8733. <x-m>0.007</x-m>
  8734. <y-m>-0.105</y-m>
  8735. <z-m>0.005</z-m>
  8736. <roll-deg>-90</roll-deg>
  8737. </offsets>
  8738. <axis-alignment>yz-plane</axis-alignment>
  8739. <type type="string">number-value</type>
  8740. <truncate type="bool">false</truncate>
  8741. <property>instrumentation/gps/indicated-longitude-deg</property>
  8742. <draw-text type="bool">true</draw-text>
  8743. <alignment>right-top</alignment>
  8744. </text>
  8745. <text>
  8746. <name>wptdist-label</name>
  8747. <font>typewrighter.txf</font>
  8748. <character-size type="double">0.006</character-size>
  8749. <offsets>
  8750. <x-m>0.007</x-m>
  8751. <y-m>-0.095</y-m>
  8752. <z-m>-0.005</z-m>
  8753. <roll-deg>-90</roll-deg>
  8754. </offsets>
  8755. <axis-alignment>yz-plane</axis-alignment>
  8756. <type type="string">literal</type>
  8757. <text type="string">WPT1:</text>
  8758. <draw-text type="bool">true</draw-text>
  8759. <alignment>left-top</alignment>
  8760. </text>
  8761. <text>
  8762. <name>wptdist</name>
  8763. <font>typewrighter.txf</font>
  8764. <character-size type="double">0.006</character-size>
  8765. <offsets>
  8766. <x-m>0.007</x-m>
  8767. <y-m>-0.095</y-m>
  8768. <z-m>-0.065</z-m>
  8769. <roll-deg>-90</roll-deg>
  8770. </offsets>
  8771. <axis-alignment>yz-plane</axis-alignment>
  8772. <type type="string">number-value</type>
  8773. <format>%4.1f</format>
  8774. <truncate type="bool">false</truncate>
  8775. <property>/instrumentation/gps/wp/wp[1]/distance-nm</property>
  8776. <draw-text type="bool">true</draw-text>
  8777. <alignment>right-top</alignment>
  8778. </text>
  8779. <text>
  8780. <name>ttd-label</name>
  8781. <font>typewrighter.txf</font>
  8782. <character-size type="double">0.006</character-size>
  8783. <offsets>
  8784. <x-m>0.007</x-m>
  8785. <y-m>-0.105</y-m>
  8786. <z-m>-0.005</z-m>
  8787. <roll-deg>-90</roll-deg>
  8788. </offsets>
  8789. <axis-alignment>yz-plane</axis-alignment>
  8790. <type type="string">literal</type>
  8791. <text type="string">ETA:</text>
  8792. <draw-text type="bool">true</draw-text>
  8793. <alignment>left-top</alignment>
  8794. </text>
  8795. <text>
  8796. <name>ttddist</name>
  8797. <font>typewrighter.txf</font>
  8798. <character-size type="double">0.006</character-size>
  8799. <offsets>
  8800. <x-m>0.007</x-m>
  8801. <y-m>-0.095</y-m>
  8802. <z-m>-0.005</z-m>
  8803. <roll-deg>-90</roll-deg>
  8804. </offsets>
  8805. <axis-alignment>yz-plane</axis-alignment>
  8806. <type type="string">string</type>
  8807. <truncate type="bool">false</truncate>
  8808. <property>/instrumentation/gps/wp/wp[1]/TTW</property>
  8809. <draw-text type="bool">true</draw-text>
  8810. <alignment>right-top</alignment>
  8811. </text>
  8812. </PropertyList>