garmin196.xml 238 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370
  1. <?xml version="1.0"?>
  2. <PropertyList>
  3. <name>Garmin196</name>
  4. <path>garmin196.ac</path>
  5. <animation>
  6. <type>material</type>
  7. <object-name>ecran.startup</object-name>
  8. <object-name>popup.lumin_adjust</object-name>
  9. <object-name>popup.lumin_adjust.bug</object-name>
  10. <object-name>popup.dto_aviation</object-name>
  11. <object-name>popup.dto_recent</object-name>
  12. <object-name>popup.dto_user</object-name>
  13. <object-name>popup.nrst_airport</object-name>
  14. <object-name>popup.nrst_vor</object-name>
  15. <object-name>popup.nrst_ndb</object-name>
  16. <object-name>popup.nrst_fix</object-name>
  17. <object-name>popup.nrst_cities</object-name>
  18. <object-name>ecran.map</object-name>
  19. <object-name>ecran.map.north</object-name>
  20. <object-name>ecran.panel</object-name>
  21. <object-name>ecran.panel.coffee</object-name>
  22. <object-name>ecran.panel.roll</object-name>
  23. <object-name>ecran.panel.needle.speed</object-name>
  24. <object-name>ecran.panel.rose</object-name>
  25. <object-name>ecran.panel.rose.wpt</object-name>
  26. <object-name>ecran.panel.rose.aircraft</object-name>
  27. <object-name>ecran.panel.needle.vertspeed</object-name>
  28. <object-name>ecran.panel.needle.alt10</object-name>
  29. <object-name>ecran.panel.needle.alt1</object-name>
  30. <object-name>ecran.panel.course_neddle_deflexion</object-name>
  31. <object-name>ecran.panel.course_neddle</object-name>
  32. <object-name>ecran.panel.from_flag</object-name>
  33. <object-name>ecran.panel.to_flag</object-name><!--jpc-->
  34. <object-name>ecran.position</object-name>
  35. <object-name>ecran.position.rose</object-name>
  36. <object-name>ecran.position.rose.bug</object-name>
  37. <object-name>ecran.position.rose.wpt</object-name>
  38. <object-name>menu.gps</object-name>
  39. <object-name>menu.flights</object-name>
  40. <object-name>menu.flights.detail</object-name>
  41. <object-name>menu.routes.list</object-name>
  42. <object-name>menu.routes.detail</object-name>
  43. <object-name>menu.routes.list.mask</object-name>
  44. <object-name>menu.routes.detail.mask</object-name>
  45. <object-name>menu.routes.search</object-name>
  46. <object-name>menu.routes.search.mask</object-name>
  47. <object-name>menu.routes.fpl.loaded</object-name>
  48. <object-name>menu.routes.wpt.jump</object-name>
  49. <object-name>menu.routes.wpt.reached</object-name>
  50. <object-name>menu.points.list</object-name>
  51. <object-name>menu.points.profile</object-name>
  52. <object-name>menu.aircraft.list</object-name>
  53. <object-name>menu.aircraft.list.mask</object-name>
  54. <object-name>menu.aircraft.profile</object-name>
  55. <object-name>menu.e6b</object-name>
  56. <object-name>menu.map</object-name>
  57. <object-name>menu.map.airports.mask</object-name>
  58. <object-name>menu.map.airports.check</object-name>
  59. <object-name>menu.map.vor.mask</object-name>
  60. <object-name>menu.map.vor.check</object-name>
  61. <object-name>menu.map.ndb.mask</object-name>
  62. <object-name>menu.map.ndb.check</object-name>
  63. <object-name>menu.map.fix.mask</object-name>
  64. <object-name>menu.map.fix.check</object-name>
  65. <object-name>menu.map.cities.mask</object-name>
  66. <object-name>menu.map.cities.check</object-name>
  67. <object-name>menu.map.waypoints.mask</object-name>
  68. <object-name>menu.map.waypoints.check</object-name>
  69. <object-name>menu.setup</object-name>
  70. <object-name>menu.setup.mask</object-name>
  71. <object-name>menu.setup.filter</object-name>
  72. <object-name>menu.setup.filter.mask</object-name>
  73. <emission>
  74. <blue> 1 </blue>
  75. <red> 1 </red>
  76. <green> 1 </green>
  77. <value>1</value>
  78. </emission>
  79. </animation>
  80. <animation>
  81. <name>Ecrans texts</name>
  82. <type>material</type>
  83. <object-name>ecran.startup.version</object-name>
  84. <object-name>ecran.map.range.text.nm</object-name>
  85. <object-name>ecran.map.range.text.km</object-name>
  86. <object-name>ecran.panel.wpt.ete.text</object-name>
  87. <object-name>ecran.panel.wpt.range.text.nm</object-name>
  88. <object-name>ecran.panel.wpt.range.text.km</object-name>
  89. <object-name>ecran.panel.wpt.id.text</object-name>
  90. <object-name>ecran.panel.alt.text.ft</object-name>
  91. <object-name>ecran.panel.alt.text.m</object-name>
  92. <object-name>ecran.panel.speed.text.kt</object-name>
  93. <object-name>ecran.panel.speed.text.kmh</object-name>
  94. <object-name>ecran.panel.speed0.text</object-name>
  95. <object-name>ecran.panel.speed1.text.kt</object-name>
  96. <object-name>ecran.panel.speed2.text.kt</object-name>
  97. <object-name>ecran.panel.speed3.text.kt</object-name>
  98. <object-name>ecran.panel.speed4.text.kt</object-name>
  99. <object-name>ecran.panel.speed5.text.kt</object-name>
  100. <object-name>ecran.panel.speed6.text.kt</object-name>
  101. <object-name>ecran.panel.speed7.text.kt</object-name>
  102. <object-name>ecran.panel.speed1.text.kmh</object-name>
  103. <object-name>ecran.panel.speed2.text.kmh</object-name>
  104. <object-name>ecran.panel.speed3.text.kmh</object-name>
  105. <object-name>ecran.panel.speed4.text.kmh</object-name>
  106. <object-name>ecran.panel.speed5.text.kmh</object-name>
  107. <object-name>ecran.panel.speed6.text.kmh</object-name>
  108. <object-name>ecran.panel.speed7.text.kmh</object-name>
  109. <object-name>ecran.position.longitude</object-name>
  110. <object-name>ecran.position.latitude</object-name>
  111. <object-name>ecran.position.date</object-name>
  112. <object-name>ecran.position.time</object-name>
  113. <object-name>ecran.position.wpt.id</object-name>
  114. <object-name>ecran.position.wpt.ete</object-name>
  115. <object-name>ecran.position.wpt.range.nm</object-name>
  116. <object-name>ecran.position.wpt.range.km</object-name>
  117. <object-name>ecran.position.wpt.bearing</object-name>
  118. <object-name>ecran.position.speed.text.kt</object-name>
  119. <object-name>ecran.position.speed.text.kmh</object-name>
  120. <object-name>ecran.position.alt.text.ft</object-name>
  121. <object-name>ecran.position.alt.text.m</object-name>
  122. <object-name>ecran.position.bearing.text</object-name>
  123. <object-name>ecran.position.vspeed.text.ftmn</object-name>
  124. <object-name>ecran.position.vspeed.text.ms</object-name>
  125. <object-name>menu.gps.date</object-name>
  126. <object-name>menu.gps.time</object-name>
  127. <object-name>menu.e6b.indicated-altitude.text</object-name>
  128. <object-name>menu.e6b.baro-pressure.text</object-name>
  129. <object-name>menu.e6b.calibrated-airspeed.text</object-name>
  130. <object-name>menu.e6b.air-temp.text</object-name>
  131. <object-name>menu.e6b.heading.text</object-name>
  132. <object-name>menu.e6b.head-wind.text</object-name>
  133. <object-name>menu.e6b.wind-from.text</object-name>
  134. <object-name>menu.e6b.wind-speed.text</object-name>
  135. <object-name>menu.e6b.true-airspeed.text</object-name>
  136. <object-name>menu.e6b.density-altitude.text</object-name>
  137. <object-name>menu.points.profile.latitude_virgule.text</object-name>
  138. <object-name>menu.points.profile.longitude_virgule.text</object-name>
  139. <ambient>
  140. <red>0</red>
  141. <green>0</green>
  142. <blue>0</blue>
  143. </ambient>
  144. <diffuse>
  145. <red>0</red>
  146. <green>0</green>
  147. <blue>0</blue>
  148. </diffuse>
  149. </animation>
  150. <!--livery for the box-->
  151. <animation>
  152. <type>material</type>
  153. <object-name>ecran.startup.version</object-name>
  154. <object-name>coque</object-name>
  155. <object-name>coque-capot</object-name>
  156. <object-name>coque.inter</object-name>
  157. <object-name>coque.buttons</object-name>
  158. <object-name>antenne</object-name>
  159. <object-name>rocker.up</object-name>
  160. <object-name>rocker.down</object-name>
  161. <object-name>rocker.left</object-name>
  162. <object-name>rocker.right</object-name>
  163. <object-name>button.in</object-name>
  164. <object-name>button.out</object-name>
  165. <object-name>button.page</object-name>
  166. <object-name>button.quit</object-name>
  167. <object-name>button.enter</object-name>
  168. <object-name>button.menu</object-name>
  169. <object-name>button.nrst</object-name>
  170. <object-name>button.power</object-name>
  171. <object-name>button.dto</object-name>
  172. <property-base>/instrumentation/garmin196</property-base>
  173. <texture-prop>texture-file</texture-prop>
  174. </animation>
  175. <!--phosphorescence-->
  176. <animation>
  177. <object-name>rocker.up</object-name>
  178. <object-name>rocker.down</object-name>
  179. <object-name>rocker.left</object-name>
  180. <object-name>rocker.right</object-name>
  181. <object-name>button.in</object-name>
  182. <object-name>button.out</object-name>
  183. <object-name>button.page</object-name>
  184. <object-name>button.quit</object-name>
  185. <object-name>button.enter</object-name>
  186. <object-name>button.menu</object-name>
  187. <object-name>button.nrst</object-name>
  188. <object-name>button.dto</object-name>
  189. <type>material</type>
  190. <emission>
  191. <blue> 0.0 </blue>
  192. <red> 0.0 </red>
  193. <green> 0.2 </green>
  194. </emission>
  195. </animation>
  196. <animation>
  197. <object-name>button.power</object-name>
  198. <type>material</type>
  199. <emission>
  200. <blue> 0.0 </blue>
  201. <red> 0.2 </red>
  202. <green> 0.0 </green>
  203. </emission>
  204. </animation>
  205. <animation>
  206. <type>pick</type>
  207. <object-name>antenne</object-name>
  208. <action>
  209. <button>0</button>
  210. <repeatable>false</repeatable>
  211. <binding>
  212. <command>property-adjust</command>
  213. <property>/instrumentation/garmin196/antenne-deg</property>
  214. <step>30</step>
  215. <min>0</min>
  216. <max>180</max>
  217. <wrap>0</wrap>
  218. </binding>
  219. <binding>
  220. <command>nasal</command>
  221. <script>garmin196.save_parameters();</script>
  222. </binding>
  223. </action>
  224. </animation>
  225. <animation>
  226. <type>pick</type>
  227. <object-name>antenne</object-name>
  228. <action>
  229. <button>1</button>
  230. <repeatable>false</repeatable>
  231. <binding>
  232. <command>property-adjust</command>
  233. <property>/instrumentation/garmin196/antenne-deg</property>
  234. <step>-30</step>
  235. <min>0</min>
  236. <max>180</max>
  237. <wrap>0</wrap>
  238. </binding>
  239. <binding>
  240. <command>nasal</command>
  241. <script>garmin196.save_parameters();</script>
  242. </binding>
  243. </action>
  244. </animation>
  245. <animation>
  246. <type>rotate</type>
  247. <object-name>antenne</object-name>
  248. <property>/instrumentation/garmin196/antenne-deg</property>
  249. <factor>1</factor>
  250. <axis>
  251. <x>1.0</x>
  252. <y>0.0</y>
  253. <z>0.0</z>
  254. </axis>
  255. <center>
  256. <x-m>-0.0178611</x-m>
  257. <y-m>0.0487625</y-m>
  258. <z-m>0.0283172</z-m>
  259. </center>
  260. </animation>
  261. <animation>
  262. <type>pick</type>
  263. <object-name>button.power</object-name>
  264. <action>
  265. <button>0</button>
  266. <repeatable>false</repeatable>
  267. <binding>
  268. <command>nasal</command>
  269. <script>garmin196.power(0);</script>
  270. </binding>
  271. </action>
  272. </animation>
  273. <animation>
  274. <type>pick</type>
  275. <object-name>button.power</object-name>
  276. <action>
  277. <button>1</button>
  278. <repeatable>false</repeatable>
  279. <binding>
  280. <command>nasal</command>
  281. <script>garmin196.power(1);</script>
  282. </binding>
  283. </action>
  284. </animation>
  285. <animation>
  286. <type>pick</type>
  287. <object-name>button.in</object-name>
  288. <action>
  289. <button>0</button>
  290. <repeatable>false</repeatable>
  291. <binding>
  292. <command>nasal</command>
  293. <script>garmin196.in(0);</script>
  294. </binding>
  295. </action>
  296. </animation>
  297. <animation>
  298. <type>pick</type>
  299. <object-name>button.in</object-name>
  300. <action>
  301. <button>1</button>
  302. <repeatable>false</repeatable>
  303. <binding>
  304. <command>nasal</command>
  305. <script>garmin196.in(1);</script>
  306. </binding>
  307. </action>
  308. </animation>
  309. <animation>
  310. <type>pick</type>
  311. <object-name>button.out</object-name>
  312. <action>
  313. <button>0</button>
  314. <repeatable>false</repeatable>
  315. <binding>
  316. <command>nasal</command>
  317. <script>garmin196.out(0);</script>
  318. </binding>
  319. </action>
  320. </animation>
  321. <animation>
  322. <type>pick</type>
  323. <object-name>button.out</object-name>
  324. <action>
  325. <button>1</button>
  326. <repeatable>false</repeatable>
  327. <binding>
  328. <command>nasal</command>
  329. <script>garmin196.out(1);</script>
  330. </binding>
  331. </action>
  332. </animation>
  333. <animation>
  334. <type>pick</type>
  335. <object-name>button.page</object-name>
  336. <action>
  337. <button>0</button>
  338. <repeatable>false</repeatable>
  339. <binding>
  340. <command>nasal</command>
  341. <script>garmin196.page(0);</script>
  342. </binding>
  343. </action>
  344. </animation>
  345. <animation>
  346. <type>pick</type>
  347. <object-name>button.page</object-name>
  348. <action>
  349. <button>1</button>
  350. <repeatable>false</repeatable>
  351. <binding>
  352. <command>nasal</command>
  353. <script>garmin196.page(1);</script>
  354. </binding>
  355. </action>
  356. </animation>
  357. <animation>
  358. <type>pick</type>
  359. <object-name>button.quit</object-name>
  360. <action>
  361. <button>0</button>
  362. <repeatable>false</repeatable>
  363. <binding>
  364. <command>nasal</command>
  365. <script>garmin196.quit(0);</script>
  366. </binding>
  367. </action>
  368. </animation>
  369. <animation>
  370. <type>pick</type>
  371. <object-name>button.quit</object-name>
  372. <action>
  373. <button>1</button>
  374. <repeatable>false</repeatable>
  375. <binding>
  376. <command>nasal</command>
  377. <script>garmin196.quit(1);</script>
  378. </binding>
  379. </action>
  380. </animation>
  381. <animation>
  382. <type>pick</type>
  383. <object-name>button.enter</object-name>
  384. <action>
  385. <button>0</button>
  386. <repeatable>false</repeatable>
  387. <binding>
  388. <command>nasal</command>
  389. <script>garmin196.enter(0);</script>
  390. </binding>
  391. </action>
  392. </animation>
  393. <animation>
  394. <type>pick</type>
  395. <object-name>button.enter</object-name>
  396. <action>
  397. <button>1</button>
  398. <repeatable>false</repeatable>
  399. <binding>
  400. <command>nasal</command>
  401. <script>garmin196.enter(1);</script>
  402. </binding>
  403. </action>
  404. </animation>
  405. <animation>
  406. <type>pick</type>
  407. <object-name>button.menu</object-name>
  408. <action>
  409. <button>0</button>
  410. <repeatable>false</repeatable>
  411. <binding>
  412. <command>nasal</command>
  413. <script>garmin196.menu(0);</script>
  414. </binding>
  415. </action>
  416. </animation>
  417. <animation>
  418. <type>pick</type>
  419. <object-name>button.menu</object-name>
  420. <action>
  421. <button>1</button>
  422. <repeatable>false</repeatable>
  423. <binding>
  424. <command>nasal</command>
  425. <script>garmin196.menu(1);</script>
  426. </binding>
  427. </action>
  428. </animation>
  429. <animation>
  430. <type>pick</type>
  431. <object-name>button.nrst</object-name>
  432. <action>
  433. <button>0</button>
  434. <repeatable>false</repeatable>
  435. <binding>
  436. <command>nasal</command>
  437. <script>garmin196.nrst(0);</script>
  438. </binding>
  439. </action>
  440. </animation>
  441. <animation>
  442. <type>pick</type>
  443. <object-name>button.nrst</object-name>
  444. <action>
  445. <button>1</button>
  446. <repeatable>false</repeatable>
  447. <binding>
  448. <command>nasal</command>
  449. <script>garmin196.nrst(1);</script>
  450. </binding>
  451. </action>
  452. </animation>
  453. <animation>
  454. <type>pick</type>
  455. <object-name>button.dto</object-name>
  456. <action>
  457. <button>0</button>
  458. <repeatable>false</repeatable>
  459. <binding>
  460. <command>nasal</command>
  461. <script>garmin196.dto(0);</script>
  462. </binding>
  463. </action>
  464. </animation>
  465. <animation>
  466. <type>pick</type>
  467. <object-name>button.dto</object-name>
  468. <action>
  469. <button>1</button>
  470. <repeatable>false</repeatable>
  471. <binding>
  472. <command>nasal</command>
  473. <script>garmin196.dto(1);</script>
  474. </binding>
  475. </action>
  476. </animation>
  477. <animation>
  478. <type>pick</type>
  479. <object-name>rocker.up</object-name>
  480. <action>
  481. <button>0</button>
  482. <repeatable>false</repeatable>
  483. <binding>
  484. <command>nasal</command>
  485. <script>garmin196.rockerup(0);</script>
  486. </binding>
  487. </action>
  488. </animation>
  489. <animation>
  490. <type>pick</type>
  491. <object-name>rocker.up</object-name>
  492. <action>
  493. <button>1</button>
  494. <repeatable>false</repeatable>
  495. <binding>
  496. <command>nasal</command>
  497. <script>garmin196.rockerup(1);</script>
  498. </binding>
  499. </action>
  500. </animation>
  501. <animation>
  502. <type>pick</type>
  503. <object-name>rocker.down</object-name>
  504. <action>
  505. <button>0</button>
  506. <repeatable>false</repeatable>
  507. <binding>
  508. <command>nasal</command>
  509. <script>garmin196.rockerdown(0);</script>
  510. </binding>
  511. </action>
  512. </animation>
  513. <animation>
  514. <type>pick</type>
  515. <object-name>rocker.down</object-name>
  516. <action>
  517. <button>1</button>
  518. <repeatable>false</repeatable>
  519. <binding>
  520. <command>nasal</command>
  521. <script>garmin196.rockerdown(1);</script>
  522. </binding>
  523. </action>
  524. </animation>
  525. <animation>
  526. <type>pick</type>
  527. <object-name>rocker.left</object-name>
  528. <action>
  529. <button>0</button>
  530. <repeatable>false</repeatable>
  531. <binding>
  532. <command>nasal</command>
  533. <script>garmin196.rockerleft(0);</script>
  534. </binding>
  535. </action>
  536. </animation>
  537. <animation>
  538. <type>pick</type>
  539. <object-name>rocker.left</object-name>
  540. <action>
  541. <button>1</button>
  542. <repeatable>false</repeatable>
  543. <binding>
  544. <command>nasal</command>
  545. <script>garmin196.rockerleft(1);</script>
  546. </binding>
  547. </action>
  548. </animation>
  549. <animation>
  550. <type>pick</type>
  551. <object-name>rocker.right</object-name>
  552. <action>
  553. <button>0</button>
  554. <repeatable>false</repeatable>
  555. <binding>
  556. <command>nasal</command>
  557. <script>garmin196.rockerright(0);</script>
  558. </binding>
  559. </action>
  560. </animation>
  561. <animation>
  562. <type>pick</type>
  563. <object-name>rocker.right</object-name>
  564. <action>
  565. <button>1</button>
  566. <repeatable>false</repeatable>
  567. <binding>
  568. <command>nasal</command>
  569. <script>garmin196.rockerright(1);</script>
  570. </binding>
  571. </action>
  572. </animation>
  573. <!--screens-->
  574. <animation>
  575. <type>select</type>
  576. <object-name>ecran.off</object-name>
  577. <condition>
  578. <equals>
  579. <property>/instrumentation/garmin196/status</property>
  580. <value>0</value>
  581. </equals>
  582. </condition>
  583. </animation>
  584. <animation>
  585. <type>select</type>
  586. <object-name>ecran.startup</object-name>
  587. <object-name>ecran.startup.version</object-name>
  588. <condition>
  589. <equals>
  590. <property>/instrumentation/garmin196/status</property>
  591. <value>1</value>
  592. </equals>
  593. </condition>
  594. </animation>
  595. <text>
  596. <name>ecran.startup.version</name>
  597. <offsets>
  598. <x-m>0.00544954</x-m>
  599. <y-m>0.00415188</y-m>
  600. <z-m>-0.0231835</z-m>
  601. </offsets>
  602. <alignment>center-center</alignment>
  603. <axis-alignment>yz-plane</axis-alignment>
  604. <type type="string">text-value</type>
  605. <property>/instrumentation/garmin196/version</property>
  606. <font type="string">helvetica_bold.txf</font>
  607. <character-size type="double">0.003</character-size>
  608. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  609. <font-resolution>
  610. <width type="int">32</width>
  611. <height type="int">32</height>
  612. </font-resolution>
  613. </text>
  614. <!--popup luminosite adjust-->
  615. <animation>
  616. <type>select</type>
  617. <object-name>popup.lumin_adjust</object-name>
  618. <object-name>popup.lumin_adjust.bug</object-name>
  619. <condition>
  620. <equals>
  621. <property>/instrumentation/garmin196/popup_status</property>
  622. <value>1</value>
  623. </equals>
  624. </condition>
  625. </animation>
  626. <animation>
  627. <type>translate</type>
  628. <object-name>popup.lumin_adjust.bug</object-name>
  629. <property>/instrumentation/garmin196/light</property>
  630. <factor>0.01125</factor>
  631. <axis>
  632. <x>0.0</x>
  633. <y>0.0</y>
  634. <z>1.0</z>
  635. </axis>
  636. </animation>
  637. <!--dto textes-->
  638. <model>
  639. <path>Aircraft/Instruments-3d/garmin196/garmin196_dto_display.xml</path>
  640. <name>popup.dto_display.texts</name>
  641. </model>
  642. <animation>
  643. <type>select</type>
  644. <object-name>popup.dto_display.mask</object-name>
  645. <condition>
  646. <and>
  647. <or>
  648. <!--<equals>
  649. <property>/instrumentation/garmin196/popup_status</property>
  650. <value>10</value>
  651. </equals>
  652. <equals>
  653. <property>/instrumentation/garmin196/popup_status</property>
  654. <value>11</value>
  655. </equals>-->
  656. <equals>
  657. <property>/instrumentation/garmin196/popup_status</property>
  658. <value>12</value>
  659. </equals>
  660. <equals>
  661. <property>/instrumentation/garmin196/popup_status</property>
  662. <value>20</value>
  663. </equals>
  664. <equals>
  665. <property>/instrumentation/garmin196/popup_status</property>
  666. <value>30</value>
  667. </equals>
  668. </or>
  669. <greater-than-equals>
  670. <property>/instrumentation/garmin196/dto_display/max_ligne_selected</property>
  671. <value>0</value>
  672. </greater-than-equals>
  673. </and>
  674. </condition>
  675. </animation>
  676. <animation>
  677. <type>select</type>
  678. <object-name>popup.dto_display.texts</object-name>
  679. <condition>
  680. <or>
  681. <equals>
  682. <property>/instrumentation/garmin196/popup_status</property>
  683. <value>10</value>
  684. </equals>
  685. <equals>
  686. <property>/instrumentation/garmin196/popup_status</property>
  687. <value>11</value>
  688. </equals>
  689. <equals>
  690. <property>/instrumentation/garmin196/popup_status</property>
  691. <value>12</value>
  692. </equals>
  693. <equals>
  694. <property>/instrumentation/garmin196/popup_status</property>
  695. <value>20</value>
  696. </equals>
  697. <equals>
  698. <property>/instrumentation/garmin196/popup_status</property>
  699. <value>30</value>
  700. </equals>
  701. </or>
  702. </condition>
  703. </animation>
  704. <animation>
  705. <type>translate</type>
  706. <object-name>popup.dto_display.mask</object-name>
  707. <property>/instrumentation/garmin196/dto_display/no_ligne_selected</property>
  708. <factor>-0.005</factor>
  709. <axis>
  710. <x> 0 </x>
  711. <y> 0 </y>
  712. <z> 1 </z>
  713. </axis>
  714. </animation>
  715. <!--popup dto aviation-->
  716. <animation>
  717. <type>select</type>
  718. <object-name>popup.dto_aviation</object-name>
  719. <condition>
  720. <and>
  721. <greater-than-equals>
  722. <property>/instrumentation/garmin196/popup_status</property>
  723. <value>10</value>
  724. </greater-than-equals>
  725. <less-than-equals>
  726. <property>/instrumentation/garmin196/popup_status</property>
  727. <value>19</value>
  728. </less-than-equals>
  729. </and>
  730. </condition>
  731. </animation>
  732. <!--popup dto recent-->
  733. <animation>
  734. <type>select</type>
  735. <object-name>popup.dto_recent</object-name>
  736. <condition>
  737. <equals>
  738. <property>/instrumentation/garmin196/popup_status</property>
  739. <value>20</value>
  740. </equals>
  741. </condition>
  742. </animation>
  743. <!--popup dto user-->
  744. <animation>
  745. <type>select</type>
  746. <object-name>popup.dto_user</object-name>
  747. <condition>
  748. <equals>
  749. <property>/instrumentation/garmin196/popup_status</property>
  750. <value>30</value>
  751. </equals>
  752. </condition>
  753. </animation>
  754. <!--popup nrst airport-->
  755. <animation>
  756. <type>select</type>
  757. <object-name>popup.nrst_airport</object-name>
  758. <condition>
  759. <equals>
  760. <property>/instrumentation/garmin196/popup_status</property>
  761. <value>40</value>
  762. </equals>
  763. </condition>
  764. </animation>
  765. <!--popup nrst vor-->
  766. <animation>
  767. <type>select</type>
  768. <object-name>popup.nrst_vor</object-name>
  769. <condition>
  770. <equals>
  771. <property>/instrumentation/garmin196/popup_status</property>
  772. <value>50</value>
  773. </equals>
  774. </condition>
  775. </animation>
  776. <!--popup nrst ndb-->
  777. <animation>
  778. <type>select</type>
  779. <object-name>popup.nrst_ndb</object-name>
  780. <condition>
  781. <equals>
  782. <property>/instrumentation/garmin196/popup_status</property>
  783. <value>60</value>
  784. </equals>
  785. </condition>
  786. </animation>
  787. <!--popup nrst fix-->
  788. <animation>
  789. <type>select</type>
  790. <object-name>popup.nrst_fix</object-name>
  791. <condition>
  792. <equals>
  793. <property>/instrumentation/garmin196/popup_status</property>
  794. <value>70</value>
  795. </equals>
  796. </condition>
  797. </animation>
  798. <!--popup nrst cities-->
  799. <animation>
  800. <type>select</type>
  801. <object-name>popup.nrst_cities</object-name>
  802. <condition>
  803. <equals>
  804. <property>/instrumentation/garmin196/popup_status</property>
  805. <value>80</value>
  806. </equals>
  807. </condition>
  808. </animation>
  809. <animation>
  810. <type>select</type>
  811. <object-name>popup.nrst_display.mask</object-name>
  812. <object-name>popup.nrst_display.texts</object-name>
  813. <condition>
  814. <and>
  815. <greater-than-equals>
  816. <property>/instrumentation/garmin196/popup_status</property>
  817. <value>40</value>
  818. </greater-than-equals>
  819. <less-than-equals>
  820. <property>/instrumentation/garmin196/popup_status</property>
  821. <value>99</value>
  822. </less-than-equals>
  823. <greater-than-equals>
  824. <property>/instrumentation/garmin196/nrst_display/max_ligne_selected</property>
  825. <value>0</value>
  826. </greater-than-equals>
  827. </and>
  828. </condition>
  829. </animation>
  830. <animation>
  831. <type>translate</type>
  832. <object-name>popup.nrst_display.mask</object-name>
  833. <property>/instrumentation/garmin196/nrst_display/no_ligne_selected</property>
  834. <factor>-0.005</factor>
  835. <axis>
  836. <x> 0 </x>
  837. <y> 0 </y>
  838. <z> 1 </z>
  839. </axis>
  840. </animation>
  841. <!--nrst textes-->
  842. <model>
  843. <path>Aircraft/Instruments-3d/garmin196/garmin196_nrst_display.xml</path>
  844. <name>popup.nrst_display.texts</name>
  845. </model>
  846. <!--Map Page-->
  847. <animation>
  848. <type>select</type>
  849. <object-name>ecran.map</object-name>
  850. <object-name>ecran.map.symbols</object-name>
  851. <object-name>ecran.map.north</object-name>
  852. <condition>
  853. <equals>
  854. <property>/instrumentation/garmin196/status</property>
  855. <value>10</value>
  856. </equals>
  857. </condition>
  858. </animation>
  859. <animation>
  860. <type>select</type>
  861. <object-name>ecran.map.range.text.nm</object-name>
  862. <condition>
  863. <and>
  864. <equals>
  865. <property>/instrumentation/garmin196/status</property>
  866. <value>10</value>
  867. </equals>
  868. <equals>
  869. <property>/instrumentation/garmin196/params/units/distance</property>
  870. <value>1</value>
  871. </equals>
  872. </and>
  873. </condition>
  874. </animation>
  875. <text>
  876. <name>ecran.map.range.text.nm</name>
  877. <offsets>
  878. <x-m>0.00544954</x-m>
  879. <y-m>0.011317</y-m>
  880. <z-m>-0.0224835</z-m>
  881. </offsets>
  882. <alignment>center-center</alignment>
  883. <axis-alignment>yz-plane</axis-alignment>
  884. <type type="string">number-value</type>
  885. <format type="string">%2.3fnm</format>
  886. <property>/instrumentation/garmin196/map-range</property>
  887. <font type="string">helvetica_bold.txf</font>
  888. <character-size type="double">0.003</character-size>
  889. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  890. <font-resolution>
  891. <width type="int">32</width>
  892. <height type="int">32</height>
  893. </font-resolution>
  894. </text>
  895. <animation>
  896. <type>select</type>
  897. <object-name>ecran.map.range.text.km</object-name>
  898. <condition>
  899. <and>
  900. <equals>
  901. <property>/instrumentation/garmin196/status</property>
  902. <value>10</value>
  903. </equals>
  904. <equals>
  905. <property>/instrumentation/garmin196/params/units/distance</property>
  906. <value>2</value>
  907. </equals>
  908. </and>
  909. </condition>
  910. </animation>
  911. <text>
  912. <name>ecran.map.range.text.km</name>
  913. <offsets>
  914. <x-m>0.00544954</x-m>
  915. <y-m>0.011317</y-m>
  916. <z-m>-0.0224835</z-m>
  917. </offsets>
  918. <alignment>center-center</alignment>
  919. <axis-alignment>yz-plane</axis-alignment>
  920. <type type="string">number-value</type>
  921. <scale>1.852</scale>
  922. <format type="string">%2.3fkm</format>
  923. <property>/instrumentation/garmin196/map-range</property>
  924. <font type="string">helvetica_bold.txf</font>
  925. <character-size type="double">0.003</character-size>
  926. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  927. <font-resolution>
  928. <width type="int">32</width>
  929. <height type="int">32</height>
  930. </font-resolution>
  931. </text>
  932. <animation>
  933. <type>rotate</type>
  934. <object-name>ecran.map.north</object-name>
  935. <property>/instrumentation/gps/indicated-track-magnetic-deg</property>
  936. <factor>1</factor>
  937. <axis>
  938. <x>1.0</x>
  939. <y>0.0</y>
  940. <z>0.0</z>
  941. </axis>
  942. <center>
  943. <x-m>0.00542611</x-m>
  944. <y-m>-0.0477536</y-m>
  945. <z-m>0.0269772</z-m>
  946. </center>
  947. </animation>
  948. <!--les symbols de la map, dans un fichier separer pour aerer un peu ... -->
  949. <model>
  950. <path>Aircraft/Instruments-3d/garmin196/garmin196_map_symbols.xml</path>
  951. <name>ecran.map.symbols</name>
  952. </model>
  953. <!--coffee page-->
  954. <animation>
  955. <type>select</type>
  956. <object-name>ecran.panel.coffee</object-name>
  957. <condition>
  958. <equals>
  959. <property>/instrumentation/garmin196/status</property>
  960. <value>50</value>
  961. </equals>
  962. </condition>
  963. </animation>
  964. <!--panel page-->
  965. <animation>
  966. <type>select</type>
  967. <object-name>ecran.panel</object-name>
  968. <object-name>ecran.panel.roll</object-name>
  969. <object-name>ecran.panel.needle.speed</object-name>
  970. <object-name>ecran.panel.rose</object-name>
  971. <!--<object-name>ecran.panel.rose.wpt</object-name>-->
  972. <object-name>ecran.panel.rose.aircraft</object-name>
  973. <object-name>ecran.panel.needle.vertspeed</object-name>
  974. <object-name>ecran.panel.needle.alt10</object-name>
  975. <object-name>ecran.panel.needle.alt1</object-name>
  976. <object-name>ecran.panel.speed0.text</object-name>
  977. <object-name>ecran.panel.wpt.id.text</object-name>
  978. <condition>
  979. <equals>
  980. <property>/instrumentation/garmin196/status</property>
  981. <value>20</value>
  982. </equals>
  983. </condition>
  984. </animation>
  985. <animation>
  986. <type>rotate</type>
  987. <object-name>ecran.panel.rose</object-name>
  988. <property>/instrumentation/gps/indicated-track-magnetic-deg</property>
  989. <factor>1</factor>
  990. <axis>
  991. <x>1.0</x>
  992. <y>0.0</y>
  993. <z>0.0</z>
  994. </axis>
  995. <center>
  996. <x-m>0.00542611</x-m>
  997. <y-m>-0.0171114</y-m>
  998. <z-m>0.00236958</z-m>
  999. </center>
  1000. </animation>
  1001. <animation>
  1002. <type>select</type>
  1003. <object-name>ecran.panel.rose.wpt</object-name>
  1004. <object-name>ecran.panel.course_neddle_deflexion</object-name>
  1005. <object-name>ecran.panel.course_neddle</object-name>
  1006. <object-name>ecran.panel.course_neddle_scale</object-name>
  1007. <condition>
  1008. <and>
  1009. <equals>
  1010. <property>/instrumentation/garmin196/status</property>
  1011. <value>20</value>
  1012. </equals>
  1013. <not>
  1014. <equals>
  1015. <property>/instrumentation/garmin196/panel-wpt-id</property>
  1016. <value type="string">------</value>
  1017. </equals>
  1018. </not>
  1019. <not>
  1020. <equals>
  1021. <property>/instrumentation/garmin196/panel-wpt-id</property>
  1022. <value type="string"></value>
  1023. </equals>
  1024. </not>
  1025. </and>
  1026. </condition>
  1027. </animation>
  1028. <animation>
  1029. <type>select</type>
  1030. <object-name>ecran.panel.deviation_neddle</object-name>
  1031. <condition>
  1032. <and>
  1033. <equals>
  1034. <property>/instrumentation/garmin196/status</property>
  1035. <value>20</value>
  1036. </equals>
  1037. <not>
  1038. <equals>
  1039. <property>/instrumentation/garmin196/panel-wpt-id</property>
  1040. <value type="string">------</value>
  1041. </equals>
  1042. </not>
  1043. <not>
  1044. <equals>
  1045. <property>/instrumentation/garmin196/panel-wpt-id</property>
  1046. <value type="string"></value>
  1047. </equals>
  1048. </not>
  1049. <equals>
  1050. <property>/instrumentation/garmin196/params/vnav-indicator</property>
  1051. <value>1</value>
  1052. </equals>
  1053. <property>/instrumentation/garmin196/vnav/visible</property>
  1054. </and>
  1055. </condition>
  1056. </animation>
  1057. <animation>
  1058. <type>rotate</type>
  1059. <object-name>ecran.panel.rose.wpt</object-name>
  1060. <property>/instrumentation/garmin196/panel-wpt-bearing</property>
  1061. <factor>-1</factor>
  1062. <axis>
  1063. <x>1.0</x>
  1064. <y>0.0</y>
  1065. <z>0.0</z>
  1066. </axis>
  1067. <center>
  1068. <x-m>0.00542611</x-m>
  1069. <y-m>-0.0171114</y-m>
  1070. <z-m>0.00236958</z-m>
  1071. </center>
  1072. </animation>
  1073. <animation>
  1074. <type>rotate</type>
  1075. <object-name>ecran.panel.course_neddle</object-name>
  1076. <object-name>ecran.panel.course_neddle_scale</object-name>
  1077. <object-name>ecran.panel.course_neddle_deflexion</object-name>
  1078. <property>/instrumentation/garmin196/panel-neddle-course</property>
  1079. <factor>-1</factor>
  1080. <axis>
  1081. <x>1.0</x>
  1082. <y>0.0</y>
  1083. <z>0.0</z>
  1084. </axis>
  1085. <center>
  1086. <x-m>0.00542611</x-m>
  1087. <y-m>-0.0171114</y-m>
  1088. <z-m>0.00236958</z-m>
  1089. </center>
  1090. </animation>
  1091. <animation>
  1092. <object-name>ecran.panel.course_neddle_deflexion</object-name>
  1093. <type>translate</type>
  1094. <property>/instrumentation/garmin196/panel-neddle-deflexion</property>
  1095. <factor>0.001</factor>
  1096. <axis>
  1097. <x>0</x>
  1098. <y>1</y>
  1099. <z>0</z>
  1100. </axis>
  1101. </animation>
  1102. <animation>
  1103. <type>select</type>
  1104. <object-name>ecran.panel.from_flag</object-name>
  1105. <condition>
  1106. <and>
  1107. <equals>
  1108. <property>/instrumentation/garmin196/status</property>
  1109. <value>20</value>
  1110. </equals>
  1111. <equals>
  1112. <property>/instrumentation/garmin196/panel-neddle-to-flag</property>
  1113. <value>0</value>
  1114. </equals>
  1115. <not>
  1116. <equals>
  1117. <property>/instrumentation/garmin196/panel-wpt-id</property>
  1118. <value type="string">------</value>
  1119. </equals>
  1120. </not>
  1121. <not>
  1122. <equals>
  1123. <property>/instrumentation/garmin196/panel-wpt-id</property>
  1124. <value type="string"></value>
  1125. </equals>
  1126. </not>
  1127. </and>
  1128. </condition>
  1129. </animation>
  1130. <animation>
  1131. <type>select</type>
  1132. <object-name>ecran.panel.to_flag</object-name>
  1133. <condition>
  1134. <and>
  1135. <equals>
  1136. <property>/instrumentation/garmin196/status</property>
  1137. <value>20</value>
  1138. </equals>
  1139. <equals>
  1140. <property>/instrumentation/garmin196/panel-neddle-to-flag</property>
  1141. <value>1</value>
  1142. </equals>
  1143. <not>
  1144. <equals>
  1145. <property>/instrumentation/garmin196/panel-wpt-id</property>
  1146. <value type="string">------</value>
  1147. </equals>
  1148. </not>
  1149. <not>
  1150. <equals>
  1151. <property>/instrumentation/garmin196/panel-wpt-id</property>
  1152. <value type="string"></value>
  1153. </equals>
  1154. </not>
  1155. </and>
  1156. </condition>
  1157. </animation>
  1158. <animation>
  1159. <object-name>ecran.panel.deviation_neddle</object-name>
  1160. <type>translate</type>
  1161. <property>/instrumentation/garmin196/vnav/deviation</property>
  1162. <factor>-0.001</factor>
  1163. <axis>
  1164. <x>0</x>
  1165. <y>0</y>
  1166. <z>1</z>
  1167. </axis>
  1168. </animation>
  1169. <animation>
  1170. <type>rotate</type>
  1171. <object-name>ecran.panel.needle.alt10</object-name>
  1172. <property>/instrumentation/gps/indicated-altitude-ft</property>
  1173. <factor>0.36</factor>
  1174. <axis>
  1175. <x>-1.0</x>
  1176. <y>0.0</y>
  1177. <z>0.0</z>
  1178. </axis>
  1179. <center>
  1180. <x-m>0.0058094</x-m>
  1181. <y-m>0.00568968</y-m>
  1182. <z-m>0.0175853</z-m>
  1183. </center>
  1184. <condition>
  1185. <equals>
  1186. <property>/instrumentation/garmin196/params/units/altitude</property>
  1187. <value>1</value>
  1188. </equals>
  1189. </condition>
  1190. </animation>
  1191. <animation>
  1192. <type>rotate</type>
  1193. <object-name>ecran.panel.needle.alt1</object-name>
  1194. <property>/instrumentation/gps/indicated-altitude-ft</property>
  1195. <factor>0.036</factor>
  1196. <axis>
  1197. <x>-1.0</x>
  1198. <y>0.0</y>
  1199. <z>0.0</z>
  1200. </axis>
  1201. <center>
  1202. <x-m>0.0058094</x-m>
  1203. <y-m>0.00568968</y-m>
  1204. <z-m>0.0175853</z-m>
  1205. </center>
  1206. <condition>
  1207. <equals>
  1208. <property>/instrumentation/garmin196/params/units/altitude</property>
  1209. <value>1</value>
  1210. </equals>
  1211. </condition>
  1212. </animation>
  1213. <animation>
  1214. <type>rotate</type>
  1215. <object-name>ecran.panel.needle.alt10</object-name>
  1216. <property>/instrumentation/gps/indicated-altitude-ft</property>
  1217. <factor>0.1097</factor>
  1218. <axis>
  1219. <x>-1.0</x>
  1220. <y>0.0</y>
  1221. <z>0.0</z>
  1222. </axis>
  1223. <center>
  1224. <x-m>0.0058094</x-m>
  1225. <y-m>0.00568968</y-m>
  1226. <z-m>0.0175853</z-m>
  1227. </center>
  1228. <condition>
  1229. <equals>
  1230. <property>/instrumentation/garmin196/params/units/altitude</property>
  1231. <value>2</value>
  1232. </equals>
  1233. </condition>
  1234. </animation>
  1235. <animation>
  1236. <type>rotate</type>
  1237. <object-name>ecran.panel.needle.alt1</object-name>
  1238. <property>/instrumentation/gps/indicated-altitude-ft</property>
  1239. <factor>0.0110</factor>
  1240. <axis>
  1241. <x>-1.0</x>
  1242. <y>0.0</y>
  1243. <z>0.0</z>
  1244. </axis>
  1245. <center>
  1246. <x-m>0.0058094</x-m>
  1247. <y-m>0.00568968</y-m>
  1248. <z-m>0.0175853</z-m>
  1249. </center>
  1250. <condition>
  1251. <equals>
  1252. <property>/instrumentation/garmin196/params/units/altitude</property>
  1253. <value>2</value>
  1254. </equals>
  1255. </condition>
  1256. </animation>
  1257. <animation>
  1258. <type>rotate</type>
  1259. <object-name>ecran.panel.needle.vertspeed</object-name>
  1260. <property>/instrumentation/gps/indicated-vertical-speed</property>
  1261. <interpolation>
  1262. <entry><ind>-2000</ind><dep>-180</dep></entry>
  1263. <entry><ind> 0 </ind><dep> 0 </dep></entry>
  1264. <entry><ind> 2000</ind><dep> 180</dep></entry>
  1265. </interpolation>
  1266. <axis>
  1267. <x>-1.0</x>
  1268. <y>0.0</y>
  1269. <z>0.0</z>
  1270. </axis>
  1271. <center>
  1272. <x-m>0.0058094</x-m>
  1273. <y-m>0.00523553</y-m>
  1274. <z-m>-0.0134744</z-m>
  1275. </center>
  1276. <condition>
  1277. <equals>
  1278. <property>/instrumentation/garmin196/params/units/vert-speed</property>
  1279. <value>1</value>
  1280. </equals>
  1281. </condition>
  1282. </animation>
  1283. <animation>
  1284. <type>rotate</type>
  1285. <object-name>ecran.panel.needle.vertspeed</object-name>
  1286. <property>/instrumentation/gps/indicated-vertical-speed</property>
  1287. <interpolation>
  1288. <entry><ind>-3936</ind><dep>-180</dep></entry>
  1289. <entry><ind> 0 </ind><dep> 0 </dep></entry>
  1290. <entry><ind> 3936</ind><dep> 180</dep></entry>
  1291. </interpolation>
  1292. <axis>
  1293. <x>-1.0</x>
  1294. <y>0.0</y>
  1295. <z>0.0</z>
  1296. </axis>
  1297. <center>
  1298. <x-m>0.0058094</x-m>
  1299. <y-m>0.00523553</y-m>
  1300. <z-m>-0.0134744</z-m>
  1301. </center>
  1302. <condition>
  1303. <equals>
  1304. <property>/instrumentation/garmin196/params/units/vert-speed</property>
  1305. <value>2</value>
  1306. </equals>
  1307. </condition>
  1308. </animation>
  1309. <animation>
  1310. <type>rotate</type>
  1311. <object-name>ecran.panel.roll</object-name>
  1312. <property>/instrumentation/garmin196/turn-rate</property>
  1313. <factor>4</factor>
  1314. <axis>
  1315. <x>1.0</x>
  1316. <y>0.0</y>
  1317. <z>0.0</z>
  1318. </axis>
  1319. <center>
  1320. <x-m>0.0058094</x-m>
  1321. <y-m>-0.0396786</y-m>
  1322. <z-m>-0.0133996</z-m>
  1323. </center>
  1324. </animation>
  1325. <animation>
  1326. <type>rotate</type>
  1327. <object-name>ecran.panel.needle.speed</object-name>
  1328. <property>/instrumentation/garmin196/speed-display</property>
  1329. <factor>1</factor>
  1330. <axis>
  1331. <x>-1.0</x>
  1332. <y>0.0</y>
  1333. <z>0.0</z>
  1334. </axis>
  1335. <center>
  1336. <x-m>0.0058094</x-m>
  1337. <y-m>-0.0398569</y-m>
  1338. <z-m>0.0175827</z-m>
  1339. </center>
  1340. </animation>
  1341. <text>
  1342. <name>ecran.panel.speed0.text</name>
  1343. <offsets>
  1344. <x-m>0.00544954</x-m>
  1345. <y-m>-0.0397263</y-m>
  1346. <z-m>0.0262168</z-m>
  1347. </offsets>
  1348. <alignment>center-center</alignment>
  1349. <axis-alignment>yz-plane</axis-alignment>
  1350. <type type="string">number-value</type>
  1351. <format type="string">%3.0f</format>
  1352. <property>/instrumentation/garmin196/max-speed</property>
  1353. <scale>0</scale>
  1354. <font type="string">helvetica_bold.txf</font>
  1355. <character-size type="double">0.003</character-size>
  1356. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1357. <font-resolution>
  1358. <width type="int">32</width>
  1359. <height type="int">32</height>
  1360. </font-resolution>
  1361. </text>
  1362. <animation>
  1363. <type>select</type>
  1364. <object-name>ecran.panel.speed.text.kt</object-name>
  1365. <object-name>ecran.panel.speed1.text.kt</object-name>
  1366. <object-name>ecran.panel.speed2.text.kt</object-name>
  1367. <object-name>ecran.panel.speed3.text.kt</object-name>
  1368. <object-name>ecran.panel.speed4.text.kt</object-name>
  1369. <object-name>ecran.panel.speed5.text.kt</object-name>
  1370. <object-name>ecran.panel.speed6.text.kt</object-name>
  1371. <object-name>ecran.panel.speed7.text.kt</object-name>
  1372. <condition>
  1373. <and>
  1374. <equals>
  1375. <property>/instrumentation/garmin196/status</property>
  1376. <value>20</value>
  1377. </equals>
  1378. <equals>
  1379. <property>/instrumentation/garmin196/params/units/speed</property>
  1380. <value>1</value>
  1381. </equals>
  1382. </and>
  1383. </condition>
  1384. </animation>
  1385. <text>
  1386. <name>ecran.panel.speed.text.kt</name>
  1387. <offsets>
  1388. <x-m>0.00544954</x-m>
  1389. <y-m>-0.0425497</y-m>
  1390. <z-m>0.00254756</z-m>
  1391. </offsets>
  1392. <alignment>center-center</alignment>
  1393. <axis-alignment>yz-plane</axis-alignment>
  1394. <type type="string">number-value</type>
  1395. <format type="string">%3.0fkt</format>
  1396. <property>/instrumentation/gps/indicated-ground-speed-kt</property>
  1397. <scale>1</scale>
  1398. <font type="string">helvetica_bold.txf</font>
  1399. <character-size type="double">0.006</character-size>
  1400. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1401. <font-resolution>
  1402. <width type="int">32</width>
  1403. <height type="int">32</height>
  1404. </font-resolution>
  1405. </text>
  1406. <animation>
  1407. <type>select</type>
  1408. <object-name>ecran.panel.speed.text.kmh</object-name>
  1409. <object-name>ecran.panel.speed1.text.kmh</object-name>
  1410. <object-name>ecran.panel.speed2.text.kmh</object-name>
  1411. <object-name>ecran.panel.speed3.text.kmh</object-name>
  1412. <object-name>ecran.panel.speed4.text.kmh</object-name>
  1413. <object-name>ecran.panel.speed5.text.kmh</object-name>
  1414. <object-name>ecran.panel.speed6.text.kmh</object-name>
  1415. <object-name>ecran.panel.speed7.text.kmh</object-name>
  1416. <condition>
  1417. <and>
  1418. <equals>
  1419. <property>/instrumentation/garmin196/status</property>
  1420. <value>20</value>
  1421. </equals>
  1422. <equals>
  1423. <property>/instrumentation/garmin196/params/units/speed</property>
  1424. <value>2</value>
  1425. </equals>
  1426. </and>
  1427. </condition>
  1428. </animation>
  1429. <text>
  1430. <name>ecran.panel.speed.text.kmh</name>
  1431. <offsets>
  1432. <x-m>0.00544954</x-m>
  1433. <y-m>-0.0425497</y-m>
  1434. <z-m>0.00254756</z-m>
  1435. </offsets>
  1436. <alignment>center-center</alignment>
  1437. <axis-alignment>yz-plane</axis-alignment>
  1438. <type type="string">number-value</type>
  1439. <format type="string">%3.0fkm/h</format>
  1440. <property>/instrumentation/gps/indicated-ground-speed-kt</property>
  1441. <scale>1.852</scale>
  1442. <font type="string">helvetica_bold.txf</font>
  1443. <character-size type="double">0.005</character-size>
  1444. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1445. <font-resolution>
  1446. <width type="int">32</width>
  1447. <height type="int">32</height>
  1448. </font-resolution>
  1449. </text>
  1450. <text>
  1451. <name>ecran.panel.speed1.text.kt</name>
  1452. <offsets>
  1453. <x-m>0.00544954</x-m>
  1454. <y-m>-0.0349906</y-m>
  1455. <z-m>0.0230392</z-m>
  1456. </offsets>
  1457. <alignment>center-center</alignment>
  1458. <axis-alignment>yz-plane</axis-alignment>
  1459. <type type="string">number-value</type>
  1460. <format type="string">%3.0f</format>
  1461. <property>/instrumentation/garmin196/max-speed</property>
  1462. <scale>0.143</scale>
  1463. <font type="string">helvetica_bold.txf</font>
  1464. <character-size type="double">0.003</character-size>
  1465. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1466. <font-resolution>
  1467. <width type="int">32</width>
  1468. <height type="int">32</height>
  1469. </font-resolution>
  1470. </text>
  1471. <text>
  1472. <name>ecran.panel.speed2.text.kt</name>
  1473. <offsets>
  1474. <x-m>0.00544954</x-m>
  1475. <y-m>-0.0320269</y-m>
  1476. <z-m>0.0177535</z-m>
  1477. </offsets>
  1478. <alignment>center-center</alignment>
  1479. <axis-alignment>yz-plane</axis-alignment>
  1480. <type type="string">number-value</type>
  1481. <format type="string">%3.0f</format>
  1482. <property>/instrumentation/garmin196/max-speed</property>
  1483. <scale>0.286</scale>
  1484. <font type="string">helvetica_bold.txf</font>
  1485. <character-size type="double">0.003</character-size>
  1486. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1487. <font-resolution>
  1488. <width type="int">32</width>
  1489. <height type="int">32</height>
  1490. </font-resolution>
  1491. </text>
  1492. <text>
  1493. <name>ecran.panel.speed3.text.kt</name>
  1494. <offsets>
  1495. <x-m>0.00544954</x-m>
  1496. <y-m>-0.0348072</y-m>
  1497. <z-m>0.0121318</z-m>
  1498. </offsets>
  1499. <alignment>center-center</alignment>
  1500. <axis-alignment>yz-plane</axis-alignment>
  1501. <type type="string">number-value</type>
  1502. <format type="string">%3.0f</format>
  1503. <property>/instrumentation/garmin196/max-speed</property>
  1504. <scale>0.429</scale>
  1505. <font type="string">helvetica_bold.txf</font>
  1506. <character-size type="double">0.003</character-size>
  1507. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1508. <font-resolution>
  1509. <width type="int">32</width>
  1510. <height type="int">32</height>
  1511. </font-resolution>
  1512. </text>
  1513. <text>
  1514. <name>ecran.panel.speed4.text.kt</name>
  1515. <offsets>
  1516. <x-m>0.00544954</x-m>
  1517. <y-m>-0.0396958</y-m>
  1518. <z-m>0.00941252</z-m>
  1519. </offsets>
  1520. <alignment>center-center</alignment>
  1521. <axis-alignment>yz-plane</axis-alignment>
  1522. <type type="string">number-value</type>
  1523. <format type="string">%3.0f</format>
  1524. <property>/instrumentation/garmin196/max-speed</property>
  1525. <scale>0.571</scale>
  1526. <font type="string">helvetica_bold.txf</font>
  1527. <character-size type="double">0.003</character-size>
  1528. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1529. <font-resolution>
  1530. <width type="int">32</width>
  1531. <height type="int">32</height>
  1532. </font-resolution>
  1533. </text>
  1534. <text>
  1535. <name>ecran.panel.speed5.text.kt</name>
  1536. <offsets>
  1537. <x-m>0.00544954</x-m>
  1538. <y-m>-0.0451953</y-m>
  1539. <z-m>0.0121929</z-m>
  1540. </offsets>
  1541. <alignment>center-center</alignment>
  1542. <axis-alignment>yz-plane</axis-alignment>
  1543. <type type="string">number-value</type>
  1544. <format type="string">%3.0f</format>
  1545. <property>/instrumentation/garmin196/max-speed</property>
  1546. <scale>0.714</scale>
  1547. <font type="string">helvetica_bold.txf</font>
  1548. <character-size type="double">0.003</character-size>
  1549. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1550. <font-resolution>
  1551. <width type="int">32</width>
  1552. <height type="int">32</height>
  1553. </font-resolution>
  1554. </text>
  1555. <text>
  1556. <name>ecran.panel.speed6.text.kt</name>
  1557. <offsets>
  1558. <x-m>0.00544954</x-m>
  1559. <y-m>-0.0473646</y-m>
  1560. <z-m>0.0178757</z-m>
  1561. </offsets>
  1562. <alignment>center-center</alignment>
  1563. <axis-alignment>yz-plane</axis-alignment>
  1564. <type type="string">number-value</type>
  1565. <format type="string">%3.0f</format>
  1566. <property>/instrumentation/garmin196/max-speed</property>
  1567. <scale>0.857</scale>
  1568. <font type="string">helvetica_bold.txf</font>
  1569. <character-size type="double">0.003</character-size>
  1570. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1571. <font-resolution>
  1572. <width type="int">32</width>
  1573. <height type="int">32</height>
  1574. </font-resolution>
  1575. </text>
  1576. <text>
  1577. <name>ecran.panel.speed7.text.kt</name>
  1578. <offsets>
  1579. <x-m>0.00544954</x-m>
  1580. <y-m>-0.045012</y-m>
  1581. <z-m>0.023742</z-m>
  1582. </offsets>
  1583. <alignment>center-center</alignment>
  1584. <axis-alignment>yz-plane</axis-alignment>
  1585. <type type="string">number-value</type>
  1586. <format type="string">%3.0f</format>
  1587. <property>/instrumentation/garmin196/max-speed</property>
  1588. <scale>1.0</scale>
  1589. <font type="string">helvetica_bold.txf</font>
  1590. <character-size type="double">0.003</character-size>
  1591. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1592. <font-resolution>
  1593. <width type="int">32</width>
  1594. <height type="int">32</height>
  1595. </font-resolution>
  1596. </text>
  1597. <text>
  1598. <name>ecran.panel.speed1.text.kmh</name>
  1599. <offsets>
  1600. <x-m>0.00544954</x-m>
  1601. <y-m>-0.0349906</y-m>
  1602. <z-m>0.0230392</z-m>
  1603. </offsets>
  1604. <alignment>center-center</alignment>
  1605. <axis-alignment>yz-plane</axis-alignment>
  1606. <type type="string">number-value</type>
  1607. <format type="string">%3.0f</format>
  1608. <property>/instrumentation/garmin196/max-speed</property>
  1609. <scale>0.265</scale>
  1610. <font type="string">helvetica_bold.txf</font>
  1611. <character-size type="double">0.003</character-size>
  1612. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1613. <font-resolution>
  1614. <width type="int">32</width>
  1615. <height type="int">32</height>
  1616. </font-resolution>
  1617. </text>
  1618. <text>
  1619. <name>ecran.panel.speed2.text.kmh</name>
  1620. <offsets>
  1621. <x-m>0.00544954</x-m>
  1622. <y-m>-0.0320269</y-m>
  1623. <z-m>0.0177535</z-m>
  1624. </offsets>
  1625. <alignment>center-center</alignment>
  1626. <axis-alignment>yz-plane</axis-alignment>
  1627. <type type="string">number-value</type>
  1628. <format type="string">%3.0f</format>
  1629. <property>/instrumentation/garmin196/max-speed</property>
  1630. <scale>0.530</scale>
  1631. <font type="string">helvetica_bold.txf</font>
  1632. <character-size type="double">0.003</character-size>
  1633. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1634. <font-resolution>
  1635. <width type="int">32</width>
  1636. <height type="int">32</height>
  1637. </font-resolution>
  1638. </text>
  1639. <text>
  1640. <name>ecran.panel.speed3.text.kmh</name>
  1641. <offsets>
  1642. <x-m>0.00544954</x-m>
  1643. <y-m>-0.0348072</y-m>
  1644. <z-m>0.0121318</z-m>
  1645. </offsets>
  1646. <alignment>center-center</alignment>
  1647. <axis-alignment>yz-plane</axis-alignment>
  1648. <type type="string">number-value</type>
  1649. <format type="string">%3.0f</format>
  1650. <property>/instrumentation/garmin196/max-speed</property>
  1651. <scale>0.765</scale>
  1652. <font type="string">helvetica_bold.txf</font>
  1653. <character-size type="double">0.003</character-size>
  1654. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1655. <font-resolution>
  1656. <width type="int">32</width>
  1657. <height type="int">32</height>
  1658. </font-resolution>
  1659. </text>
  1660. <text>
  1661. <name>ecran.panel.speed4.text.kmh</name>
  1662. <offsets>
  1663. <x-m>0.00544954</x-m>
  1664. <y-m>-0.0396958</y-m>
  1665. <z-m>0.00941252</z-m>
  1666. </offsets>
  1667. <alignment>center-center</alignment>
  1668. <axis-alignment>yz-plane</axis-alignment>
  1669. <type type="string">number-value</type>
  1670. <format type="string">%3.0f</format>
  1671. <property>/instrumentation/garmin196/max-speed</property>
  1672. <scale>1.057</scale>
  1673. <font type="string">helvetica_bold.txf</font>
  1674. <character-size type="double">0.003</character-size>
  1675. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1676. <font-resolution>
  1677. <width type="int">32</width>
  1678. <height type="int">32</height>
  1679. </font-resolution>
  1680. </text>
  1681. <text>
  1682. <name>ecran.panel.speed5.text.kmh</name>
  1683. <offsets>
  1684. <x-m>0.00544954</x-m>
  1685. <y-m>-0.0451953</y-m>
  1686. <z-m>0.0121929</z-m>
  1687. </offsets>
  1688. <alignment>center-center</alignment>
  1689. <axis-alignment>yz-plane</axis-alignment>
  1690. <type type="string">number-value</type>
  1691. <format type="string">%3.0f</format>
  1692. <property>/instrumentation/garmin196/max-speed</property>
  1693. <scale>1.322</scale>
  1694. <font type="string">helvetica_bold.txf</font>
  1695. <character-size type="double">0.003</character-size>
  1696. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1697. <font-resolution>
  1698. <width type="int">32</width>
  1699. <height type="int">32</height>
  1700. </font-resolution>
  1701. </text>
  1702. <text>
  1703. <name>ecran.panel.speed6.text.kmh</name>
  1704. <offsets>
  1705. <x-m>0.00544954</x-m>
  1706. <y-m>-0.0473646</y-m>
  1707. <z-m>0.0178757</z-m>
  1708. </offsets>
  1709. <alignment>center-center</alignment>
  1710. <axis-alignment>yz-plane</axis-alignment>
  1711. <type type="string">number-value</type>
  1712. <format type="string">%3.0f</format>
  1713. <property>/instrumentation/garmin196/max-speed</property>
  1714. <scale>1.587</scale>
  1715. <font type="string">helvetica_bold.txf</font>
  1716. <character-size type="double">0.003</character-size>
  1717. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1718. <font-resolution>
  1719. <width type="int">32</width>
  1720. <height type="int">32</height>
  1721. </font-resolution>
  1722. </text>
  1723. <text>
  1724. <name>ecran.panel.speed7.text.kmh</name>
  1725. <offsets>
  1726. <x-m>0.00544954</x-m>
  1727. <y-m>-0.045012</y-m>
  1728. <z-m>0.023742</z-m>
  1729. </offsets>
  1730. <alignment>center-center</alignment>
  1731. <axis-alignment>yz-plane</axis-alignment>
  1732. <type type="string">number-value</type>
  1733. <format type="string">%3.0f</format>
  1734. <property>/instrumentation/garmin196/max-speed</property>
  1735. <scale>1.852</scale>
  1736. <font type="string">helvetica_bold.txf</font>
  1737. <character-size type="double">0.003</character-size>
  1738. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1739. <font-resolution>
  1740. <width type="int">32</width>
  1741. <height type="int">32</height>
  1742. </font-resolution>
  1743. </text>
  1744. <animation>
  1745. <type>select</type>
  1746. <object-name>ecran.panel.alt.text.ft</object-name>
  1747. <condition>
  1748. <and>
  1749. <equals>
  1750. <property>/instrumentation/garmin196/status</property>
  1751. <value>20</value>
  1752. </equals>
  1753. <equals>
  1754. <property>/instrumentation/garmin196/params/units/altitude</property>
  1755. <value>1</value>
  1756. </equals>
  1757. </and>
  1758. </condition>
  1759. </animation>
  1760. <text>
  1761. <name>ecran.panel.alt.text.ft</name>
  1762. <offsets>
  1763. <x-m>0.00544954</x-m>
  1764. <y-m>0.00826301</y-m>
  1765. <z-m>0.00259949</z-m>
  1766. </offsets>
  1767. <alignment>center-center</alignment>
  1768. <axis-alignment>yz-plane</axis-alignment>
  1769. <type type="string">number-value</type>
  1770. <format type="string">%3.0fft</format>
  1771. <property>/instrumentation/gps/indicated-altitude-ft</property>
  1772. <scale>1</scale>
  1773. <font type="string">helvetica_bold.txf</font>
  1774. <character-size type="double">0.006</character-size>
  1775. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1776. <font-resolution>
  1777. <width type="int">32</width>
  1778. <height type="int">32</height>
  1779. </font-resolution>
  1780. </text>
  1781. <animation>
  1782. <type>select</type>
  1783. <object-name>ecran.panel.alt.text.m</object-name>
  1784. <condition>
  1785. <and>
  1786. <equals>
  1787. <property>/instrumentation/garmin196/status</property>
  1788. <value>20</value>
  1789. </equals>
  1790. <equals>
  1791. <property>/instrumentation/garmin196/params/units/altitude</property>
  1792. <value>2</value>
  1793. </equals>
  1794. </and>
  1795. </condition>
  1796. </animation>
  1797. <text>
  1798. <name>ecran.panel.alt.text.m</name>
  1799. <offsets>
  1800. <x-m>0.00544954</x-m>
  1801. <y-m>0.00826301</y-m>
  1802. <z-m>0.00259949</z-m>
  1803. </offsets>
  1804. <alignment>center-center</alignment>
  1805. <axis-alignment>yz-plane</axis-alignment>
  1806. <type type="string">number-value</type>
  1807. <format type="string">%3.0fm</format>
  1808. <property>/instrumentation/gps/indicated-altitude-ft</property>
  1809. <scale>0.3048</scale>
  1810. <font type="string">helvetica_bold.txf</font>
  1811. <character-size type="double">0.006</character-size>
  1812. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1813. <font-resolution>
  1814. <width type="int">32</width>
  1815. <height type="int">32</height>
  1816. </font-resolution>
  1817. </text>
  1818. <text>
  1819. <name>ecran.panel.wpt.id.text</name>
  1820. <offsets>
  1821. <x-m>0.00544954</x-m>
  1822. <y-m>-0.0172818</y-m>
  1823. <z-m>0.0272713</z-m>
  1824. </offsets>
  1825. <alignment>center-center</alignment>
  1826. <axis-alignment>yz-plane</axis-alignment>
  1827. <type type="string">text-value</type>
  1828. <property>/instrumentation/garmin196/panel-wpt-id</property>
  1829. <format type="string">%0.7s</format>
  1830. <font type="string">helvetica_bold.txf</font>
  1831. <character-size type="double">0.005</character-size>
  1832. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1833. <font-resolution>
  1834. <width type="int">32</width>
  1835. <height type="int">32</height>
  1836. </font-resolution>
  1837. </text>
  1838. <animation>
  1839. <type>select</type>
  1840. <object-name>ecran.panel.wpt.range.text.nm</object-name>
  1841. <condition>
  1842. <and>
  1843. <equals>
  1844. <property>/instrumentation/garmin196/status</property>
  1845. <value>20</value>
  1846. </equals>
  1847. <equals>
  1848. <property>/instrumentation/garmin196/params/units/distance</property>
  1849. <value>1</value>
  1850. </equals>
  1851. <not>
  1852. <equals>
  1853. <property>/instrumentation/garmin196/panel-wpt-id</property>
  1854. <value type="string">------</value>
  1855. </equals>
  1856. </not>
  1857. <not>
  1858. <equals>
  1859. <property>/instrumentation/garmin196/panel-wpt-id</property>
  1860. <value type="string"></value>
  1861. </equals>
  1862. </not>
  1863. </and>
  1864. </condition>
  1865. </animation>
  1866. <text>
  1867. <name>ecran.panel.wpt.range.text.nm</name>
  1868. <offsets>
  1869. <x-m>0.00544954</x-m>
  1870. <y-m>-0.0172818</y-m>
  1871. <z-m>0.0221286</z-m>
  1872. </offsets>
  1873. <alignment>center-center</alignment>
  1874. <axis-alignment>yz-plane</axis-alignment>
  1875. <type type="string">number-value</type>
  1876. <format type="string">%3.1fnm</format>
  1877. <property>/instrumentation/gps/wp/wp[1]/distance-nm</property>
  1878. <scale>1</scale>
  1879. <font type="string">helvetica_bold.txf</font>
  1880. <character-size type="double">0.005</character-size>
  1881. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1882. <font-resolution>
  1883. <width type="int">32</width>
  1884. <height type="int">32</height>
  1885. </font-resolution>
  1886. </text>
  1887. <animation>
  1888. <type>select</type>
  1889. <object-name>ecran.panel.wpt.range.text.km</object-name>
  1890. <condition>
  1891. <and>
  1892. <equals>
  1893. <property>/instrumentation/garmin196/status</property>
  1894. <value>20</value>
  1895. </equals>
  1896. <equals>
  1897. <property>/instrumentation/garmin196/params/units/distance</property>
  1898. <value>2</value>
  1899. </equals>
  1900. <not>
  1901. <equals>
  1902. <property>/instrumentation/garmin196/panel-wpt-id</property>
  1903. <value type="string">------</value>
  1904. </equals>
  1905. </not>
  1906. <not>
  1907. <equals>
  1908. <property>/instrumentation/garmin196/panel-wpt-id</property>
  1909. <value type="string"></value>
  1910. </equals>
  1911. </not>
  1912. </and>
  1913. </condition>
  1914. </animation>
  1915. <text>
  1916. <name>ecran.panel.wpt.range.text.km</name>
  1917. <offsets>
  1918. <x-m>0.00544954</x-m>
  1919. <y-m>-0.0172818</y-m>
  1920. <z-m>0.0221286</z-m>
  1921. </offsets>
  1922. <alignment>center-center</alignment>
  1923. <axis-alignment>yz-plane</axis-alignment>
  1924. <type type="string">number-value</type>
  1925. <format type="string">%3.1fkm</format>
  1926. <property>/instrumentation/gps/wp/wp[1]/distance-nm</property>
  1927. <scale>1.852</scale>
  1928. <font type="string">helvetica_bold.txf</font>
  1929. <character-size type="double">0.005</character-size>
  1930. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1931. <font-resolution>
  1932. <width type="int">32</width>
  1933. <height type="int">32</height>
  1934. </font-resolution>
  1935. </text>
  1936. <text>
  1937. <name>ecran.panel.wpt.ete.text</name>
  1938. <offsets>
  1939. <x-m>0.00544954</x-m>
  1940. <y-m>-0.0173826</y-m>
  1941. <z-m>-0.0193155</z-m>
  1942. </offsets>
  1943. <alignment>center-center</alignment>
  1944. <axis-alignment>yz-plane</axis-alignment>
  1945. <type type="string">text-value</type>
  1946. <property>/instrumentation/gps/wp/wp[1]/TTW</property>
  1947. <font type="string">helvetica_bold.txf</font>
  1948. <character-size type="double">0.006</character-size>
  1949. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  1950. <font-resolution>
  1951. <width type="int">32</width>
  1952. <height type="int">32</height>
  1953. </font-resolution>
  1954. </text>
  1955. <animation>
  1956. <type>select</type>
  1957. <object-name>ecran.panel.wpt.ete.text</object-name>
  1958. <condition>
  1959. <and>
  1960. <equals>
  1961. <property>/instrumentation/garmin196/status</property>
  1962. <value>20</value>
  1963. </equals>
  1964. <not>
  1965. <equals>
  1966. <property>/instrumentation/garmin196/panel-wpt-id</property>
  1967. <value type="string">------</value>
  1968. </equals>
  1969. </not>
  1970. <not>
  1971. <equals>
  1972. <property>/instrumentation/garmin196/panel-wpt-id</property>
  1973. <value type="string"></value>
  1974. </equals>
  1975. </not>
  1976. </and>
  1977. </condition>
  1978. </animation>
  1979. <!--position page-->
  1980. <animation>
  1981. <type>select</type>
  1982. <object-name>ecran.position</object-name>
  1983. <object-name>ecran.position.rose</object-name>
  1984. <object-name>ecran.position.rose.bug</object-name>
  1985. <object-name>ecran.position.longitude</object-name>
  1986. <object-name>ecran.position.latitude</object-name>
  1987. <object-name>ecran.position.date</object-name>
  1988. <object-name>ecran.position.time</object-name>
  1989. <object-name>ecran.position.wpt.id</object-name>
  1990. <!--<object-name>ecran.position.wpt.ete</object-name>
  1991. <object-name>ecran.position.wpt.bearing</object-name>-->
  1992. <object-name>ecran.position.bearing.text</object-name>
  1993. <condition>
  1994. <equals>
  1995. <property>/instrumentation/garmin196/status</property>
  1996. <value>30</value>
  1997. </equals>
  1998. </condition>
  1999. </animation>
  2000. <text>
  2001. <name>ecran.position.latitude</name>
  2002. <offsets>
  2003. <x-m>0.00544954</x-m>
  2004. <y-m>-0.0334411</y-m>
  2005. <z-m>0.0075612</z-m>
  2006. </offsets>
  2007. <alignment>center-center</alignment>
  2008. <axis-alignment>yz-plane</axis-alignment>
  2009. <type type="string">text-value</type>
  2010. <property>/position/latitude-string</property>
  2011. <font type="string">helvetica_bold.txf</font>
  2012. <character-size type="double">0.006</character-size>
  2013. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2014. <font-resolution>
  2015. <width type="int">32</width>
  2016. <height type="int">32</height>
  2017. </font-resolution>
  2018. </text>
  2019. <text>
  2020. <name>ecran.position.longitude</name>
  2021. <offsets>
  2022. <x-m>0.00544954</x-m>
  2023. <y-m>-0.0335397</y-m>
  2024. <z-m>0.00154832</z-m>
  2025. </offsets>
  2026. <alignment>center-center</alignment>
  2027. <axis-alignment>yz-plane</axis-alignment>
  2028. <type type="string">text-value</type>
  2029. <property>/position/longitude-string</property>
  2030. <font type="string">helvetica_bold.txf</font>
  2031. <character-size type="double">0.006</character-size>
  2032. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2033. <font-resolution>
  2034. <width type="int">32</width>
  2035. <height type="int">32</height>
  2036. </font-resolution>
  2037. </text>
  2038. <text>
  2039. <name>ecran.position.date</name>
  2040. <offsets>
  2041. <x-m>0.00544954</x-m>
  2042. <y-m>-0.0341312</y-m>
  2043. <z-m>-0.0156032</z-m>
  2044. </offsets>
  2045. <alignment>center-center</alignment>
  2046. <axis-alignment>yz-plane</axis-alignment>
  2047. <type type="string">text-value</type>
  2048. <property>/sim/time/gmt</property>
  2049. <format>%0.10s</format>
  2050. <font type="string">helvetica_bold.txf</font>
  2051. <character-size type="double">0.006</character-size>
  2052. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2053. <font-resolution>
  2054. <width type="int">32</width>
  2055. <height type="int">32</height>
  2056. </font-resolution>
  2057. </text>
  2058. <text>
  2059. <name>ecran.position.time</name>
  2060. <offsets>
  2061. <x-m>0.00544954</x-m>
  2062. <y-m>-0.0340819</y-m>
  2063. <z-m>-0.00835815</z-m>
  2064. </offsets>
  2065. <alignment>center-center</alignment>
  2066. <axis-alignment>yz-plane</axis-alignment>
  2067. <type type="string">text-value</type>
  2068. <property>/sim/time/gmt-string</property>
  2069. <font type="string">helvetica_bold.txf</font>
  2070. <character-size type="double">0.006</character-size>
  2071. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2072. <font-resolution>
  2073. <width type="int">32</width>
  2074. <height type="int">32</height>
  2075. </font-resolution>
  2076. </text>
  2077. <animation>
  2078. <type>textranslate</type>
  2079. <object-name>ecran.position.rose</object-name>
  2080. <property>/instrumentation/gps/indicated-track-magnetic-deg</property>
  2081. <factor>0.00278</factor>
  2082. <axis>
  2083. <x> 1 </x>
  2084. <y> 0 </y>
  2085. <z> 0 </z>
  2086. </axis>
  2087. </animation>
  2088. <animation>
  2089. <type>select</type>
  2090. <object-name>ecran.position.rose.wpt</object-name>
  2091. <condition>
  2092. <and>
  2093. <greater-than>
  2094. <property>/instrumentation/garmin196/position-wpt-bearing</property>
  2095. <value>-43</value>
  2096. </greater-than>
  2097. <less-than>
  2098. <property>/instrumentation/garmin196/position-wpt-bearing</property>
  2099. <value>43</value>
  2100. </less-than>
  2101. <equals>
  2102. <property>/instrumentation/garmin196/status</property>
  2103. <value>30</value>
  2104. </equals>
  2105. </and>
  2106. </condition>
  2107. </animation>
  2108. <animation>
  2109. <type>translate</type>
  2110. <object-name>ecran.position.rose.wpt</object-name>
  2111. <property>/instrumentation/garmin196/position-wpt-bearing</property>
  2112. <factor>0.00038</factor>
  2113. <axis>
  2114. <x>0.0</x>
  2115. <y>1.0</y>
  2116. <z>0.0</z>
  2117. </axis>
  2118. </animation>
  2119. <text>
  2120. <name>ecran.position.wpt.id</name>
  2121. <offsets>
  2122. <x-m>0.00544954</x-m>
  2123. <y-m>-0.00932176</y-m>
  2124. <z-m>0.0231375</z-m>
  2125. </offsets>
  2126. <alignment>center-center</alignment>
  2127. <axis-alignment>yz-plane</axis-alignment>
  2128. <type type="string">text-value</type>
  2129. <property>/instrumentation/garmin196/position-wpt-id</property>
  2130. <font type="string">helvetica_bold.txf</font>
  2131. <format type="string">%0.7s</format>
  2132. <character-size type="double">0.004</character-size>
  2133. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2134. <font-resolution>
  2135. <width type="int">32</width>
  2136. <height type="int">32</height>
  2137. </font-resolution>
  2138. </text>
  2139. <text>
  2140. <name>ecran.position.wpt.ete</name>
  2141. <offsets>
  2142. <x-m>0.00544954</x-m>
  2143. <y-m>0.00757189</y-m>
  2144. <z-m>0.0231375</z-m>
  2145. </offsets>
  2146. <alignment>center-center</alignment>
  2147. <axis-alignment>yz-plane</axis-alignment>
  2148. <type type="string">text-value</type>
  2149. <property>/instrumentation/gps/wp/wp[1]/TTW</property>
  2150. <font type="string">helvetica_bold.txf</font>
  2151. <character-size type="double">0.005</character-size>
  2152. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2153. <font-resolution>
  2154. <width type="int">32</width>
  2155. <height type="int">32</height>
  2156. </font-resolution>
  2157. </text>
  2158. <animation>
  2159. <type>select</type>
  2160. <object-name>ecran.position.wpt.ete</object-name>
  2161. <condition>
  2162. <and>
  2163. <equals>
  2164. <property>/instrumentation/garmin196/status</property>
  2165. <value>30</value>
  2166. </equals>
  2167. <not>
  2168. <equals>
  2169. <property>/instrumentation/garmin196/position-wpt-id</property>
  2170. <value type="string">------</value>
  2171. </equals>
  2172. </not>
  2173. <not>
  2174. <equals>
  2175. <property>/instrumentation/garmin196/position-wpt-id</property>
  2176. <value type="string"></value>
  2177. </equals>
  2178. </not>
  2179. </and>
  2180. </condition>
  2181. </animation>
  2182. <animation>
  2183. <type>select</type>
  2184. <object-name>ecran.position.wpt.range.nm</object-name>
  2185. <condition>
  2186. <and>
  2187. <equals>
  2188. <property>/instrumentation/garmin196/status</property>
  2189. <value>30</value>
  2190. </equals>
  2191. <equals>
  2192. <property>/instrumentation/garmin196/params/units/distance</property>
  2193. <value>1</value>
  2194. </equals>
  2195. <not>
  2196. <equals>
  2197. <property>/instrumentation/garmin196/position-wpt-id</property>
  2198. <value type="string">------</value>
  2199. </equals>
  2200. </not>
  2201. <not>
  2202. <equals>
  2203. <property>/instrumentation/garmin196/position-wpt-id</property>
  2204. <value type="string"></value>
  2205. </equals>
  2206. </not>
  2207. </and>
  2208. </condition>
  2209. </animation>
  2210. <text>
  2211. <name>ecran.position.wpt.range.nm</name>
  2212. <offsets>
  2213. <x-m>0.00544954</x-m>
  2214. <y-m>-0.00939489</y-m>
  2215. <z-m>0.0123139</z-m>
  2216. </offsets>
  2217. <alignment>center-center</alignment>
  2218. <axis-alignment>yz-plane</axis-alignment>
  2219. <type type="string">number-value</type>
  2220. <property>/instrumentation/gps/wp/wp[1]/distance-nm</property>
  2221. <format type="string">%3.1fnm</format>
  2222. <font type="string">helvetica_bold.txf</font>
  2223. <character-size type="double">0.005</character-size>
  2224. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2225. <font-resolution>
  2226. <width type="int">32</width>
  2227. <height type="int">32</height>
  2228. </font-resolution>
  2229. </text>
  2230. <animation>
  2231. <type>select</type>
  2232. <object-name>ecran.position.wpt.range.km</object-name>
  2233. <condition>
  2234. <and>
  2235. <equals>
  2236. <property>/instrumentation/garmin196/status</property>
  2237. <value>30</value>
  2238. </equals>
  2239. <equals>
  2240. <property>/instrumentation/garmin196/params/units/distance</property>
  2241. <value>2</value>
  2242. </equals>
  2243. <not>
  2244. <equals>
  2245. <property>/instrumentation/garmin196/position-wpt-id</property>
  2246. <value type="string">------</value>
  2247. </equals>
  2248. </not>
  2249. <not>
  2250. <equals>
  2251. <property>/instrumentation/garmin196/position-wpt-id</property>
  2252. <value type="string"></value>
  2253. </equals>
  2254. </not>
  2255. </and>
  2256. </condition>
  2257. </animation>
  2258. <text>
  2259. <name>ecran.position.wpt.range.km</name>
  2260. <offsets>
  2261. <x-m>0.00544954</x-m>
  2262. <y-m>-0.00939489</y-m>
  2263. <z-m>0.0123139</z-m>
  2264. </offsets>
  2265. <alignment>center-center</alignment>
  2266. <axis-alignment>yz-plane</axis-alignment>
  2267. <type type="string">number-value</type>
  2268. <property>/instrumentation/gps/wp/wp[1]/distance-nm</property>
  2269. <format type="string">%3.1fkm</format>
  2270. <scale>1.852</scale>
  2271. <font type="string">helvetica_bold.txf</font>
  2272. <character-size type="double">0.005</character-size>
  2273. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2274. <font-resolution>
  2275. <width type="int">32</width>
  2276. <height type="int">32</height>
  2277. </font-resolution>
  2278. </text>
  2279. <animation>
  2280. <type>select</type>
  2281. <object-name>ecran.position.wpt.bearing</object-name>
  2282. <condition>
  2283. <and>
  2284. <equals>
  2285. <property>/instrumentation/garmin196/status</property>
  2286. <value>30</value>
  2287. </equals>
  2288. <not>
  2289. <equals>
  2290. <property>/instrumentation/garmin196/position-wpt-id</property>
  2291. <value type="string">------</value>
  2292. </equals>
  2293. </not>
  2294. <not>
  2295. <equals>
  2296. <property>/instrumentation/garmin196/position-wpt-id</property>
  2297. <value type="string"></value>
  2298. </equals>
  2299. </not>
  2300. </and>
  2301. </condition>
  2302. </animation>
  2303. <text>
  2304. <name>ecran.position.wpt.bearing</name>
  2305. <offsets>
  2306. <x-m>0.00544954</x-m>
  2307. <y-m>0.00757189</y-m>
  2308. <z-m>0.0123139</z-m>
  2309. </offsets>
  2310. <alignment>center-center</alignment>
  2311. <axis-alignment>yz-plane</axis-alignment>
  2312. <type type="string">number-value</type>
  2313. <format type="string">%3.0f</format>
  2314. <property>/instrumentation/gps/wp/wp[1]/bearing-mag-deg</property>
  2315. <font type="string">helvetica_bold.txf</font>
  2316. <character-size type="double">0.005</character-size>
  2317. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2318. <font-resolution>
  2319. <width type="int">32</width>
  2320. <height type="int">32</height>
  2321. </font-resolution>
  2322. </text>
  2323. <animation>
  2324. <type>select</type>
  2325. <object-name>ecran.position.speed.text.kt</object-name>
  2326. <condition>
  2327. <and>
  2328. <equals>
  2329. <property>/instrumentation/garmin196/status</property>
  2330. <value>30</value>
  2331. </equals>
  2332. <equals>
  2333. <property>/instrumentation/garmin196/params/units/speed</property>
  2334. <value>1</value>
  2335. </equals>
  2336. </and>
  2337. </condition>
  2338. </animation>
  2339. <text>
  2340. <name>ecran.position.speed.text.kt</name>
  2341. <offsets>
  2342. <x-m>0.00544954</x-m>
  2343. <y-m>-0.00939489</y-m>
  2344. <z-m>0.00145365</z-m>
  2345. </offsets>
  2346. <alignment>center-center</alignment>
  2347. <axis-alignment>yz-plane</axis-alignment>
  2348. <type type="string">number-value</type>
  2349. <format type="string">%3.0fkt</format>
  2350. <property>/instrumentation/gps/indicated-ground-speed-kt</property>
  2351. <font type="string">helvetica_bold.txf</font>
  2352. <character-size type="double">0.005</character-size>
  2353. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2354. <font-resolution>
  2355. <width type="int">32</width>
  2356. <height type="int">32</height>
  2357. </font-resolution>
  2358. </text>
  2359. <animation>
  2360. <type>select</type>
  2361. <object-name>ecran.position.speed.text.kmh</object-name>
  2362. <condition>
  2363. <and>
  2364. <equals>
  2365. <property>/instrumentation/garmin196/status</property>
  2366. <value>30</value>
  2367. </equals>
  2368. <equals>
  2369. <property>/instrumentation/garmin196/params/units/speed</property>
  2370. <value>2</value>
  2371. </equals>
  2372. </and>
  2373. </condition>
  2374. </animation>
  2375. <text>
  2376. <name>ecran.position.speed.text.kmh</name>
  2377. <offsets>
  2378. <x-m>0.00544954</x-m>
  2379. <y-m>-0.00939489</y-m>
  2380. <z-m>0.00145365</z-m>
  2381. </offsets>
  2382. <alignment>center-center</alignment>
  2383. <axis-alignment>yz-plane</axis-alignment>
  2384. <type type="string">number-value</type>
  2385. <format type="string">%3.0fkm/h</format>
  2386. <property>/instrumentation/gps/indicated-ground-speed-kt</property>
  2387. <scale>1.852</scale>
  2388. <font type="string">helvetica_bold.txf</font>
  2389. <character-size type="double">0.005</character-size>
  2390. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2391. <font-resolution>
  2392. <width type="int">32</width>
  2393. <height type="int">32</height>
  2394. </font-resolution>
  2395. </text>
  2396. <animation>
  2397. <type>select</type>
  2398. <object-name>ecran.position.alt.text.ft</object-name>
  2399. <condition>
  2400. <and>
  2401. <equals>
  2402. <property>/instrumentation/garmin196/status</property>
  2403. <value>30</value>
  2404. </equals>
  2405. <equals>
  2406. <property>/instrumentation/garmin196/params/units/altitude</property>
  2407. <value>1</value>
  2408. </equals>
  2409. </and>
  2410. </condition>
  2411. </animation>
  2412. <text>
  2413. <name>ecran.position.alt.text.ft</name>
  2414. <offsets>
  2415. <x-m>0.00544954</x-m>
  2416. <y-m>0.00757189</y-m>
  2417. <z-m>0.00145365</z-m>
  2418. </offsets>
  2419. <alignment>center-center</alignment>
  2420. <axis-alignment>yz-plane</axis-alignment>
  2421. <type type="string">number-value</type>
  2422. <format type="string">%3.0fft</format>
  2423. <property>/instrumentation/gps/indicated-altitude-ft</property>
  2424. <font type="string">helvetica_bold.txf</font>
  2425. <character-size type="double">0.005</character-size>
  2426. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2427. <font-resolution>
  2428. <width type="int">32</width>
  2429. <height type="int">32</height>
  2430. </font-resolution>
  2431. </text>
  2432. <animation>
  2433. <type>select</type>
  2434. <object-name>ecran.position.alt.text.m</object-name>
  2435. <condition>
  2436. <and>
  2437. <equals>
  2438. <property>/instrumentation/garmin196/status</property>
  2439. <value>30</value>
  2440. </equals>
  2441. <equals>
  2442. <property>/instrumentation/garmin196/params/units/altitude</property>
  2443. <value>2</value>
  2444. </equals>
  2445. </and>
  2446. </condition>
  2447. </animation>
  2448. <text>
  2449. <name>ecran.position.alt.text.m</name>
  2450. <offsets>
  2451. <x-m>0.00544954</x-m>
  2452. <y-m>0.00757189</y-m>
  2453. <z-m>0.00145365</z-m>
  2454. </offsets>
  2455. <alignment>center-center</alignment>
  2456. <axis-alignment>yz-plane</axis-alignment>
  2457. <type type="string">number-value</type>
  2458. <format type="string">%3.0fm</format>
  2459. <property>/instrumentation/gps/indicated-altitude-ft</property>
  2460. <scale>0.3048</scale>
  2461. <font type="string">helvetica_bold.txf</font>
  2462. <character-size type="double">0.005</character-size>
  2463. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2464. <font-resolution>
  2465. <width type="int">32</width>
  2466. <height type="int">32</height>
  2467. </font-resolution>
  2468. </text>
  2469. <text>
  2470. <name>ecran.position.bearing.text</name>
  2471. <offsets>
  2472. <x-m>0.00544954</x-m>
  2473. <y-m>-0.00939489</y-m>
  2474. <z-m>-0.00936999</z-m>
  2475. </offsets>
  2476. <alignment>center-center</alignment>
  2477. <axis-alignment>yz-plane</axis-alignment>
  2478. <type type="string">number-value</type>
  2479. <format type="string">%3.0f</format>
  2480. <property>/instrumentation/gps/indicated-track-magnetic-deg</property>
  2481. <font type="string">helvetica_bold.txf</font>
  2482. <character-size type="double">0.005</character-size>
  2483. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2484. <font-resolution>
  2485. <width type="int">32</width>
  2486. <height type="int">32</height>
  2487. </font-resolution>
  2488. </text>
  2489. <animation>
  2490. <type>select</type>
  2491. <object-name>ecran.position.vspeed.text.ftmn</object-name>
  2492. <condition>
  2493. <and>
  2494. <equals>
  2495. <property>/instrumentation/garmin196/status</property>
  2496. <value>30</value>
  2497. </equals>
  2498. <equals>
  2499. <property>/instrumentation/garmin196/params/units/vert-speed</property>
  2500. <value>1</value>
  2501. </equals>
  2502. </and>
  2503. </condition>
  2504. </animation>
  2505. <text>
  2506. <name>ecran.position.vspeed.text.ftmn</name>
  2507. <offsets>
  2508. <x-m>0.00544954</x-m>
  2509. <y-m>0.00757189</y-m>
  2510. <z-m>-0.00936999</z-m>
  2511. </offsets>
  2512. <alignment>center-center</alignment>
  2513. <axis-alignment>yz-plane</axis-alignment>
  2514. <type type="string">number-value</type>
  2515. <format type="string">%3.0fft/mn</format>
  2516. <property>/instrumentation/gps/indicated-vertical-speed</property>
  2517. <font type="string">helvetica_bold.txf</font>
  2518. <character-size type="double">0.005</character-size>
  2519. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2520. <font-resolution>
  2521. <width type="int">32</width>
  2522. <height type="int">32</height>
  2523. </font-resolution>
  2524. </text>
  2525. <animation>
  2526. <type>select</type>
  2527. <object-name>ecran.position.vspeed.text.ms</object-name>
  2528. <condition>
  2529. <and>
  2530. <equals>
  2531. <property>/instrumentation/garmin196/status</property>
  2532. <value>30</value>
  2533. </equals>
  2534. <equals>
  2535. <property>/instrumentation/garmin196/params/units/vert-speed</property>
  2536. <value>2</value>
  2537. </equals>
  2538. </and>
  2539. </condition>
  2540. </animation>
  2541. <text>
  2542. <name>ecran.position.vspeed.text.ms</name>
  2543. <offsets>
  2544. <x-m>0.00544954</x-m>
  2545. <y-m>0.00757189</y-m>
  2546. <z-m>-0.00936999</z-m>
  2547. </offsets>
  2548. <alignment>center-center</alignment>
  2549. <axis-alignment>yz-plane</axis-alignment>
  2550. <type type="string">number-value</type>
  2551. <format type="string">%3.0fm/s</format>
  2552. <property>/instrumentation/gps/indicated-vertical-speed</property>
  2553. <scale>0.005</scale>
  2554. <font type="string">helvetica_bold.txf</font>
  2555. <character-size type="double">0.005</character-size>
  2556. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2557. <font-resolution>
  2558. <width type="int">32</width>
  2559. <height type="int">32</height>
  2560. </font-resolution>
  2561. </text>
  2562. <!--Menu gps-->
  2563. <animation>
  2564. <type>select</type>
  2565. <object-name>menu.gps</object-name>
  2566. <object-name>menu.gps.date</object-name>
  2567. <object-name>menu.gps.time</object-name>
  2568. <condition>
  2569. <and>
  2570. <greater-than-equals>
  2571. <property>/instrumentation/garmin196/status</property>
  2572. <value>100</value>
  2573. </greater-than-equals>
  2574. <less-than>
  2575. <property>/instrumentation/garmin196/status</property>
  2576. <value>110</value>
  2577. </less-than>
  2578. </and>
  2579. </condition>
  2580. </animation>
  2581. <text>
  2582. <name>menu.gps.date</name>
  2583. <offsets>
  2584. <x-m>0.00544954</x-m>
  2585. <y-m>-0.0372971</y-m>
  2586. <z-m>-0.00100104</z-m>
  2587. </offsets>
  2588. <alignment>left-center</alignment>
  2589. <axis-alignment>yz-plane</axis-alignment>
  2590. <type type="string">text-value</type>
  2591. <property>/sim/time/gmt</property>
  2592. <format>%0.10s</format>
  2593. <font type="string">helvetica_bold.txf</font>
  2594. <character-size type="double">0.006</character-size>
  2595. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2596. <font-resolution>
  2597. <width type="int">32</width>
  2598. <height type="int">32</height>
  2599. </font-resolution>
  2600. </text>
  2601. <text>
  2602. <name>menu.gps.time</name>
  2603. <offsets>
  2604. <x-m>0.00544954</x-m>
  2605. <y-m>-0.0059422</y-m>
  2606. <z-m>-0.00100104</z-m>
  2607. </offsets>
  2608. <alignment>left-center</alignment>
  2609. <axis-alignment>yz-plane</axis-alignment>
  2610. <type type="string">text-value</type>
  2611. <property>/sim/time/gmt-string</property>
  2612. <font type="string">helvetica_bold.txf</font>
  2613. <character-size type="double">0.006</character-size>
  2614. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2615. <font-resolution>
  2616. <width type="int">32</width>
  2617. <height type="int">32</height>
  2618. </font-resolution>
  2619. </text>
  2620. <!--Menu flights-->
  2621. <animation>
  2622. <type>select</type>
  2623. <object-name>menu.flights</object-name>
  2624. <object-name>menu.flights.text0</object-name>
  2625. <object-name>menu.flights.text1</object-name>
  2626. <object-name>menu.flights.text2</object-name>
  2627. <object-name>menu.flights.text3</object-name>
  2628. <object-name>menu.flights.text4</object-name>
  2629. <object-name>menu.flights.text5</object-name>
  2630. <object-name>menu.flights.text6</object-name>
  2631. <object-name>menu.flights.text7</object-name>
  2632. <condition>
  2633. <and>
  2634. <greater-than-equals>
  2635. <property>/instrumentation/garmin196/status</property>
  2636. <value>110</value>
  2637. </greater-than-equals>
  2638. <less-than>
  2639. <property>/instrumentation/garmin196/status</property>
  2640. <value>120</value>
  2641. </less-than>
  2642. </and>
  2643. </condition>
  2644. </animation>
  2645. <animation>
  2646. <type>select</type>
  2647. <object-name>menu.flights.list.mask</object-name>
  2648. <condition>
  2649. <and>
  2650. <greater-than-equals>
  2651. <property>/instrumentation/garmin196/status</property>
  2652. <value>111</value>
  2653. </greater-than-equals>
  2654. <less-than-equals>
  2655. <property>/instrumentation/garmin196/status</property>
  2656. <value>112</value>
  2657. </less-than-equals>
  2658. </and>
  2659. </condition>
  2660. </animation>
  2661. <animation>
  2662. <type>translate</type>
  2663. <object-name>menu.flights.list.mask</object-name>
  2664. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  2665. <factor>-0.006</factor>
  2666. <axis>
  2667. <x> 0 </x>
  2668. <y> 0 </y>
  2669. <z> 1 </z>
  2670. </axis>
  2671. </animation>
  2672. <animation>
  2673. <type>select</type>
  2674. <object-name>menu.flights.detail</object-name>
  2675. <object-name>menu.flights.detail.name</object-name>
  2676. <object-name>menu.flights.detail.date</object-name>
  2677. <object-name>menu.flights.detail.aircraft</object-name>
  2678. <object-name>menu.flights.detail.distance</object-name>
  2679. <object-name>menu.flights.detail.duration</object-name>
  2680. <condition>
  2681. <equals>
  2682. <property>/instrumentation/garmin196/status</property>
  2683. <value>112</value>
  2684. </equals>
  2685. </condition>
  2686. </animation>
  2687. <text>
  2688. <name>menu.flights.detail.name</name>
  2689. <offsets>
  2690. <x-m>0.00665938</x-m>
  2691. <y-m>-0.0159867</y-m>
  2692. <z-m>0.0131759</z-m>
  2693. </offsets>
  2694. <alignment>center-center</alignment>
  2695. <axis-alignment>yz-plane</axis-alignment>
  2696. <type type="string">text-value</type>
  2697. <property>/instrumentation/garmin196/menu_flights/ligne_selected/texte</property>
  2698. <font type="string">helvetica_bold.txf</font>
  2699. <character-size type="double">0.004</character-size>
  2700. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2701. <font-resolution>
  2702. <width type="int">32</width>
  2703. <height type="int">32</height>
  2704. </font-resolution>
  2705. </text>
  2706. <animation>
  2707. <type>material</type>
  2708. <object-name>menu.flights.detail.name</object-name>
  2709. <ambient>
  2710. <red>0</red>
  2711. <green>0</green>
  2712. <blue>0</blue>
  2713. </ambient>
  2714. <diffuse>
  2715. <red>0</red>
  2716. <green>0</green>
  2717. <blue>0</blue>
  2718. </diffuse>
  2719. </animation>
  2720. <text>
  2721. <name>menu.flights.detail.date</name>
  2722. <offsets>
  2723. <x-m>0.00665938</x-m>
  2724. <y-m>-0.0159867</y-m>
  2725. <z-m>0.00817585</z-m>
  2726. </offsets>
  2727. <alignment>center-center</alignment>
  2728. <axis-alignment>yz-plane</axis-alignment>
  2729. <type type="string">text-value</type>
  2730. <property>/instrumentation/garmin196/menu_flights/ligne_selected/date</property>
  2731. <font type="string">helvetica_bold.txf</font>
  2732. <character-size type="double">0.004</character-size>
  2733. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2734. <font-resolution>
  2735. <width type="int">32</width>
  2736. <height type="int">32</height>
  2737. </font-resolution>
  2738. </text>
  2739. <animation>
  2740. <type>material</type>
  2741. <object-name>menu.flights.detail.date</object-name>
  2742. <ambient>
  2743. <red>0</red>
  2744. <green>0</green>
  2745. <blue>0</blue>
  2746. </ambient>
  2747. <diffuse>
  2748. <red>0</red>
  2749. <green>0</green>
  2750. <blue>0</blue>
  2751. </diffuse>
  2752. </animation>
  2753. <text>
  2754. <name>menu.flights.detail.aircraft</name>
  2755. <offsets>
  2756. <x-m>0.00665938</x-m>
  2757. <y-m>-0.0159867</y-m>
  2758. <z-m>0.00317585</z-m>
  2759. </offsets>
  2760. <alignment>center-center</alignment>
  2761. <axis-alignment>yz-plane</axis-alignment>
  2762. <type type="string">text-value</type>
  2763. <property>/instrumentation/garmin196/menu_flights/ligne_selected/aircraft</property>
  2764. <font type="string">helvetica_bold.txf</font>
  2765. <character-size type="double">0.004</character-size>
  2766. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2767. <font-resolution>
  2768. <width type="int">32</width>
  2769. <height type="int">32</height>
  2770. </font-resolution>
  2771. </text>
  2772. <animation>
  2773. <type>material</type>
  2774. <object-name>menu.flights.detail.aircraft</object-name>
  2775. <ambient>
  2776. <red>0</red>
  2777. <green>0</green>
  2778. <blue>0</blue>
  2779. </ambient>
  2780. <diffuse>
  2781. <red>0</red>
  2782. <green>0</green>
  2783. <blue>0</blue>
  2784. </diffuse>
  2785. </animation>
  2786. <text>
  2787. <name>menu.flights.detail.distance</name>
  2788. <offsets>
  2789. <x-m>0.00665938</x-m>
  2790. <y-m>-0.0159867</y-m>
  2791. <z-m>-0.00182415</z-m>
  2792. </offsets>
  2793. <alignment>center-center</alignment>
  2794. <axis-alignment>yz-plane</axis-alignment>
  2795. <type type="string">text-value</type>
  2796. <property>/instrumentation/garmin196/menu_flights/ligne_selected/distance</property>
  2797. <font type="string">helvetica_bold.txf</font>
  2798. <character-size type="double">0.004</character-size>
  2799. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2800. <font-resolution>
  2801. <width type="int">32</width>
  2802. <height type="int">32</height>
  2803. </font-resolution>
  2804. </text>
  2805. <animation>
  2806. <type>material</type>
  2807. <object-name>menu.flights.detail.distance</object-name>
  2808. <ambient>
  2809. <red>0</red>
  2810. <green>0</green>
  2811. <blue>0</blue>
  2812. </ambient>
  2813. <diffuse>
  2814. <red>0</red>
  2815. <green>0</green>
  2816. <blue>0</blue>
  2817. </diffuse>
  2818. </animation>
  2819. <text>
  2820. <name>menu.flights.detail.duration</name>
  2821. <offsets>
  2822. <x-m>0.00665938</x-m>
  2823. <y-m>-0.0159867</y-m>
  2824. <z-m>-0.00682415</z-m>
  2825. </offsets>
  2826. <alignment>center-center</alignment>
  2827. <axis-alignment>yz-plane</axis-alignment>
  2828. <type type="string">text-value</type>
  2829. <property>/instrumentation/garmin196/menu_flights/ligne_selected/duration</property>
  2830. <font type="string">helvetica_bold.txf</font>
  2831. <character-size type="double">0.004</character-size>
  2832. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2833. <font-resolution>
  2834. <width type="int">32</width>
  2835. <height type="int">32</height>
  2836. </font-resolution>
  2837. </text>
  2838. <animation>
  2839. <type>material</type>
  2840. <object-name>menu.flights.detail.duration</object-name>
  2841. <ambient>
  2842. <red>0</red>
  2843. <green>0</green>
  2844. <blue>0</blue>
  2845. </ambient>
  2846. <diffuse>
  2847. <red>0</red>
  2848. <green>0</green>
  2849. <blue>0</blue>
  2850. </diffuse>
  2851. </animation>
  2852. <text>
  2853. <name>menu.flights.text0</name>
  2854. <offsets>
  2855. <x-m>0.00617611</x-m>
  2856. <y-m>-0.0384568</y-m>
  2857. <z-m>0.0214283</z-m>
  2858. </offsets>
  2859. <alignment>left-center</alignment>
  2860. <axis-alignment>yz-plane</axis-alignment>
  2861. <type type="string">text-value</type>
  2862. <property>/instrumentation/garmin196/menu_flights/ligne[0]/texte</property>
  2863. <font type="string">helvetica_bold.txf</font>
  2864. <character-size type="double">0.005</character-size>
  2865. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2866. <font-resolution>
  2867. <width type="int">32</width>
  2868. <height type="int">32</height>
  2869. </font-resolution>
  2870. </text>
  2871. <animation>
  2872. <type>material</type>
  2873. <object-name>menu.flights.text0</object-name>
  2874. <ambient>
  2875. <red>0</red>
  2876. <green>0</green>
  2877. <blue>0</blue>
  2878. </ambient>
  2879. <diffuse>
  2880. <red>0</red>
  2881. <green>0</green>
  2882. <blue>0</blue>
  2883. </diffuse>
  2884. <condition>
  2885. <not>
  2886. <equals>
  2887. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  2888. <value>0</value>
  2889. </equals>
  2890. </not>
  2891. </condition>
  2892. </animation>
  2893. <animation>
  2894. <type>material</type>
  2895. <object-name>menu.flights.text0</object-name>
  2896. <ambient>
  2897. <red>1</red>
  2898. <green>1</green>
  2899. <blue>1</blue>
  2900. </ambient>
  2901. <diffuse>
  2902. <red>1</red>
  2903. <green>1</green>
  2904. <blue>1</blue>
  2905. </diffuse>
  2906. <emission>
  2907. <blue> 1 </blue>
  2908. <red> 1 </red>
  2909. <green> 1 </green>
  2910. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  2911. </emission>
  2912. <condition>
  2913. <equals>
  2914. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  2915. <value>0</value>
  2916. </equals>
  2917. </condition>
  2918. </animation>
  2919. <text>
  2920. <name>menu.flights.text1</name>
  2921. <offsets>
  2922. <x-m>0.00617611</x-m>
  2923. <y-m>-0.0384568</y-m>
  2924. <z-m>0.0154283</z-m>
  2925. </offsets>
  2926. <alignment>left-center</alignment>
  2927. <axis-alignment>yz-plane</axis-alignment>
  2928. <type type="string">text-value</type>
  2929. <property>/instrumentation/garmin196/menu_flights/ligne[1]/texte</property>
  2930. <font type="string">helvetica_bold.txf</font>
  2931. <character-size type="double">0.005</character-size>
  2932. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  2933. <font-resolution>
  2934. <width type="int">32</width>
  2935. <height type="int">32</height>
  2936. </font-resolution>
  2937. </text>
  2938. <animation>
  2939. <type>material</type>
  2940. <object-name>menu.flights.text1</object-name>
  2941. <ambient>
  2942. <red>0</red>
  2943. <green>0</green>
  2944. <blue>0</blue>
  2945. </ambient>
  2946. <diffuse>
  2947. <red>0</red>
  2948. <green>0</green>
  2949. <blue>0</blue>
  2950. </diffuse>
  2951. <condition>
  2952. <not>
  2953. <equals>
  2954. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  2955. <value>1</value>
  2956. </equals>
  2957. </not>
  2958. </condition>
  2959. </animation>
  2960. <animation>
  2961. <type>material</type>
  2962. <object-name>menu.flights.text1</object-name>
  2963. <ambient>
  2964. <red>1</red>
  2965. <green>1</green>
  2966. <blue>1</blue>
  2967. </ambient>
  2968. <diffuse>
  2969. <red>1</red>
  2970. <green>1</green>
  2971. <blue>1</blue>
  2972. </diffuse>
  2973. <emission>
  2974. <blue> 1 </blue>
  2975. <red> 1 </red>
  2976. <green> 1 </green>
  2977. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  2978. </emission>
  2979. <condition>
  2980. <equals>
  2981. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  2982. <value>1</value>
  2983. </equals>
  2984. </condition>
  2985. </animation>
  2986. <text>
  2987. <name>menu.flights.text2</name>
  2988. <offsets>
  2989. <x-m>0.00617611</x-m>
  2990. <y-m>-0.0384568</y-m>
  2991. <z-m>0.0094283</z-m>
  2992. </offsets>
  2993. <alignment>left-center</alignment>
  2994. <axis-alignment>yz-plane</axis-alignment>
  2995. <type type="string">text-value</type>
  2996. <property>/instrumentation/garmin196/menu_flights/ligne[2]/texte</property>
  2997. <font type="string">helvetica_bold.txf</font>
  2998. <character-size type="double">0.005</character-size>
  2999. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  3000. <font-resolution>
  3001. <width type="int">32</width>
  3002. <height type="int">32</height>
  3003. </font-resolution>
  3004. </text>
  3005. <animation>
  3006. <type>material</type>
  3007. <object-name>menu.flights.text2</object-name>
  3008. <ambient>
  3009. <red>0</red>
  3010. <green>0</green>
  3011. <blue>0</blue>
  3012. </ambient>
  3013. <diffuse>
  3014. <red>0</red>
  3015. <green>0</green>
  3016. <blue>0</blue>
  3017. </diffuse>
  3018. <condition>
  3019. <not>
  3020. <equals>
  3021. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  3022. <value>2</value>
  3023. </equals>
  3024. </not>
  3025. </condition>
  3026. </animation>
  3027. <animation>
  3028. <type>material</type>
  3029. <object-name>menu.flights.text2</object-name>
  3030. <ambient>
  3031. <red>1</red>
  3032. <green>1</green>
  3033. <blue>1</blue>
  3034. </ambient>
  3035. <diffuse>
  3036. <red>1</red>
  3037. <green>1</green>
  3038. <blue>1</blue>
  3039. </diffuse>
  3040. <emission>
  3041. <blue> 1 </blue>
  3042. <red> 1 </red>
  3043. <green> 1 </green>
  3044. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  3045. </emission>
  3046. <condition>
  3047. <equals>
  3048. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  3049. <value>2</value>
  3050. </equals>
  3051. </condition>
  3052. </animation>
  3053. <text>
  3054. <name>menu.flights.text3</name>
  3055. <offsets>
  3056. <x-m>0.00617611</x-m>
  3057. <y-m>-0.0384568</y-m>
  3058. <z-m>0.0034283</z-m>
  3059. </offsets>
  3060. <alignment>left-center</alignment>
  3061. <axis-alignment>yz-plane</axis-alignment>
  3062. <type type="string">text-value</type>
  3063. <property>/instrumentation/garmin196/menu_flights/ligne[3]/texte</property>
  3064. <font type="string">helvetica_bold.txf</font>
  3065. <character-size type="double">0.005</character-size>
  3066. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  3067. <font-resolution>
  3068. <width type="int">32</width>
  3069. <height type="int">32</height>
  3070. </font-resolution>
  3071. </text>
  3072. <animation>
  3073. <type>material</type>
  3074. <object-name>menu.flights.text3</object-name>
  3075. <ambient>
  3076. <red>0</red>
  3077. <green>0</green>
  3078. <blue>0</blue>
  3079. </ambient>
  3080. <diffuse>
  3081. <red>0</red>
  3082. <green>0</green>
  3083. <blue>0</blue>
  3084. </diffuse>
  3085. <condition>
  3086. <not>
  3087. <equals>
  3088. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  3089. <value>3</value>
  3090. </equals>
  3091. </not>
  3092. </condition>
  3093. </animation>
  3094. <animation>
  3095. <type>material</type>
  3096. <object-name>menu.flights.text3</object-name>
  3097. <ambient>
  3098. <red>1</red>
  3099. <green>1</green>
  3100. <blue>1</blue>
  3101. </ambient>
  3102. <diffuse>
  3103. <red>1</red>
  3104. <green>1</green>
  3105. <blue>1</blue>
  3106. </diffuse>
  3107. <emission>
  3108. <blue> 1 </blue>
  3109. <red> 1 </red>
  3110. <green> 1 </green>
  3111. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  3112. </emission>
  3113. <condition>
  3114. <equals>
  3115. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  3116. <value>3</value>
  3117. </equals>
  3118. </condition>
  3119. </animation>
  3120. <text>
  3121. <name>menu.flights.text4</name>
  3122. <offsets>
  3123. <x-m>0.00617611</x-m>
  3124. <y-m>-0.0384568</y-m>
  3125. <z-m>-0.0025717</z-m>
  3126. </offsets>
  3127. <alignment>left-center</alignment>
  3128. <axis-alignment>yz-plane</axis-alignment>
  3129. <type type="string">text-value</type>
  3130. <property>/instrumentation/garmin196/menu_flights/ligne[4]/texte</property>
  3131. <font type="string">helvetica_bold.txf</font>
  3132. <character-size type="double">0.005</character-size>
  3133. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  3134. <font-resolution>
  3135. <width type="int">32</width>
  3136. <height type="int">32</height>
  3137. </font-resolution>
  3138. </text>
  3139. <animation>
  3140. <type>material</type>
  3141. <object-name>menu.flights.text4</object-name>
  3142. <ambient>
  3143. <red>0</red>
  3144. <green>0</green>
  3145. <blue>0</blue>
  3146. </ambient>
  3147. <diffuse>
  3148. <red>0</red>
  3149. <green>0</green>
  3150. <blue>0</blue>
  3151. </diffuse>
  3152. <condition>
  3153. <not>
  3154. <equals>
  3155. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  3156. <value>4</value>
  3157. </equals>
  3158. </not>
  3159. </condition>
  3160. </animation>
  3161. <animation>
  3162. <type>material</type>
  3163. <object-name>menu.flights.text4</object-name>
  3164. <ambient>
  3165. <red>1</red>
  3166. <green>1</green>
  3167. <blue>1</blue>
  3168. </ambient>
  3169. <diffuse>
  3170. <red>1</red>
  3171. <green>1</green>
  3172. <blue>1</blue>
  3173. </diffuse>
  3174. <emission>
  3175. <blue> 1 </blue>
  3176. <red> 1 </red>
  3177. <green> 1 </green>
  3178. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  3179. </emission>
  3180. <condition>
  3181. <equals>
  3182. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  3183. <value>4</value>
  3184. </equals>
  3185. </condition>
  3186. </animation>
  3187. <text>
  3188. <name>menu.flights.text5</name>
  3189. <offsets>
  3190. <x-m>0.00617611</x-m>
  3191. <y-m>-0.0384568</y-m>
  3192. <z-m>-0.0085717</z-m>
  3193. </offsets>
  3194. <alignment>left-center</alignment>
  3195. <axis-alignment>yz-plane</axis-alignment>
  3196. <type type="string">text-value</type>
  3197. <property>/instrumentation/garmin196/menu_flights/ligne[5]/texte</property>
  3198. <font type="string">helvetica_bold.txf</font>
  3199. <character-size type="double">0.005</character-size>
  3200. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  3201. <font-resolution>
  3202. <width type="int">32</width>
  3203. <height type="int">32</height>
  3204. </font-resolution>
  3205. </text>
  3206. <animation>
  3207. <type>material</type>
  3208. <object-name>menu.flights.text5</object-name>
  3209. <ambient>
  3210. <red>0</red>
  3211. <green>0</green>
  3212. <blue>0</blue>
  3213. </ambient>
  3214. <diffuse>
  3215. <red>0</red>
  3216. <green>0</green>
  3217. <blue>0</blue>
  3218. </diffuse>
  3219. <condition>
  3220. <not>
  3221. <equals>
  3222. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  3223. <value>5</value>
  3224. </equals>
  3225. </not>
  3226. </condition>
  3227. </animation>
  3228. <animation>
  3229. <type>material</type>
  3230. <object-name>menu.flights.text5</object-name>
  3231. <ambient>
  3232. <red>1</red>
  3233. <green>1</green>
  3234. <blue>1</blue>
  3235. </ambient>
  3236. <diffuse>
  3237. <red>1</red>
  3238. <green>1</green>
  3239. <blue>1</blue>
  3240. </diffuse>
  3241. <emission>
  3242. <blue> 1 </blue>
  3243. <red> 1 </red>
  3244. <green> 1 </green>
  3245. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  3246. </emission>
  3247. <condition>
  3248. <equals>
  3249. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  3250. <value>5</value>
  3251. </equals>
  3252. </condition>
  3253. </animation>
  3254. <text>
  3255. <name>menu.flights.text6</name>
  3256. <offsets>
  3257. <x-m>0.00617611</x-m>
  3258. <y-m>-0.0384568</y-m>
  3259. <z-m>-0.0145717</z-m>
  3260. </offsets>
  3261. <alignment>left-center</alignment>
  3262. <axis-alignment>yz-plane</axis-alignment>
  3263. <type type="string">text-value</type>
  3264. <property>/instrumentation/garmin196/menu_flights/ligne[6]/texte</property>
  3265. <font type="string">helvetica_bold.txf</font>
  3266. <character-size type="double">0.005</character-size>
  3267. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  3268. <font-resolution>
  3269. <width type="int">32</width>
  3270. <height type="int">32</height>
  3271. </font-resolution>
  3272. </text>
  3273. <animation>
  3274. <type>material</type>
  3275. <object-name>menu.flights.text6</object-name>
  3276. <ambient>
  3277. <red>0</red>
  3278. <green>0</green>
  3279. <blue>0</blue>
  3280. </ambient>
  3281. <diffuse>
  3282. <red>0</red>
  3283. <green>0</green>
  3284. <blue>0</blue>
  3285. </diffuse>
  3286. <condition>
  3287. <not>
  3288. <equals>
  3289. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  3290. <value>6</value>
  3291. </equals>
  3292. </not>
  3293. </condition>
  3294. </animation>
  3295. <animation>
  3296. <type>material</type>
  3297. <object-name>menu.flights.text6</object-name>
  3298. <ambient>
  3299. <red>1</red>
  3300. <green>1</green>
  3301. <blue>1</blue>
  3302. </ambient>
  3303. <diffuse>
  3304. <red>1</red>
  3305. <green>1</green>
  3306. <blue>1</blue>
  3307. </diffuse>
  3308. <emission>
  3309. <blue> 1 </blue>
  3310. <red> 1 </red>
  3311. <green> 1 </green>
  3312. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  3313. </emission>
  3314. <condition>
  3315. <equals>
  3316. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  3317. <value>6</value>
  3318. </equals>
  3319. </condition>
  3320. </animation>
  3321. <text>
  3322. <name>menu.flights.text7</name>
  3323. <offsets>
  3324. <x-m>0.00617611</x-m>
  3325. <y-m>-0.0384568</y-m>
  3326. <z-m>-0.0205717</z-m>
  3327. </offsets>
  3328. <alignment>left-center</alignment>
  3329. <axis-alignment>yz-plane</axis-alignment>
  3330. <type type="string">text-value</type>
  3331. <property>/instrumentation/garmin196/menu_flights/ligne[7]/texte</property>
  3332. <font type="string">helvetica_bold.txf</font>
  3333. <character-size type="double">0.005</character-size>
  3334. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  3335. <font-resolution>
  3336. <width type="int">32</width>
  3337. <height type="int">32</height>
  3338. </font-resolution>
  3339. </text>
  3340. <animation>
  3341. <type>material</type>
  3342. <object-name>menu.flights.text7</object-name>
  3343. <ambient>
  3344. <red>0</red>
  3345. <green>0</green>
  3346. <blue>0</blue>
  3347. </ambient>
  3348. <diffuse>
  3349. <red>0</red>
  3350. <green>0</green>
  3351. <blue>0</blue>
  3352. </diffuse>
  3353. <condition>
  3354. <not>
  3355. <equals>
  3356. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  3357. <value>7</value>
  3358. </equals>
  3359. </not>
  3360. </condition>
  3361. </animation>
  3362. <animation>
  3363. <type>material</type>
  3364. <object-name>menu.flights.text7</object-name>
  3365. <ambient>
  3366. <red>1</red>
  3367. <green>1</green>
  3368. <blue>1</blue>
  3369. </ambient>
  3370. <diffuse>
  3371. <red>1</red>
  3372. <green>1</green>
  3373. <blue>1</blue>
  3374. </diffuse>
  3375. <emission>
  3376. <blue> 1 </blue>
  3377. <red> 1 </red>
  3378. <green> 1 </green>
  3379. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  3380. </emission>
  3381. <condition>
  3382. <equals>
  3383. <property>/instrumentation/garmin196/menu_flights/no_ligne_selected</property>
  3384. <value>7</value>
  3385. </equals>
  3386. </condition>
  3387. </animation>
  3388. <!--Menu routes-->
  3389. <animation>
  3390. <type>select</type>
  3391. <object-name>menu.routes.list</object-name>
  3392. <object-name>menu.routes.list.text0</object-name>
  3393. <object-name>menu.routes.list.text1</object-name>
  3394. <object-name>menu.routes.list.text2</object-name>
  3395. <object-name>menu.routes.list.text3</object-name>
  3396. <object-name>menu.routes.list.text4</object-name>
  3397. <object-name>menu.routes.list.text5</object-name>
  3398. <object-name>menu.routes.list.text6</object-name>
  3399. <object-name>menu.routes.list.text7</object-name>
  3400. <object-name>menu.routes.list.text8</object-name>
  3401. <object-name>menu.routes.list.text9</object-name>
  3402. <object-name>menu.routes.list.text10</object-name>
  3403. <condition>
  3404. <or>
  3405. <equals>
  3406. <property>/instrumentation/garmin196/status</property>
  3407. <value>120</value>
  3408. </equals>
  3409. <equals>
  3410. <property>/instrumentation/garmin196/status</property>
  3411. <value>121</value>
  3412. </equals>
  3413. </or>
  3414. </condition>
  3415. </animation>
  3416. <animation>
  3417. <type>select</type>
  3418. <object-name>menu.routes.list.mask</object-name>
  3419. <condition>
  3420. <equals>
  3421. <property>/instrumentation/garmin196/status</property>
  3422. <value>121</value>
  3423. </equals>
  3424. </condition>
  3425. </animation>
  3426. <animation>
  3427. <type>select</type>
  3428. <object-name>menu.routes.fpl.loaded</object-name>
  3429. <condition>
  3430. <property>/instrumentation/garmin196/menu_routes/fpl-loaded</property>
  3431. </condition>
  3432. </animation>
  3433. <animation>
  3434. <type>translate</type>
  3435. <object-name>menu.routes.list.mask</object-name>
  3436. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3437. <factor>-0.0045</factor>
  3438. <axis>
  3439. <x> 0 </x>
  3440. <y> 0 </y>
  3441. <z> 1 </z>
  3442. </axis>
  3443. </animation>
  3444. <text>
  3445. <name>menu.routes.list.text0</name>
  3446. <offsets>
  3447. <x-m>0.00617611</x-m>
  3448. <y-m>-0.038322</y-m>
  3449. <z-m>0.0225047</z-m>
  3450. </offsets>
  3451. <alignment>left-center</alignment>
  3452. <axis-alignment>yz-plane</axis-alignment>
  3453. <type type="string">text-value</type>
  3454. <property>/instrumentation/garmin196/menu_routes/route[0]/texte</property>
  3455. <font type="string">helvetica_bold.txf</font>
  3456. <character-size type="double">0.005</character-size>
  3457. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  3458. <font-resolution>
  3459. <width type="int">32</width>
  3460. <height type="int">32</height>
  3461. </font-resolution>
  3462. </text>
  3463. <animation>
  3464. <type>material</type>
  3465. <object-name>menu.routes.list.text0</object-name>
  3466. <ambient>
  3467. <red>0</red>
  3468. <green>0</green>
  3469. <blue>0</blue>
  3470. </ambient>
  3471. <diffuse>
  3472. <red>0</red>
  3473. <green>0</green>
  3474. <blue>0</blue>
  3475. </diffuse>
  3476. <condition>
  3477. <not>
  3478. <equals>
  3479. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3480. <value>0</value>
  3481. </equals>
  3482. </not>
  3483. </condition>
  3484. </animation>
  3485. <animation>
  3486. <type>material</type>
  3487. <object-name>menu.routes.list.text0</object-name>
  3488. <ambient>
  3489. <red>1</red>
  3490. <green>1</green>
  3491. <blue>1</blue>
  3492. </ambient>
  3493. <diffuse>
  3494. <red>1</red>
  3495. <green>1</green>
  3496. <blue>1</blue>
  3497. </diffuse>
  3498. <emission>
  3499. <blue> 1 </blue>
  3500. <red> 1 </red>
  3501. <green> 1 </green>
  3502. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  3503. </emission>
  3504. <condition>
  3505. <equals>
  3506. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3507. <value>0</value>
  3508. </equals>
  3509. </condition>
  3510. </animation>
  3511. <text>
  3512. <name>menu.routes.list.text1</name>
  3513. <offsets>
  3514. <x-m>0.00617611</x-m>
  3515. <y-m>-0.038322</y-m>
  3516. <z-m>0.0180047</z-m>
  3517. </offsets>
  3518. <alignment>left-center</alignment>
  3519. <axis-alignment>yz-plane</axis-alignment>
  3520. <type type="string">text-value</type>
  3521. <property>/instrumentation/garmin196/menu_routes/route[1]/texte</property>
  3522. <font type="string">helvetica_bold.txf</font>
  3523. <character-size type="double">0.005</character-size>
  3524. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  3525. <font-resolution>
  3526. <width type="int">32</width>
  3527. <height type="int">32</height>
  3528. </font-resolution>
  3529. </text>
  3530. <animation>
  3531. <type>material</type>
  3532. <object-name>menu.routes.list.text1</object-name>
  3533. <ambient>
  3534. <red>0</red>
  3535. <green>0</green>
  3536. <blue>0</blue>
  3537. </ambient>
  3538. <diffuse>
  3539. <red>0</red>
  3540. <green>0</green>
  3541. <blue>0</blue>
  3542. </diffuse>
  3543. <condition>
  3544. <not>
  3545. <equals>
  3546. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3547. <value>1</value>
  3548. </equals>
  3549. </not>
  3550. </condition>
  3551. </animation>
  3552. <animation>
  3553. <type>material</type>
  3554. <object-name>menu.routes.list.text1</object-name>
  3555. <ambient>
  3556. <red>1</red>
  3557. <green>1</green>
  3558. <blue>1</blue>
  3559. </ambient>
  3560. <diffuse>
  3561. <red>1</red>
  3562. <green>1</green>
  3563. <blue>1</blue>
  3564. </diffuse>
  3565. <emission>
  3566. <blue> 1 </blue>
  3567. <red> 1 </red>
  3568. <green> 1 </green>
  3569. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  3570. </emission>
  3571. <condition>
  3572. <equals>
  3573. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3574. <value>1</value>
  3575. </equals>
  3576. </condition>
  3577. </animation>
  3578. <text>
  3579. <name>menu.routes.list.text2</name>
  3580. <offsets>
  3581. <x-m>0.00617611</x-m>
  3582. <y-m>-0.038322</y-m>
  3583. <z-m>0.0135047</z-m>
  3584. </offsets>
  3585. <alignment>left-center</alignment>
  3586. <axis-alignment>yz-plane</axis-alignment>
  3587. <type type="string">text-value</type>
  3588. <property>/instrumentation/garmin196/menu_routes/route[2]/texte</property>
  3589. <font type="string">helvetica_bold.txf</font>
  3590. <character-size type="double">0.005</character-size>
  3591. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  3592. <font-resolution>
  3593. <width type="int">32</width>
  3594. <height type="int">32</height>
  3595. </font-resolution>
  3596. </text>
  3597. <animation>
  3598. <type>material</type>
  3599. <object-name>menu.routes.list.text2</object-name>
  3600. <ambient>
  3601. <red>0</red>
  3602. <green>0</green>
  3603. <blue>0</blue>
  3604. </ambient>
  3605. <diffuse>
  3606. <red>0</red>
  3607. <green>0</green>
  3608. <blue>0</blue>
  3609. </diffuse>
  3610. <condition>
  3611. <not>
  3612. <equals>
  3613. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3614. <value>2</value>
  3615. </equals>
  3616. </not>
  3617. </condition>
  3618. </animation>
  3619. <animation>
  3620. <type>material</type>
  3621. <object-name>menu.routes.list.text2</object-name>
  3622. <ambient>
  3623. <red>1</red>
  3624. <green>1</green>
  3625. <blue>1</blue>
  3626. </ambient>
  3627. <diffuse>
  3628. <red>1</red>
  3629. <green>1</green>
  3630. <blue>1</blue>
  3631. </diffuse>
  3632. <emission>
  3633. <blue> 1 </blue>
  3634. <red> 1 </red>
  3635. <green> 1 </green>
  3636. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  3637. </emission>
  3638. <condition>
  3639. <equals>
  3640. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3641. <value>2</value>
  3642. </equals>
  3643. </condition>
  3644. </animation>
  3645. <text>
  3646. <name>menu.routes.list.text3</name>
  3647. <offsets>
  3648. <x-m>0.00617611</x-m>
  3649. <y-m>-0.038322</y-m>
  3650. <z-m>0.0090047</z-m>
  3651. </offsets>
  3652. <alignment>left-center</alignment>
  3653. <axis-alignment>yz-plane</axis-alignment>
  3654. <type type="string">text-value</type>
  3655. <property>/instrumentation/garmin196/menu_routes/route[3]/texte</property>
  3656. <font type="string">helvetica_bold.txf</font>
  3657. <character-size type="double">0.005</character-size>
  3658. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  3659. <font-resolution>
  3660. <width type="int">32</width>
  3661. <height type="int">32</height>
  3662. </font-resolution>
  3663. </text>
  3664. <animation>
  3665. <type>material</type>
  3666. <object-name>menu.routes.list.text3</object-name>
  3667. <ambient>
  3668. <red>0</red>
  3669. <green>0</green>
  3670. <blue>0</blue>
  3671. </ambient>
  3672. <diffuse>
  3673. <red>0</red>
  3674. <green>0</green>
  3675. <blue>0</blue>
  3676. </diffuse>
  3677. <condition>
  3678. <not>
  3679. <equals>
  3680. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3681. <value>3</value>
  3682. </equals>
  3683. </not>
  3684. </condition>
  3685. </animation>
  3686. <animation>
  3687. <type>material</type>
  3688. <object-name>menu.routes.list.text3</object-name>
  3689. <ambient>
  3690. <red>1</red>
  3691. <green>1</green>
  3692. <blue>1</blue>
  3693. </ambient>
  3694. <diffuse>
  3695. <red>1</red>
  3696. <green>1</green>
  3697. <blue>1</blue>
  3698. </diffuse>
  3699. <emission>
  3700. <blue> 1 </blue>
  3701. <red> 1 </red>
  3702. <green> 1 </green>
  3703. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  3704. </emission>
  3705. <condition>
  3706. <equals>
  3707. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3708. <value>3</value>
  3709. </equals>
  3710. </condition>
  3711. </animation>
  3712. <text>
  3713. <name>menu.routes.list.text4</name>
  3714. <offsets>
  3715. <x-m>0.00617611</x-m>
  3716. <y-m>-0.038322</y-m>
  3717. <z-m>0.0045047</z-m>
  3718. </offsets>
  3719. <alignment>left-center</alignment>
  3720. <axis-alignment>yz-plane</axis-alignment>
  3721. <type type="string">text-value</type>
  3722. <property>/instrumentation/garmin196/menu_routes/route[4]/texte</property>
  3723. <font type="string">helvetica_bold.txf</font>
  3724. <character-size type="double">0.005</character-size>
  3725. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  3726. <font-resolution>
  3727. <width type="int">32</width>
  3728. <height type="int">32</height>
  3729. </font-resolution>
  3730. </text>
  3731. <animation>
  3732. <type>material</type>
  3733. <object-name>menu.routes.list.text4</object-name>
  3734. <ambient>
  3735. <red>0</red>
  3736. <green>0</green>
  3737. <blue>0</blue>
  3738. </ambient>
  3739. <diffuse>
  3740. <red>0</red>
  3741. <green>0</green>
  3742. <blue>0</blue>
  3743. </diffuse>
  3744. <condition>
  3745. <not>
  3746. <equals>
  3747. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3748. <value>4</value>
  3749. </equals>
  3750. </not>
  3751. </condition>
  3752. </animation>
  3753. <animation>
  3754. <type>material</type>
  3755. <object-name>menu.routes.list.text4</object-name>
  3756. <ambient>
  3757. <red>1</red>
  3758. <green>1</green>
  3759. <blue>1</blue>
  3760. </ambient>
  3761. <diffuse>
  3762. <red>1</red>
  3763. <green>1</green>
  3764. <blue>1</blue>
  3765. </diffuse>
  3766. <emission>
  3767. <blue> 1 </blue>
  3768. <red> 1 </red>
  3769. <green> 1 </green>
  3770. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  3771. </emission>
  3772. <condition>
  3773. <equals>
  3774. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3775. <value>4</value>
  3776. </equals>
  3777. </condition>
  3778. </animation>
  3779. <text>
  3780. <name>menu.routes.list.text5</name>
  3781. <offsets>
  3782. <x-m>0.00617611</x-m>
  3783. <y-m>-0.038322</y-m>
  3784. <z-m>0.0000047</z-m>
  3785. </offsets>
  3786. <alignment>left-center</alignment>
  3787. <axis-alignment>yz-plane</axis-alignment>
  3788. <type type="string">text-value</type>
  3789. <property>/instrumentation/garmin196/menu_routes/route[5]/texte</property>
  3790. <font type="string">helvetica_bold.txf</font>
  3791. <character-size type="double">0.005</character-size>
  3792. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  3793. <font-resolution>
  3794. <width type="int">32</width>
  3795. <height type="int">32</height>
  3796. </font-resolution>
  3797. </text>
  3798. <animation>
  3799. <type>material</type>
  3800. <object-name>menu.routes.list.text5</object-name>
  3801. <ambient>
  3802. <red>0</red>
  3803. <green>0</green>
  3804. <blue>0</blue>
  3805. </ambient>
  3806. <diffuse>
  3807. <red>0</red>
  3808. <green>0</green>
  3809. <blue>0</blue>
  3810. </diffuse>
  3811. <condition>
  3812. <not>
  3813. <equals>
  3814. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3815. <value>5</value>
  3816. </equals>
  3817. </not>
  3818. </condition>
  3819. </animation>
  3820. <animation>
  3821. <type>material</type>
  3822. <object-name>menu.routes.list.text5</object-name>
  3823. <ambient>
  3824. <red>1</red>
  3825. <green>1</green>
  3826. <blue>1</blue>
  3827. </ambient>
  3828. <diffuse>
  3829. <red>1</red>
  3830. <green>1</green>
  3831. <blue>1</blue>
  3832. </diffuse>
  3833. <emission>
  3834. <blue> 1 </blue>
  3835. <red> 1 </red>
  3836. <green> 1 </green>
  3837. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  3838. </emission>
  3839. <condition>
  3840. <equals>
  3841. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3842. <value>5</value>
  3843. </equals>
  3844. </condition>
  3845. </animation>
  3846. <text>
  3847. <name>menu.routes.list.text6</name>
  3848. <offsets>
  3849. <x-m>0.00617611</x-m>
  3850. <y-m>-0.038322</y-m>
  3851. <z-m>-0.0044953</z-m>
  3852. </offsets>
  3853. <alignment>left-center</alignment>
  3854. <axis-alignment>yz-plane</axis-alignment>
  3855. <type type="string">text-value</type>
  3856. <property>/instrumentation/garmin196/menu_routes/route[6]/texte</property>
  3857. <font type="string">helvetica_bold.txf</font>
  3858. <character-size type="double">0.005</character-size>
  3859. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  3860. <font-resolution>
  3861. <width type="int">32</width>
  3862. <height type="int">32</height>
  3863. </font-resolution>
  3864. </text>
  3865. <animation>
  3866. <type>material</type>
  3867. <object-name>menu.routes.list.text6</object-name>
  3868. <ambient>
  3869. <red>0</red>
  3870. <green>0</green>
  3871. <blue>0</blue>
  3872. </ambient>
  3873. <diffuse>
  3874. <red>0</red>
  3875. <green>0</green>
  3876. <blue>0</blue>
  3877. </diffuse>
  3878. <condition>
  3879. <not>
  3880. <equals>
  3881. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3882. <value>6</value>
  3883. </equals>
  3884. </not>
  3885. </condition>
  3886. </animation>
  3887. <animation>
  3888. <type>material</type>
  3889. <object-name>menu.routes.list.text6</object-name>
  3890. <ambient>
  3891. <red>1</red>
  3892. <green>1</green>
  3893. <blue>1</blue>
  3894. </ambient>
  3895. <diffuse>
  3896. <red>1</red>
  3897. <green>1</green>
  3898. <blue>1</blue>
  3899. </diffuse>
  3900. <emission>
  3901. <blue> 1 </blue>
  3902. <red> 1 </red>
  3903. <green> 1 </green>
  3904. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  3905. </emission>
  3906. <condition>
  3907. <equals>
  3908. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3909. <value>6</value>
  3910. </equals>
  3911. </condition>
  3912. </animation>
  3913. <text>
  3914. <name>menu.routes.list.text7</name>
  3915. <offsets>
  3916. <x-m>0.00617611</x-m>
  3917. <y-m>-0.038322</y-m>
  3918. <z-m>-0.0089953</z-m>
  3919. </offsets>
  3920. <alignment>left-center</alignment>
  3921. <axis-alignment>yz-plane</axis-alignment>
  3922. <type type="string">text-value</type>
  3923. <property>/instrumentation/garmin196/menu_routes/route[7]/texte</property>
  3924. <font type="string">helvetica_bold.txf</font>
  3925. <character-size type="double">0.005</character-size>
  3926. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  3927. <font-resolution>
  3928. <width type="int">32</width>
  3929. <height type="int">32</height>
  3930. </font-resolution>
  3931. </text>
  3932. <animation>
  3933. <type>material</type>
  3934. <object-name>menu.routes.list.text7</object-name>
  3935. <ambient>
  3936. <red>0</red>
  3937. <green>0</green>
  3938. <blue>0</blue>
  3939. </ambient>
  3940. <diffuse>
  3941. <red>0</red>
  3942. <green>0</green>
  3943. <blue>0</blue>
  3944. </diffuse>
  3945. <condition>
  3946. <not>
  3947. <equals>
  3948. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3949. <value>7</value>
  3950. </equals>
  3951. </not>
  3952. </condition>
  3953. </animation>
  3954. <animation>
  3955. <type>material</type>
  3956. <object-name>menu.routes.list.text7</object-name>
  3957. <ambient>
  3958. <red>1</red>
  3959. <green>1</green>
  3960. <blue>1</blue>
  3961. </ambient>
  3962. <diffuse>
  3963. <red>1</red>
  3964. <green>1</green>
  3965. <blue>1</blue>
  3966. </diffuse>
  3967. <emission>
  3968. <blue> 1 </blue>
  3969. <red> 1 </red>
  3970. <green> 1 </green>
  3971. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  3972. </emission>
  3973. <condition>
  3974. <equals>
  3975. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  3976. <value>7</value>
  3977. </equals>
  3978. </condition>
  3979. </animation>
  3980. <text>
  3981. <name>menu.routes.list.text8</name>
  3982. <offsets>
  3983. <x-m>0.00617611</x-m>
  3984. <y-m>-0.038322</y-m>
  3985. <z-m>-0.0134953</z-m>
  3986. </offsets>
  3987. <alignment>left-center</alignment>
  3988. <axis-alignment>yz-plane</axis-alignment>
  3989. <type type="string">text-value</type>
  3990. <property>/instrumentation/garmin196/menu_routes/route[8]/texte</property>
  3991. <font type="string">helvetica_bold.txf</font>
  3992. <character-size type="double">0.005</character-size>
  3993. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  3994. <font-resolution>
  3995. <width type="int">32</width>
  3996. <height type="int">32</height>
  3997. </font-resolution>
  3998. </text>
  3999. <animation>
  4000. <type>material</type>
  4001. <object-name>menu.routes.list.text8</object-name>
  4002. <ambient>
  4003. <red>0</red>
  4004. <green>0</green>
  4005. <blue>0</blue>
  4006. </ambient>
  4007. <diffuse>
  4008. <red>0</red>
  4009. <green>0</green>
  4010. <blue>0</blue>
  4011. </diffuse>
  4012. <condition>
  4013. <not>
  4014. <equals>
  4015. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  4016. <value>8</value>
  4017. </equals>
  4018. </not>
  4019. </condition>
  4020. </animation>
  4021. <animation>
  4022. <type>material</type>
  4023. <object-name>menu.routes.list.text8</object-name>
  4024. <ambient>
  4025. <red>1</red>
  4026. <green>1</green>
  4027. <blue>1</blue>
  4028. </ambient>
  4029. <diffuse>
  4030. <red>1</red>
  4031. <green>1</green>
  4032. <blue>1</blue>
  4033. </diffuse>
  4034. <emission>
  4035. <blue> 1 </blue>
  4036. <red> 1 </red>
  4037. <green> 1 </green>
  4038. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  4039. </emission>
  4040. <condition>
  4041. <equals>
  4042. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  4043. <value>8</value>
  4044. </equals>
  4045. </condition>
  4046. </animation>
  4047. <text>
  4048. <name>menu.routes.list.text9</name>
  4049. <offsets>
  4050. <x-m>0.00617611</x-m>
  4051. <y-m>-0.038322</y-m>
  4052. <z-m>-0.0179953</z-m>
  4053. </offsets>
  4054. <alignment>left-center</alignment>
  4055. <axis-alignment>yz-plane</axis-alignment>
  4056. <type type="string">text-value</type>
  4057. <property>/instrumentation/garmin196/menu_routes/route[9]/texte</property>
  4058. <font type="string">helvetica_bold.txf</font>
  4059. <character-size type="double">0.005</character-size>
  4060. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  4061. <font-resolution>
  4062. <width type="int">32</width>
  4063. <height type="int">32</height>
  4064. </font-resolution>
  4065. </text>
  4066. <animation>
  4067. <type>material</type>
  4068. <object-name>menu.routes.list.text9</object-name>
  4069. <ambient>
  4070. <red>0</red>
  4071. <green>0</green>
  4072. <blue>0</blue>
  4073. </ambient>
  4074. <diffuse>
  4075. <red>0</red>
  4076. <green>0</green>
  4077. <blue>0</blue>
  4078. </diffuse>
  4079. <condition>
  4080. <not>
  4081. <equals>
  4082. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  4083. <value>9</value>
  4084. </equals>
  4085. </not>
  4086. </condition>
  4087. </animation>
  4088. <animation>
  4089. <type>material</type>
  4090. <object-name>menu.routes.list.text9</object-name>
  4091. <ambient>
  4092. <red>1</red>
  4093. <green>1</green>
  4094. <blue>1</blue>
  4095. </ambient>
  4096. <diffuse>
  4097. <red>1</red>
  4098. <green>1</green>
  4099. <blue>1</blue>
  4100. </diffuse>
  4101. <emission>
  4102. <blue> 1 </blue>
  4103. <red> 1 </red>
  4104. <green> 1 </green>
  4105. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  4106. </emission>
  4107. <condition>
  4108. <equals>
  4109. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  4110. <value>9</value>
  4111. </equals>
  4112. </condition>
  4113. </animation>
  4114. <text>
  4115. <name>menu.routes.list.text10</name>
  4116. <offsets>
  4117. <x-m>0.00617611</x-m>
  4118. <y-m>-0.038322</y-m>
  4119. <z-m>-0.0224953</z-m>
  4120. </offsets>
  4121. <alignment>left-center</alignment>
  4122. <axis-alignment>yz-plane</axis-alignment>
  4123. <type type="string">text-value</type>
  4124. <property>/instrumentation/garmin196/menu_routes/route[10]/texte</property>
  4125. <font type="string">helvetica_bold.txf</font>
  4126. <character-size type="double">0.005</character-size>
  4127. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  4128. <font-resolution>
  4129. <width type="int">32</width>
  4130. <height type="int">32</height>
  4131. </font-resolution>
  4132. </text>
  4133. <animation>
  4134. <type>material</type>
  4135. <object-name>menu.routes.list.text10</object-name>
  4136. <ambient>
  4137. <red>0</red>
  4138. <green>0</green>
  4139. <blue>0</blue>
  4140. </ambient>
  4141. <diffuse>
  4142. <red>0</red>
  4143. <green>0</green>
  4144. <blue>0</blue>
  4145. </diffuse>
  4146. <condition>
  4147. <not>
  4148. <equals>
  4149. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  4150. <value>10</value>
  4151. </equals>
  4152. </not>
  4153. </condition>
  4154. </animation>
  4155. <animation>
  4156. <type>material</type>
  4157. <object-name>menu.routes.list.text10</object-name>
  4158. <ambient>
  4159. <red>1</red>
  4160. <green>1</green>
  4161. <blue>1</blue>
  4162. </ambient>
  4163. <diffuse>
  4164. <red>1</red>
  4165. <green>1</green>
  4166. <blue>1</blue>
  4167. </diffuse>
  4168. <emission>
  4169. <blue> 1 </blue>
  4170. <red> 1 </red>
  4171. <green> 1 </green>
  4172. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  4173. </emission>
  4174. <condition>
  4175. <equals>
  4176. <property>/instrumentation/garmin196/menu_routes/no_ligne_selected</property>
  4177. <value>10</value>
  4178. </equals>
  4179. </condition>
  4180. </animation>
  4181. <animation>
  4182. <type>select</type>
  4183. <object-name>menu.routes.wpt.jump</object-name>
  4184. <condition>
  4185. <property>/instrumentation/garmin196/menu_routes/waypoint-jump</property>
  4186. </condition>
  4187. </animation>
  4188. <animation>
  4189. <type>select</type>
  4190. <object-name>menu.routes.wpt.reached</object-name>
  4191. <condition>
  4192. <property>/instrumentation/garmin196/menu_routes/last-wp-reached</property>
  4193. </condition>
  4194. </animation>
  4195. <animation>
  4196. <type>select</type>
  4197. <object-name>menu.routes.detail</object-name>
  4198. <object-name>menu.routes.detail.mask</object-name>
  4199. <object-name>menu.routes.detail.text</object-name>
  4200. <object-name>menu.routes.detail.text0</object-name>
  4201. <object-name>menu.routes.detail.text1</object-name>
  4202. <object-name>menu.routes.detail.text2</object-name>
  4203. <object-name>menu.routes.detail.text3</object-name>
  4204. <object-name>menu.routes.detail.text4</object-name>
  4205. <object-name>menu.routes.detail.text5</object-name>
  4206. <object-name>menu.routes.detail.text6</object-name>
  4207. <object-name>menu.routes.detail.text7</object-name>
  4208. <object-name>menu.routes.detail.text8</object-name>
  4209. <object-name>menu.routes.detail.text9</object-name>
  4210. <condition>
  4211. <equals>
  4212. <property>/instrumentation/garmin196/status</property>
  4213. <value>122</value>
  4214. </equals>
  4215. </condition>
  4216. </animation>
  4217. <animation>
  4218. <type>translate</type>
  4219. <object-name>menu.routes.detail.mask</object-name>
  4220. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4221. <factor>-0.004</factor>
  4222. <axis>
  4223. <x> 0 </x>
  4224. <y> 0 </y>
  4225. <z> 1 </z>
  4226. </axis>
  4227. </animation>
  4228. <text>
  4229. <name>menu.routes.detail.text</name>
  4230. <offsets>
  4231. <x-m>0.00617611</x-m>
  4232. <y-m>-0.0107575</y-m>
  4233. <z-m>-0.022908</z-m>
  4234. </offsets>
  4235. <alignment>left-center</alignment>
  4236. <axis-alignment>yz-plane</axis-alignment>
  4237. <type type="string">text-value</type>
  4238. <property>/instrumentation/garmin196/menu_routes/total/texte</property>
  4239. <font type="string">helvetica_bold.txf</font>
  4240. <character-size type="double">0.005</character-size>
  4241. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  4242. <font-resolution>
  4243. <width type="int">32</width>
  4244. <height type="int">32</height>
  4245. </font-resolution>
  4246. </text>
  4247. <animation>
  4248. <type>material</type>
  4249. <object-name>menu.routes.detail.text</object-name>
  4250. <ambient>
  4251. <red>0</red>
  4252. <green>0</green>
  4253. <blue>0</blue>
  4254. </ambient>
  4255. <diffuse>
  4256. <red>0</red>
  4257. <green>0</green>
  4258. <blue>0</blue>
  4259. </diffuse>
  4260. </animation>
  4261. <text>
  4262. <name>menu.routes.detail.text0</name>
  4263. <offsets>
  4264. <x-m>0.00617611</x-m>
  4265. <y-m>-0.038322</y-m>
  4266. <z-m>0.0186051</z-m>
  4267. </offsets>
  4268. <alignment>left-center</alignment>
  4269. <axis-alignment>yz-plane</axis-alignment>
  4270. <type type="string">text-value</type>
  4271. <property>/instrumentation/garmin196/menu_routes/point[0]/texte</property>
  4272. <font type="string">helvetica_bold.txf</font>
  4273. <character-size type="double">0.005</character-size>
  4274. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  4275. <font-resolution>
  4276. <width type="int">32</width>
  4277. <height type="int">32</height>
  4278. </font-resolution>
  4279. </text>
  4280. <animation>
  4281. <type>material</type>
  4282. <object-name>menu.routes.detail.text0</object-name>
  4283. <ambient>
  4284. <red>0</red>
  4285. <green>0</green>
  4286. <blue>0</blue>
  4287. </ambient>
  4288. <diffuse>
  4289. <red>0</red>
  4290. <green>0</green>
  4291. <blue>0</blue>
  4292. </diffuse>
  4293. <condition>
  4294. <not>
  4295. <equals>
  4296. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4297. <value>0</value>
  4298. </equals>
  4299. </not>
  4300. </condition>
  4301. </animation>
  4302. <animation>
  4303. <type>material</type>
  4304. <object-name>menu.routes.detail.text0</object-name>
  4305. <ambient>
  4306. <red>1</red>
  4307. <green>1</green>
  4308. <blue>1</blue>
  4309. </ambient>
  4310. <diffuse>
  4311. <red>1</red>
  4312. <green>1</green>
  4313. <blue>1</blue>
  4314. </diffuse>
  4315. <emission>
  4316. <blue> 1 </blue>
  4317. <red> 1 </red>
  4318. <green> 1 </green>
  4319. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  4320. </emission>
  4321. <condition>
  4322. <equals>
  4323. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4324. <value>0</value>
  4325. </equals>
  4326. </condition>
  4327. </animation>
  4328. <text>
  4329. <name>menu.routes.detail.text1</name>
  4330. <offsets>
  4331. <x-m>0.00617611</x-m>
  4332. <y-m>-0.038322</y-m>
  4333. <z-m>0.0146051</z-m>
  4334. </offsets>
  4335. <alignment>left-center</alignment>
  4336. <axis-alignment>yz-plane</axis-alignment>
  4337. <type type="string">text-value</type>
  4338. <property>/instrumentation/garmin196/menu_routes/point[1]/texte</property>
  4339. <font type="string">helvetica_bold.txf</font>
  4340. <character-size type="double">0.005</character-size>
  4341. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  4342. <font-resolution>
  4343. <width type="int">32</width>
  4344. <height type="int">32</height>
  4345. </font-resolution>
  4346. </text>
  4347. <animation>
  4348. <type>material</type>
  4349. <object-name>menu.routes.detail.text1</object-name>
  4350. <ambient>
  4351. <red>0</red>
  4352. <green>0</green>
  4353. <blue>0</blue>
  4354. </ambient>
  4355. <diffuse>
  4356. <red>0</red>
  4357. <green>0</green>
  4358. <blue>0</blue>
  4359. </diffuse>
  4360. <condition>
  4361. <not>
  4362. <equals>
  4363. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4364. <value>1</value>
  4365. </equals>
  4366. </not>
  4367. </condition>
  4368. </animation>
  4369. <animation>
  4370. <type>material</type>
  4371. <object-name>menu.routes.detail.text1</object-name>
  4372. <ambient>
  4373. <red>1</red>
  4374. <green>1</green>
  4375. <blue>1</blue>
  4376. </ambient>
  4377. <diffuse>
  4378. <red>1</red>
  4379. <green>1</green>
  4380. <blue>1</blue>
  4381. </diffuse>
  4382. <emission>
  4383. <blue> 1 </blue>
  4384. <red> 1 </red>
  4385. <green> 1 </green>
  4386. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  4387. </emission>
  4388. <condition>
  4389. <equals>
  4390. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4391. <value>1</value>
  4392. </equals>
  4393. </condition>
  4394. </animation>
  4395. <text>
  4396. <name>menu.routes.detail.text2</name>
  4397. <offsets>
  4398. <x-m>0.00617611</x-m>
  4399. <y-m>-0.038322</y-m>
  4400. <z-m>0.0106051</z-m>
  4401. </offsets>
  4402. <alignment>left-center</alignment>
  4403. <axis-alignment>yz-plane</axis-alignment>
  4404. <type type="string">text-value</type>
  4405. <property>/instrumentation/garmin196/menu_routes/point[2]/texte</property>
  4406. <font type="string">helvetica_bold.txf</font>
  4407. <character-size type="double">0.005</character-size>
  4408. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  4409. <font-resolution>
  4410. <width type="int">32</width>
  4411. <height type="int">32</height>
  4412. </font-resolution>
  4413. </text>
  4414. <animation>
  4415. <type>material</type>
  4416. <object-name>menu.routes.detail.text2</object-name>
  4417. <ambient>
  4418. <red>0</red>
  4419. <green>0</green>
  4420. <blue>0</blue>
  4421. </ambient>
  4422. <diffuse>
  4423. <red>0</red>
  4424. <green>0</green>
  4425. <blue>0</blue>
  4426. </diffuse>
  4427. <condition>
  4428. <not>
  4429. <equals>
  4430. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4431. <value>2</value>
  4432. </equals>
  4433. </not>
  4434. </condition>
  4435. </animation>
  4436. <animation>
  4437. <type>material</type>
  4438. <object-name>menu.routes.detail.text2</object-name>
  4439. <ambient>
  4440. <red>1</red>
  4441. <green>1</green>
  4442. <blue>1</blue>
  4443. </ambient>
  4444. <diffuse>
  4445. <red>1</red>
  4446. <green>1</green>
  4447. <blue>1</blue>
  4448. </diffuse>
  4449. <emission>
  4450. <blue> 1 </blue>
  4451. <red> 1 </red>
  4452. <green> 1 </green>
  4453. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  4454. </emission>
  4455. <condition>
  4456. <equals>
  4457. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4458. <value>2</value>
  4459. </equals>
  4460. </condition>
  4461. </animation>
  4462. <text>
  4463. <name>menu.routes.detail.text3</name>
  4464. <offsets>
  4465. <x-m>0.00617611</x-m>
  4466. <y-m>-0.038322</y-m>
  4467. <z-m>0.00660508</z-m>
  4468. </offsets>
  4469. <alignment>left-center</alignment>
  4470. <axis-alignment>yz-plane</axis-alignment>
  4471. <type type="string">text-value</type>
  4472. <property>/instrumentation/garmin196/menu_routes/point[3]/texte</property>
  4473. <font type="string">helvetica_bold.txf</font>
  4474. <character-size type="double">0.005</character-size>
  4475. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  4476. <font-resolution>
  4477. <width type="int">32</width>
  4478. <height type="int">32</height>
  4479. </font-resolution>
  4480. </text>
  4481. <animation>
  4482. <type>material</type>
  4483. <object-name>menu.routes.detail.text3</object-name>
  4484. <ambient>
  4485. <red>0</red>
  4486. <green>0</green>
  4487. <blue>0</blue>
  4488. </ambient>
  4489. <diffuse>
  4490. <red>0</red>
  4491. <green>0</green>
  4492. <blue>0</blue>
  4493. </diffuse>
  4494. <condition>
  4495. <not>
  4496. <equals>
  4497. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4498. <value>3</value>
  4499. </equals>
  4500. </not>
  4501. </condition>
  4502. </animation>
  4503. <animation>
  4504. <type>material</type>
  4505. <object-name>menu.routes.detail.text3</object-name>
  4506. <ambient>
  4507. <red>1</red>
  4508. <green>1</green>
  4509. <blue>1</blue>
  4510. </ambient>
  4511. <diffuse>
  4512. <red>1</red>
  4513. <green>1</green>
  4514. <blue>1</blue>
  4515. </diffuse>
  4516. <emission>
  4517. <blue> 1 </blue>
  4518. <red> 1 </red>
  4519. <green> 1 </green>
  4520. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  4521. </emission>
  4522. <condition>
  4523. <equals>
  4524. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4525. <value>3</value>
  4526. </equals>
  4527. </condition>
  4528. </animation>
  4529. <text>
  4530. <name>menu.routes.detail.text4</name>
  4531. <offsets>
  4532. <x-m>0.00617611</x-m>
  4533. <y-m>-0.038322</y-m>
  4534. <z-m>0.00260508</z-m>
  4535. </offsets>
  4536. <alignment>left-center</alignment>
  4537. <axis-alignment>yz-plane</axis-alignment>
  4538. <type type="string">text-value</type>
  4539. <property>/instrumentation/garmin196/menu_routes/point[4]/texte</property>
  4540. <font type="string">helvetica_bold.txf</font>
  4541. <character-size type="double">0.005</character-size>
  4542. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  4543. <font-resolution>
  4544. <width type="int">32</width>
  4545. <height type="int">32</height>
  4546. </font-resolution>
  4547. </text>
  4548. <animation>
  4549. <type>material</type>
  4550. <object-name>menu.routes.detail.text4</object-name>
  4551. <ambient>
  4552. <red>0</red>
  4553. <green>0</green>
  4554. <blue>0</blue>
  4555. </ambient>
  4556. <diffuse>
  4557. <red>0</red>
  4558. <green>0</green>
  4559. <blue>0</blue>
  4560. </diffuse>
  4561. <condition>
  4562. <not>
  4563. <equals>
  4564. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4565. <value>4</value>
  4566. </equals>
  4567. </not>
  4568. </condition>
  4569. </animation>
  4570. <animation>
  4571. <type>material</type>
  4572. <object-name>menu.routes.detail.text4</object-name>
  4573. <ambient>
  4574. <red>1</red>
  4575. <green>1</green>
  4576. <blue>1</blue>
  4577. </ambient>
  4578. <diffuse>
  4579. <red>1</red>
  4580. <green>1</green>
  4581. <blue>1</blue>
  4582. </diffuse>
  4583. <emission>
  4584. <blue> 1 </blue>
  4585. <red> 1 </red>
  4586. <green> 1 </green>
  4587. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  4588. </emission>
  4589. <condition>
  4590. <equals>
  4591. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4592. <value>4</value>
  4593. </equals>
  4594. </condition>
  4595. </animation>
  4596. <text>
  4597. <name>menu.routes.detail.text5</name>
  4598. <offsets>
  4599. <x-m>0.00617611</x-m>
  4600. <y-m>-0.038322</y-m>
  4601. <z-m>-0.00139492</z-m>
  4602. </offsets>
  4603. <alignment>left-center</alignment>
  4604. <axis-alignment>yz-plane</axis-alignment>
  4605. <type type="string">text-value</type>
  4606. <property>/instrumentation/garmin196/menu_routes/point[5]/texte</property>
  4607. <font type="string">helvetica_bold.txf</font>
  4608. <character-size type="double">0.005</character-size>
  4609. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  4610. <font-resolution>
  4611. <width type="int">32</width>
  4612. <height type="int">32</height>
  4613. </font-resolution>
  4614. </text>
  4615. <animation>
  4616. <type>material</type>
  4617. <object-name>menu.routes.detail.text5</object-name>
  4618. <ambient>
  4619. <red>0</red>
  4620. <green>0</green>
  4621. <blue>0</blue>
  4622. </ambient>
  4623. <diffuse>
  4624. <red>0</red>
  4625. <green>0</green>
  4626. <blue>0</blue>
  4627. </diffuse>
  4628. <condition>
  4629. <not>
  4630. <equals>
  4631. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4632. <value>5</value>
  4633. </equals>
  4634. </not>
  4635. </condition>
  4636. </animation>
  4637. <animation>
  4638. <type>material</type>
  4639. <object-name>menu.routes.detail.text5</object-name>
  4640. <ambient>
  4641. <red>1</red>
  4642. <green>1</green>
  4643. <blue>1</blue>
  4644. </ambient>
  4645. <diffuse>
  4646. <red>1</red>
  4647. <green>1</green>
  4648. <blue>1</blue>
  4649. </diffuse>
  4650. <emission>
  4651. <blue> 1 </blue>
  4652. <red> 1 </red>
  4653. <green> 1 </green>
  4654. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  4655. </emission>
  4656. <condition>
  4657. <equals>
  4658. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4659. <value>5</value>
  4660. </equals>
  4661. </condition>
  4662. </animation>
  4663. <text>
  4664. <name>menu.routes.detail.text6</name>
  4665. <offsets>
  4666. <x-m>0.00617611</x-m>
  4667. <y-m>-0.038322</y-m>
  4668. <z-m>-0.00539492</z-m>
  4669. </offsets>
  4670. <alignment>left-center</alignment>
  4671. <axis-alignment>yz-plane</axis-alignment>
  4672. <type type="string">text-value</type>
  4673. <property>/instrumentation/garmin196/menu_routes/point[6]/texte</property>
  4674. <font type="string">helvetica_bold.txf</font>
  4675. <character-size type="double">0.005</character-size>
  4676. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  4677. <font-resolution>
  4678. <width type="int">32</width>
  4679. <height type="int">32</height>
  4680. </font-resolution>
  4681. </text>
  4682. <animation>
  4683. <type>material</type>
  4684. <object-name>menu.routes.detail.text6</object-name>
  4685. <ambient>
  4686. <red>0</red>
  4687. <green>0</green>
  4688. <blue>0</blue>
  4689. </ambient>
  4690. <diffuse>
  4691. <red>0</red>
  4692. <green>0</green>
  4693. <blue>0</blue>
  4694. </diffuse>
  4695. <condition>
  4696. <not>
  4697. <equals>
  4698. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4699. <value>6</value>
  4700. </equals>
  4701. </not>
  4702. </condition>
  4703. </animation>
  4704. <animation>
  4705. <type>material</type>
  4706. <object-name>menu.routes.detail.text6</object-name>
  4707. <ambient>
  4708. <red>1</red>
  4709. <green>1</green>
  4710. <blue>1</blue>
  4711. </ambient>
  4712. <diffuse>
  4713. <red>1</red>
  4714. <green>1</green>
  4715. <blue>1</blue>
  4716. </diffuse>
  4717. <emission>
  4718. <blue> 1 </blue>
  4719. <red> 1 </red>
  4720. <green> 1 </green>
  4721. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  4722. </emission>
  4723. <condition>
  4724. <equals>
  4725. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4726. <value>6</value>
  4727. </equals>
  4728. </condition>
  4729. </animation>
  4730. <text>
  4731. <name>menu.routes.detail.text7</name>
  4732. <offsets>
  4733. <x-m>0.00617611</x-m>
  4734. <y-m>-0.038322</y-m>
  4735. <z-m>-0.00939492</z-m>
  4736. </offsets>
  4737. <alignment>left-center</alignment>
  4738. <axis-alignment>yz-plane</axis-alignment>
  4739. <type type="string">text-value</type>
  4740. <property>/instrumentation/garmin196/menu_routes/point[7]/texte</property>
  4741. <font type="string">helvetica_bold.txf</font>
  4742. <character-size type="double">0.005</character-size>
  4743. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  4744. <font-resolution>
  4745. <width type="int">32</width>
  4746. <height type="int">32</height>
  4747. </font-resolution>
  4748. </text>
  4749. <animation>
  4750. <type>material</type>
  4751. <object-name>menu.routes.detail.text7</object-name>
  4752. <ambient>
  4753. <red>0</red>
  4754. <green>0</green>
  4755. <blue>0</blue>
  4756. </ambient>
  4757. <diffuse>
  4758. <red>0</red>
  4759. <green>0</green>
  4760. <blue>0</blue>
  4761. </diffuse>
  4762. <condition>
  4763. <not>
  4764. <equals>
  4765. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4766. <value>7</value>
  4767. </equals>
  4768. </not>
  4769. </condition>
  4770. </animation>
  4771. <animation>
  4772. <type>material</type>
  4773. <object-name>menu.routes.detail.text7</object-name>
  4774. <ambient>
  4775. <red>1</red>
  4776. <green>1</green>
  4777. <blue>1</blue>
  4778. </ambient>
  4779. <diffuse>
  4780. <red>1</red>
  4781. <green>1</green>
  4782. <blue>1</blue>
  4783. </diffuse>
  4784. <emission>
  4785. <blue> 1 </blue>
  4786. <red> 1 </red>
  4787. <green> 1 </green>
  4788. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  4789. </emission>
  4790. <condition>
  4791. <equals>
  4792. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4793. <value>7</value>
  4794. </equals>
  4795. </condition>
  4796. </animation>
  4797. <text>
  4798. <name>menu.routes.detail.text8</name>
  4799. <offsets>
  4800. <x-m>0.00617611</x-m>
  4801. <y-m>-0.038322</y-m>
  4802. <z-m>-0.0133949</z-m>
  4803. </offsets>
  4804. <alignment>left-center</alignment>
  4805. <axis-alignment>yz-plane</axis-alignment>
  4806. <type type="string">text-value</type>
  4807. <property>/instrumentation/garmin196/menu_routes/point[8]/texte</property>
  4808. <font type="string">helvetica_bold.txf</font>
  4809. <character-size type="double">0.005</character-size>
  4810. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  4811. <font-resolution>
  4812. <width type="int">32</width>
  4813. <height type="int">32</height>
  4814. </font-resolution>
  4815. </text>
  4816. <animation>
  4817. <type>material</type>
  4818. <object-name>menu.routes.detail.text8</object-name>
  4819. <ambient>
  4820. <red>0</red>
  4821. <green>0</green>
  4822. <blue>0</blue>
  4823. </ambient>
  4824. <diffuse>
  4825. <red>0</red>
  4826. <green>0</green>
  4827. <blue>0</blue>
  4828. </diffuse>
  4829. <condition>
  4830. <not>
  4831. <equals>
  4832. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4833. <value>8</value>
  4834. </equals>
  4835. </not>
  4836. </condition>
  4837. </animation>
  4838. <animation>
  4839. <type>material</type>
  4840. <object-name>menu.routes.detail.text8</object-name>
  4841. <ambient>
  4842. <red>1</red>
  4843. <green>1</green>
  4844. <blue>1</blue>
  4845. </ambient>
  4846. <diffuse>
  4847. <red>1</red>
  4848. <green>1</green>
  4849. <blue>1</blue>
  4850. </diffuse>
  4851. <emission>
  4852. <blue> 1 </blue>
  4853. <red> 1 </red>
  4854. <green> 1 </green>
  4855. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  4856. </emission>
  4857. <condition>
  4858. <equals>
  4859. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4860. <value>8</value>
  4861. </equals>
  4862. </condition>
  4863. </animation>
  4864. <text>
  4865. <name>menu.routes.detail.text9</name>
  4866. <offsets>
  4867. <x-m>0.00617611</x-m>
  4868. <y-m>-0.038322</y-m>
  4869. <z-m>-0.0173949</z-m>
  4870. </offsets>
  4871. <alignment>left-center</alignment>
  4872. <axis-alignment>yz-plane</axis-alignment>
  4873. <type type="string">text-value</type>
  4874. <property>/instrumentation/garmin196/menu_routes/point[9]/texte</property>
  4875. <font type="string">helvetica_bold.txf</font>
  4876. <character-size type="double">0.005</character-size>
  4877. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  4878. <font-resolution>
  4879. <width type="int">32</width>
  4880. <height type="int">32</height>
  4881. </font-resolution>
  4882. </text>
  4883. <animation>
  4884. <type>material</type>
  4885. <object-name>menu.routes.detail.text9</object-name>
  4886. <ambient>
  4887. <red>0</red>
  4888. <green>0</green>
  4889. <blue>0</blue>
  4890. </ambient>
  4891. <diffuse>
  4892. <red>0</red>
  4893. <green>0</green>
  4894. <blue>0</blue>
  4895. </diffuse>
  4896. <condition>
  4897. <not>
  4898. <equals>
  4899. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4900. <value>9</value>
  4901. </equals>
  4902. </not>
  4903. </condition>
  4904. </animation>
  4905. <animation>
  4906. <type>material</type>
  4907. <object-name>menu.routes.detail.text9</object-name>
  4908. <ambient>
  4909. <red>1</red>
  4910. <green>1</green>
  4911. <blue>1</blue>
  4912. </ambient>
  4913. <diffuse>
  4914. <red>1</red>
  4915. <green>1</green>
  4916. <blue>1</blue>
  4917. </diffuse>
  4918. <emission>
  4919. <blue> 1 </blue>
  4920. <red> 1 </red>
  4921. <green> 1 </green>
  4922. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  4923. </emission>
  4924. <condition>
  4925. <equals>
  4926. <property>/instrumentation/garmin196/menu_routes/no_ligne_detail</property>
  4927. <value>9</value>
  4928. </equals>
  4929. </condition>
  4930. </animation>
  4931. <animation>
  4932. <type>select</type>
  4933. <object-name>menu.routes.search</object-name>
  4934. <object-name>menu.routes.search.text</object-name>
  4935. <object-name>menu.routes.search.text0</object-name>
  4936. <object-name>menu.routes.search.text1</object-name>
  4937. <object-name>menu.routes.search.text2</object-name>
  4938. <object-name>menu.routes.search.text3</object-name>
  4939. <object-name>menu.routes.search.text4</object-name>
  4940. <object-name>menu.routes.search.text5</object-name>
  4941. <object-name>menu.routes.search.text6</object-name>
  4942. <object-name>menu.routes.search.text7</object-name>
  4943. <object-name>menu.routes.search.text8</object-name>
  4944. <condition>
  4945. <or>
  4946. <equals>
  4947. <property>/instrumentation/garmin196/status</property>
  4948. <value>123</value>
  4949. </equals>
  4950. <equals>
  4951. <property>/instrumentation/garmin196/status</property>
  4952. <value>124</value>
  4953. </equals>
  4954. </or>
  4955. </condition>
  4956. </animation>
  4957. <animation>
  4958. <type>select</type>
  4959. <object-name>menu.routes.search.mask</object-name>
  4960. <condition>
  4961. <equals>
  4962. <property>/instrumentation/garmin196/status</property>
  4963. <value>124</value>
  4964. </equals>
  4965. </condition>
  4966. </animation>
  4967. <animation>
  4968. <type>translate</type>
  4969. <object-name>menu.routes.search.mask</object-name>
  4970. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  4971. <factor>-0.0045</factor>
  4972. <axis>
  4973. <x> 0 </x>
  4974. <y> 0 </y>
  4975. <z> 1 </z>
  4976. </axis>
  4977. </animation>
  4978. <text>
  4979. <name>menu.routes.search.text</name>
  4980. <offsets>
  4981. <x-m>0.00617611</x-m>
  4982. <y-m>-0.038322</y-m>
  4983. <z-m>0.020573</z-m>
  4984. </offsets>
  4985. <alignment>left-center</alignment>
  4986. <axis-alignment>yz-plane</axis-alignment>
  4987. <type type="string">text-value</type>
  4988. <property>/instrumentation/garmin196/menu_routes/search/ligne_select</property>
  4989. <font type="string">helvetica_bold.txf</font>
  4990. <character-size type="double">0.005</character-size>
  4991. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  4992. <font-resolution>
  4993. <width type="int">32</width>
  4994. <height type="int">32</height>
  4995. </font-resolution>
  4996. </text>
  4997. <animation>
  4998. <type>material</type>
  4999. <object-name>menu.routes.search.text</object-name>
  5000. <ambient>
  5001. <red>0</red>
  5002. <green>0</green>
  5003. <blue>0</blue>
  5004. </ambient>
  5005. <diffuse>
  5006. <red>0</red>
  5007. <green>0</green>
  5008. <blue>0</blue>
  5009. </diffuse>
  5010. </animation>
  5011. <text>
  5012. <name>menu.routes.search.text0</name>
  5013. <offsets>
  5014. <x-m>0.00617611</x-m>
  5015. <y-m>-0.038322</y-m>
  5016. <z-m>0.0145502</z-m>
  5017. </offsets>
  5018. <alignment>left-center</alignment>
  5019. <axis-alignment>yz-plane</axis-alignment>
  5020. <type type="string">text-value</type>
  5021. <property>/instrumentation/garmin196/menu_routes/search/ligne[0]/texte</property>
  5022. <font type="string">helvetica_bold.txf</font>
  5023. <character-size type="double">0.005</character-size>
  5024. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  5025. <font-resolution>
  5026. <width type="int">32</width>
  5027. <height type="int">32</height>
  5028. </font-resolution>
  5029. </text>
  5030. <animation>
  5031. <type>material</type>
  5032. <object-name>menu.routes.search.text0</object-name>
  5033. <ambient>
  5034. <red>0</red>
  5035. <green>0</green>
  5036. <blue>0</blue>
  5037. </ambient>
  5038. <diffuse>
  5039. <red>0</red>
  5040. <green>0</green>
  5041. <blue>0</blue>
  5042. </diffuse>
  5043. <condition>
  5044. <or>
  5045. <not>
  5046. <equals>
  5047. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5048. <value>0</value>
  5049. </equals>
  5050. </not>
  5051. <equals>
  5052. <property>/instrumentation/garmin196/status</property>
  5053. <value>123</value>
  5054. </equals>
  5055. </or>
  5056. </condition>
  5057. </animation>
  5058. <animation>
  5059. <type>material</type>
  5060. <object-name>menu.routes.search.text0</object-name>
  5061. <ambient>
  5062. <red>1</red>
  5063. <green>1</green>
  5064. <blue>1</blue>
  5065. </ambient>
  5066. <diffuse>
  5067. <red>1</red>
  5068. <green>1</green>
  5069. <blue>1</blue>
  5070. </diffuse>
  5071. <emission>
  5072. <blue> 1 </blue>
  5073. <red> 1 </red>
  5074. <green> 1 </green>
  5075. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  5076. </emission>
  5077. <condition>
  5078. <equals>
  5079. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5080. <value>0</value>
  5081. </equals>
  5082. </condition>
  5083. </animation>
  5084. <text>
  5085. <name>menu.routes.search.text1</name>
  5086. <offsets>
  5087. <x-m>0.00617611</x-m>
  5088. <y-m>-0.038322</y-m>
  5089. <z-m>0.0100502</z-m>
  5090. </offsets>
  5091. <alignment>left-center</alignment>
  5092. <axis-alignment>yz-plane</axis-alignment>
  5093. <type type="string">text-value</type>
  5094. <property>/instrumentation/garmin196/menu_routes/search/ligne[1]/texte</property>
  5095. <font type="string">helvetica_bold.txf</font>
  5096. <character-size type="double">0.005</character-size>
  5097. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  5098. <font-resolution>
  5099. <width type="int">32</width>
  5100. <height type="int">32</height>
  5101. </font-resolution>
  5102. </text>
  5103. <animation>
  5104. <type>material</type>
  5105. <object-name>menu.routes.search.text1</object-name>
  5106. <ambient>
  5107. <red>0</red>
  5108. <green>0</green>
  5109. <blue>0</blue>
  5110. </ambient>
  5111. <diffuse>
  5112. <red>0</red>
  5113. <green>0</green>
  5114. <blue>0</blue>
  5115. </diffuse>
  5116. <condition>
  5117. <or>
  5118. <not>
  5119. <equals>
  5120. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5121. <value>1</value>
  5122. </equals>
  5123. </not>
  5124. <equals>
  5125. <property>/instrumentation/garmin196/status</property>
  5126. <value>123</value>
  5127. </equals>
  5128. </or>
  5129. </condition>
  5130. </animation>
  5131. <animation>
  5132. <type>material</type>
  5133. <object-name>menu.routes.search.text1</object-name>
  5134. <ambient>
  5135. <red>1</red>
  5136. <green>1</green>
  5137. <blue>1</blue>
  5138. </ambient>
  5139. <diffuse>
  5140. <red>1</red>
  5141. <green>1</green>
  5142. <blue>1</blue>
  5143. </diffuse>
  5144. <emission>
  5145. <blue> 1 </blue>
  5146. <red> 1 </red>
  5147. <green> 1 </green>
  5148. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  5149. </emission>
  5150. <condition>
  5151. <equals>
  5152. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5153. <value>1</value>
  5154. </equals>
  5155. </condition>
  5156. </animation>
  5157. <text>
  5158. <name>menu.routes.search.text2</name>
  5159. <offsets>
  5160. <x-m>0.00617611</x-m>
  5161. <y-m>-0.038322</y-m>
  5162. <z-m>0.0055502</z-m>
  5163. </offsets>
  5164. <alignment>left-center</alignment>
  5165. <axis-alignment>yz-plane</axis-alignment>
  5166. <type type="string">text-value</type>
  5167. <property>/instrumentation/garmin196/menu_routes/search/ligne[2]/texte</property>
  5168. <font type="string">helvetica_bold.txf</font>
  5169. <character-size type="double">0.005</character-size>
  5170. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  5171. <font-resolution>
  5172. <width type="int">32</width>
  5173. <height type="int">32</height>
  5174. </font-resolution>
  5175. </text>
  5176. <animation>
  5177. <type>material</type>
  5178. <object-name>menu.routes.search.text2</object-name>
  5179. <ambient>
  5180. <red>0</red>
  5181. <green>0</green>
  5182. <blue>0</blue>
  5183. </ambient>
  5184. <diffuse>
  5185. <red>0</red>
  5186. <green>0</green>
  5187. <blue>0</blue>
  5188. </diffuse>
  5189. <condition>
  5190. <or>
  5191. <not>
  5192. <equals>
  5193. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5194. <value>2</value>
  5195. </equals>
  5196. </not>
  5197. <equals>
  5198. <property>/instrumentation/garmin196/status</property>
  5199. <value>123</value>
  5200. </equals>
  5201. </or>
  5202. </condition>
  5203. </animation>
  5204. <animation>
  5205. <type>material</type>
  5206. <object-name>menu.routes.search.text2</object-name>
  5207. <ambient>
  5208. <red>1</red>
  5209. <green>1</green>
  5210. <blue>1</blue>
  5211. </ambient>
  5212. <diffuse>
  5213. <red>1</red>
  5214. <green>1</green>
  5215. <blue>1</blue>
  5216. </diffuse>
  5217. <emission>
  5218. <blue> 1 </blue>
  5219. <red> 1 </red>
  5220. <green> 1 </green>
  5221. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  5222. </emission>
  5223. <condition>
  5224. <equals>
  5225. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5226. <value>2</value>
  5227. </equals>
  5228. </condition>
  5229. </animation>
  5230. <text>
  5231. <name>menu.routes.search.text3</name>
  5232. <offsets>
  5233. <x-m>0.00617611</x-m>
  5234. <y-m>-0.038322</y-m>
  5235. <z-m>0.0010502</z-m>
  5236. </offsets>
  5237. <alignment>left-center</alignment>
  5238. <axis-alignment>yz-plane</axis-alignment>
  5239. <type type="string">text-value</type>
  5240. <property>/instrumentation/garmin196/menu_routes/search/ligne[3]/texte</property>
  5241. <font type="string">helvetica_bold.txf</font>
  5242. <character-size type="double">0.005</character-size>
  5243. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  5244. <font-resolution>
  5245. <width type="int">32</width>
  5246. <height type="int">32</height>
  5247. </font-resolution>
  5248. </text>
  5249. <animation>
  5250. <type>material</type>
  5251. <object-name>menu.routes.search.text3</object-name>
  5252. <ambient>
  5253. <red>0</red>
  5254. <green>0</green>
  5255. <blue>0</blue>
  5256. </ambient>
  5257. <diffuse>
  5258. <red>0</red>
  5259. <green>0</green>
  5260. <blue>0</blue>
  5261. </diffuse>
  5262. <condition>
  5263. <or>
  5264. <not>
  5265. <equals>
  5266. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5267. <value>3</value>
  5268. </equals>
  5269. </not>
  5270. <equals>
  5271. <property>/instrumentation/garmin196/status</property>
  5272. <value>123</value>
  5273. </equals>
  5274. </or>
  5275. </condition>
  5276. </animation>
  5277. <animation>
  5278. <type>material</type>
  5279. <object-name>menu.routes.search.text3</object-name>
  5280. <ambient>
  5281. <red>1</red>
  5282. <green>1</green>
  5283. <blue>1</blue>
  5284. </ambient>
  5285. <diffuse>
  5286. <red>1</red>
  5287. <green>1</green>
  5288. <blue>1</blue>
  5289. </diffuse>
  5290. <emission>
  5291. <blue> 1 </blue>
  5292. <red> 1 </red>
  5293. <green> 1 </green>
  5294. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  5295. </emission>
  5296. <condition>
  5297. <equals>
  5298. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5299. <value>3</value>
  5300. </equals>
  5301. </condition>
  5302. </animation>
  5303. <text>
  5304. <name>menu.routes.search.text4</name>
  5305. <offsets>
  5306. <x-m>0.00617611</x-m>
  5307. <y-m>-0.038322</y-m>
  5308. <z-m>-0.0034498</z-m>
  5309. </offsets>
  5310. <alignment>left-center</alignment>
  5311. <axis-alignment>yz-plane</axis-alignment>
  5312. <type type="string">text-value</type>
  5313. <property>/instrumentation/garmin196/menu_routes/search/ligne[4]/texte</property>
  5314. <font type="string">helvetica_bold.txf</font>
  5315. <character-size type="double">0.005</character-size>
  5316. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  5317. <font-resolution>
  5318. <width type="int">32</width>
  5319. <height type="int">32</height>
  5320. </font-resolution>
  5321. </text>
  5322. <animation>
  5323. <type>material</type>
  5324. <object-name>menu.routes.search.text4</object-name>
  5325. <ambient>
  5326. <red>0</red>
  5327. <green>0</green>
  5328. <blue>0</blue>
  5329. </ambient>
  5330. <diffuse>
  5331. <red>0</red>
  5332. <green>0</green>
  5333. <blue>0</blue>
  5334. </diffuse>
  5335. <condition>
  5336. <or>
  5337. <not>
  5338. <equals>
  5339. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5340. <value>4</value>
  5341. </equals>
  5342. </not>
  5343. <equals>
  5344. <property>/instrumentation/garmin196/status</property>
  5345. <value>123</value>
  5346. </equals>
  5347. </or>
  5348. </condition>
  5349. </animation>
  5350. <animation>
  5351. <type>material</type>
  5352. <object-name>menu.routes.search.text4</object-name>
  5353. <ambient>
  5354. <red>1</red>
  5355. <green>1</green>
  5356. <blue>1</blue>
  5357. </ambient>
  5358. <diffuse>
  5359. <red>1</red>
  5360. <green>1</green>
  5361. <blue>1</blue>
  5362. </diffuse>
  5363. <emission>
  5364. <blue> 1 </blue>
  5365. <red> 1 </red>
  5366. <green> 1 </green>
  5367. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  5368. </emission>
  5369. <condition>
  5370. <equals>
  5371. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5372. <value>4</value>
  5373. </equals>
  5374. </condition>
  5375. </animation>
  5376. <text>
  5377. <name>menu.routes.search.text5</name>
  5378. <offsets>
  5379. <x-m>0.00617611</x-m>
  5380. <y-m>-0.038322</y-m>
  5381. <z-m>-0.0079498</z-m>
  5382. </offsets>
  5383. <alignment>left-center</alignment>
  5384. <axis-alignment>yz-plane</axis-alignment>
  5385. <type type="string">text-value</type>
  5386. <property>/instrumentation/garmin196/menu_routes/search/ligne[5]/texte</property>
  5387. <font type="string">helvetica_bold.txf</font>
  5388. <character-size type="double">0.005</character-size>
  5389. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  5390. <font-resolution>
  5391. <width type="int">32</width>
  5392. <height type="int">32</height>
  5393. </font-resolution>
  5394. </text>
  5395. <animation>
  5396. <type>material</type>
  5397. <object-name>menu.routes.search.text5</object-name>
  5398. <ambient>
  5399. <red>0</red>
  5400. <green>0</green>
  5401. <blue>0</blue>
  5402. </ambient>
  5403. <diffuse>
  5404. <red>0</red>
  5405. <green>0</green>
  5406. <blue>0</blue>
  5407. </diffuse>
  5408. <condition>
  5409. <or>
  5410. <not>
  5411. <equals>
  5412. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5413. <value>5</value>
  5414. </equals>
  5415. </not>
  5416. <equals>
  5417. <property>/instrumentation/garmin196/status</property>
  5418. <value>123</value>
  5419. </equals>
  5420. </or>
  5421. </condition>
  5422. </animation>
  5423. <animation>
  5424. <type>material</type>
  5425. <object-name>menu.routes.search.text5</object-name>
  5426. <ambient>
  5427. <red>1</red>
  5428. <green>1</green>
  5429. <blue>1</blue>
  5430. </ambient>
  5431. <diffuse>
  5432. <red>1</red>
  5433. <green>1</green>
  5434. <blue>1</blue>
  5435. </diffuse>
  5436. <emission>
  5437. <blue> 1 </blue>
  5438. <red> 1 </red>
  5439. <green> 1 </green>
  5440. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  5441. </emission>
  5442. <condition>
  5443. <equals>
  5444. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5445. <value>5</value>
  5446. </equals>
  5447. </condition>
  5448. </animation>
  5449. <text>
  5450. <name>menu.routes.search.text6</name>
  5451. <offsets>
  5452. <x-m>0.00617611</x-m>
  5453. <y-m>-0.038322</y-m>
  5454. <z-m>-0.0124498</z-m>
  5455. </offsets>
  5456. <alignment>left-center</alignment>
  5457. <axis-alignment>yz-plane</axis-alignment>
  5458. <type type="string">text-value</type>
  5459. <property>/instrumentation/garmin196/menu_routes/search/ligne[6]/texte</property>
  5460. <font type="string">helvetica_bold.txf</font>
  5461. <character-size type="double">0.005</character-size>
  5462. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  5463. <font-resolution>
  5464. <width type="int">32</width>
  5465. <height type="int">32</height>
  5466. </font-resolution>
  5467. </text>
  5468. <animation>
  5469. <type>material</type>
  5470. <object-name>menu.routes.search.text6</object-name>
  5471. <ambient>
  5472. <red>0</red>
  5473. <green>0</green>
  5474. <blue>0</blue>
  5475. </ambient>
  5476. <diffuse>
  5477. <red>0</red>
  5478. <green>0</green>
  5479. <blue>0</blue>
  5480. </diffuse>
  5481. <condition>
  5482. <or>
  5483. <not>
  5484. <equals>
  5485. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5486. <value>6</value>
  5487. </equals>
  5488. </not>
  5489. <equals>
  5490. <property>/instrumentation/garmin196/status</property>
  5491. <value>123</value>
  5492. </equals>
  5493. </or>
  5494. </condition>
  5495. </animation>
  5496. <animation>
  5497. <type>material</type>
  5498. <object-name>menu.routes.search.text6</object-name>
  5499. <ambient>
  5500. <red>1</red>
  5501. <green>1</green>
  5502. <blue>1</blue>
  5503. </ambient>
  5504. <diffuse>
  5505. <red>1</red>
  5506. <green>1</green>
  5507. <blue>1</blue>
  5508. </diffuse>
  5509. <emission>
  5510. <blue> 1 </blue>
  5511. <red> 1 </red>
  5512. <green> 1 </green>
  5513. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  5514. </emission>
  5515. <condition>
  5516. <equals>
  5517. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5518. <value>6</value>
  5519. </equals>
  5520. </condition>
  5521. </animation>
  5522. <text>
  5523. <name>menu.routes.search.text7</name>
  5524. <offsets>
  5525. <x-m>0.00617611</x-m>
  5526. <y-m>-0.038322</y-m>
  5527. <z-m>-0.0169498</z-m>
  5528. </offsets>
  5529. <alignment>left-center</alignment>
  5530. <axis-alignment>yz-plane</axis-alignment>
  5531. <type type="string">text-value</type>
  5532. <property>/instrumentation/garmin196/menu_routes/search/ligne[7]/texte</property>
  5533. <font type="string">helvetica_bold.txf</font>
  5534. <character-size type="double">0.005</character-size>
  5535. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  5536. <font-resolution>
  5537. <width type="int">32</width>
  5538. <height type="int">32</height>
  5539. </font-resolution>
  5540. </text>
  5541. <animation>
  5542. <type>material</type>
  5543. <object-name>menu.routes.search.text7</object-name>
  5544. <ambient>
  5545. <red>0</red>
  5546. <green>0</green>
  5547. <blue>0</blue>
  5548. </ambient>
  5549. <diffuse>
  5550. <red>0</red>
  5551. <green>0</green>
  5552. <blue>0</blue>
  5553. </diffuse>
  5554. <condition>
  5555. <or>
  5556. <not>
  5557. <equals>
  5558. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5559. <value>7</value>
  5560. </equals>
  5561. </not>
  5562. <equals>
  5563. <property>/instrumentation/garmin196/status</property>
  5564. <value>123</value>
  5565. </equals>
  5566. </or>
  5567. </condition>
  5568. </animation>
  5569. <animation>
  5570. <type>material</type>
  5571. <object-name>menu.routes.search.text7</object-name>
  5572. <ambient>
  5573. <red>1</red>
  5574. <green>1</green>
  5575. <blue>1</blue>
  5576. </ambient>
  5577. <diffuse>
  5578. <red>1</red>
  5579. <green>1</green>
  5580. <blue>1</blue>
  5581. </diffuse>
  5582. <emission>
  5583. <blue> 1 </blue>
  5584. <red> 1 </red>
  5585. <green> 1 </green>
  5586. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  5587. </emission>
  5588. <condition>
  5589. <equals>
  5590. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5591. <value>7</value>
  5592. </equals>
  5593. </condition>
  5594. </animation>
  5595. <text>
  5596. <name>menu.routes.search.text8</name>
  5597. <offsets>
  5598. <x-m>0.00617611</x-m>
  5599. <y-m>-0.038322</y-m>
  5600. <z-m>-0.0214498</z-m>
  5601. </offsets>
  5602. <alignment>left-center</alignment>
  5603. <axis-alignment>yz-plane</axis-alignment>
  5604. <type type="string">text-value</type>
  5605. <property>/instrumentation/garmin196/menu_routes/search/ligne[8]/texte</property>
  5606. <font type="string">helvetica_bold.txf</font>
  5607. <character-size type="double">0.005</character-size>
  5608. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  5609. <font-resolution>
  5610. <width type="int">32</width>
  5611. <height type="int">32</height>
  5612. </font-resolution>
  5613. </text>
  5614. <animation>
  5615. <type>material</type>
  5616. <object-name>menu.routes.search.text8</object-name>
  5617. <ambient>
  5618. <red>0</red>
  5619. <green>0</green>
  5620. <blue>0</blue>
  5621. </ambient>
  5622. <diffuse>
  5623. <red>0</red>
  5624. <green>0</green>
  5625. <blue>0</blue>
  5626. </diffuse>
  5627. <condition>
  5628. <or>
  5629. <not>
  5630. <equals>
  5631. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5632. <value>8</value>
  5633. </equals>
  5634. </not>
  5635. <equals>
  5636. <property>/instrumentation/garmin196/status</property>
  5637. <value>123</value>
  5638. </equals>
  5639. </or>
  5640. </condition>
  5641. </animation>
  5642. <animation>
  5643. <type>material</type>
  5644. <object-name>menu.routes.search.text8</object-name>
  5645. <ambient>
  5646. <red>1</red>
  5647. <green>1</green>
  5648. <blue>1</blue>
  5649. </ambient>
  5650. <diffuse>
  5651. <red>1</red>
  5652. <green>1</green>
  5653. <blue>1</blue>
  5654. </diffuse>
  5655. <emission>
  5656. <blue> 1 </blue>
  5657. <red> 1 </red>
  5658. <green> 1 </green>
  5659. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  5660. </emission>
  5661. <condition>
  5662. <equals>
  5663. <property>/instrumentation/garmin196/menu_routes/search/no_ligne_selected</property>
  5664. <value>8</value>
  5665. </equals>
  5666. </condition>
  5667. </animation>
  5668. <!--Menu points-->
  5669. <animation>
  5670. <type>select</type>
  5671. <object-name>menu.points.list</object-name>
  5672. <object-name>menu.points.text0</object-name>
  5673. <object-name>menu.points.text1</object-name>
  5674. <object-name>menu.points.text2</object-name>
  5675. <object-name>menu.points.text3</object-name>
  5676. <object-name>menu.points.text4</object-name>
  5677. <object-name>menu.points.text5</object-name>
  5678. <object-name>menu.points.text6</object-name>
  5679. <object-name>menu.points.text7</object-name>
  5680. <object-name>menu.points.text8</object-name>
  5681. <condition>
  5682. <and>
  5683. <greater-than-equals>
  5684. <property>/instrumentation/garmin196/status</property>
  5685. <value>130</value>
  5686. </greater-than-equals>
  5687. <less-than>
  5688. <property>/instrumentation/garmin196/status</property>
  5689. <value>132</value>
  5690. </less-than>
  5691. </and>
  5692. </condition>
  5693. </animation>
  5694. <animation>
  5695. <type>select</type>
  5696. <object-name>menu.points.list.mask</object-name>
  5697. <condition>
  5698. <equals>
  5699. <property>/instrumentation/garmin196/status</property>
  5700. <value>131</value>
  5701. </equals>
  5702. </condition>
  5703. </animation>
  5704. <animation>
  5705. <type>translate</type>
  5706. <object-name>menu.points.list.mask</object-name>
  5707. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  5708. <factor>-0.005</factor>
  5709. <axis>
  5710. <x> 0 </x>
  5711. <y> 0 </y>
  5712. <z> 1 </z>
  5713. </axis>
  5714. </animation>
  5715. <text>
  5716. <name>menu.points.text0</name>
  5717. <offsets>
  5718. <x-m>0.00617611</x-m>
  5719. <y-m>-0.038322</y-m>
  5720. <z-m>0.0199034</z-m>
  5721. </offsets>
  5722. <alignment>left-center</alignment>
  5723. <axis-alignment>yz-plane</axis-alignment>
  5724. <type type="string">text-value</type>
  5725. <property>/instrumentation/garmin196/menu_points/point[0]/texte</property>
  5726. <font type="string">helvetica_bold.txf</font>
  5727. <character-size type="double">0.005</character-size>
  5728. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  5729. <font-resolution>
  5730. <width type="int">32</width>
  5731. <height type="int">32</height>
  5732. </font-resolution>
  5733. </text>
  5734. <animation>
  5735. <type>material</type>
  5736. <object-name>menu.points.text0</object-name>
  5737. <ambient>
  5738. <red>0</red>
  5739. <green>0</green>
  5740. <blue>0</blue>
  5741. </ambient>
  5742. <diffuse>
  5743. <red>0</red>
  5744. <green>0</green>
  5745. <blue>0</blue>
  5746. </diffuse>
  5747. <condition>
  5748. <not>
  5749. <equals>
  5750. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  5751. <value>0</value>
  5752. </equals>
  5753. </not>
  5754. </condition>
  5755. </animation>
  5756. <animation>
  5757. <type>material</type>
  5758. <object-name>menu.points.text0</object-name>
  5759. <ambient>
  5760. <red>1</red>
  5761. <green>1</green>
  5762. <blue>1</blue>
  5763. </ambient>
  5764. <diffuse>
  5765. <red>1</red>
  5766. <green>1</green>
  5767. <blue>1</blue>
  5768. </diffuse>
  5769. <emission>
  5770. <blue> 1 </blue>
  5771. <red> 1 </red>
  5772. <green> 1 </green>
  5773. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  5774. </emission>
  5775. <condition>
  5776. <equals>
  5777. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  5778. <value>0</value>
  5779. </equals>
  5780. </condition>
  5781. </animation>
  5782. <text>
  5783. <name>menu.points.text1</name>
  5784. <offsets>
  5785. <x-m>0.00617611</x-m>
  5786. <y-m>-0.038322</y-m>
  5787. <z-m>0.0149034</z-m>
  5788. </offsets>
  5789. <alignment>left-center</alignment>
  5790. <axis-alignment>yz-plane</axis-alignment>
  5791. <type type="string">text-value</type>
  5792. <property>/instrumentation/garmin196/menu_points/point[1]/texte</property>
  5793. <font type="string">helvetica_bold.txf</font>
  5794. <character-size type="double">0.005</character-size>
  5795. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  5796. <font-resolution>
  5797. <width type="int">32</width>
  5798. <height type="int">32</height>
  5799. </font-resolution>
  5800. </text>
  5801. <animation>
  5802. <type>material</type>
  5803. <object-name>menu.points.text1</object-name>
  5804. <ambient>
  5805. <red>0</red>
  5806. <green>0</green>
  5807. <blue>0</blue>
  5808. </ambient>
  5809. <diffuse>
  5810. <red>0</red>
  5811. <green>0</green>
  5812. <blue>0</blue>
  5813. </diffuse>
  5814. <condition>
  5815. <not>
  5816. <equals>
  5817. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  5818. <value>1</value>
  5819. </equals>
  5820. </not>
  5821. </condition>
  5822. </animation>
  5823. <animation>
  5824. <type>material</type>
  5825. <object-name>menu.points.text1</object-name>
  5826. <ambient>
  5827. <red>1</red>
  5828. <green>1</green>
  5829. <blue>1</blue>
  5830. </ambient>
  5831. <diffuse>
  5832. <red>1</red>
  5833. <green>1</green>
  5834. <blue>1</blue>
  5835. </diffuse>
  5836. <emission>
  5837. <blue> 1 </blue>
  5838. <red> 1 </red>
  5839. <green> 1 </green>
  5840. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  5841. </emission>
  5842. <condition>
  5843. <equals>
  5844. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  5845. <value>1</value>
  5846. </equals>
  5847. </condition>
  5848. </animation>
  5849. <text>
  5850. <name>menu.points.text2</name>
  5851. <offsets>
  5852. <x-m>0.00617611</x-m>
  5853. <y-m>-0.038322</y-m>
  5854. <z-m>0.0099034</z-m>
  5855. </offsets>
  5856. <alignment>left-center</alignment>
  5857. <axis-alignment>yz-plane</axis-alignment>
  5858. <type type="string">text-value</type>
  5859. <property>/instrumentation/garmin196/menu_points/point[2]/texte</property>
  5860. <font type="string">helvetica_bold.txf</font>
  5861. <character-size type="double">0.005</character-size>
  5862. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  5863. <font-resolution>
  5864. <width type="int">32</width>
  5865. <height type="int">32</height>
  5866. </font-resolution>
  5867. </text>
  5868. <animation>
  5869. <type>material</type>
  5870. <object-name>menu.points.text2</object-name>
  5871. <ambient>
  5872. <red>0</red>
  5873. <green>0</green>
  5874. <blue>0</blue>
  5875. </ambient>
  5876. <diffuse>
  5877. <red>0</red>
  5878. <green>0</green>
  5879. <blue>0</blue>
  5880. </diffuse>
  5881. <condition>
  5882. <not>
  5883. <equals>
  5884. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  5885. <value>2</value>
  5886. </equals>
  5887. </not>
  5888. </condition>
  5889. </animation>
  5890. <animation>
  5891. <type>material</type>
  5892. <object-name>menu.points.text2</object-name>
  5893. <ambient>
  5894. <red>1</red>
  5895. <green>1</green>
  5896. <blue>1</blue>
  5897. </ambient>
  5898. <diffuse>
  5899. <red>1</red>
  5900. <green>1</green>
  5901. <blue>1</blue>
  5902. </diffuse>
  5903. <emission>
  5904. <blue> 1 </blue>
  5905. <red> 1 </red>
  5906. <green> 1 </green>
  5907. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  5908. </emission>
  5909. <condition>
  5910. <equals>
  5911. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  5912. <value>2</value>
  5913. </equals>
  5914. </condition>
  5915. </animation>
  5916. <text>
  5917. <name>menu.points.text3</name>
  5918. <offsets>
  5919. <x-m>0.00617611</x-m>
  5920. <y-m>-0.038322</y-m>
  5921. <z-m>0.0049034</z-m>
  5922. </offsets>
  5923. <alignment>left-center</alignment>
  5924. <axis-alignment>yz-plane</axis-alignment>
  5925. <type type="string">text-value</type>
  5926. <property>/instrumentation/garmin196/menu_points/point[3]/texte</property>
  5927. <font type="string">helvetica_bold.txf</font>
  5928. <character-size type="double">0.005</character-size>
  5929. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  5930. <font-resolution>
  5931. <width type="int">32</width>
  5932. <height type="int">32</height>
  5933. </font-resolution>
  5934. </text>
  5935. <animation>
  5936. <type>material</type>
  5937. <object-name>menu.points.text3</object-name>
  5938. <ambient>
  5939. <red>0</red>
  5940. <green>0</green>
  5941. <blue>0</blue>
  5942. </ambient>
  5943. <diffuse>
  5944. <red>0</red>
  5945. <green>0</green>
  5946. <blue>0</blue>
  5947. </diffuse>
  5948. <condition>
  5949. <not>
  5950. <equals>
  5951. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  5952. <value>3</value>
  5953. </equals>
  5954. </not>
  5955. </condition>
  5956. </animation>
  5957. <animation>
  5958. <type>material</type>
  5959. <object-name>menu.points.text3</object-name>
  5960. <ambient>
  5961. <red>1</red>
  5962. <green>1</green>
  5963. <blue>1</blue>
  5964. </ambient>
  5965. <diffuse>
  5966. <red>1</red>
  5967. <green>1</green>
  5968. <blue>1</blue>
  5969. </diffuse>
  5970. <emission>
  5971. <blue> 1 </blue>
  5972. <red> 1 </red>
  5973. <green> 1 </green>
  5974. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  5975. </emission>
  5976. <condition>
  5977. <equals>
  5978. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  5979. <value>3</value>
  5980. </equals>
  5981. </condition>
  5982. </animation>
  5983. <text>
  5984. <name>menu.points.text4</name>
  5985. <offsets>
  5986. <x-m>0.00617611</x-m>
  5987. <y-m>-0.038322</y-m>
  5988. <z-m>-0.00001</z-m>
  5989. </offsets>
  5990. <alignment>left-center</alignment>
  5991. <axis-alignment>yz-plane</axis-alignment>
  5992. <type type="string">text-value</type>
  5993. <property>/instrumentation/garmin196/menu_points/point[4]/texte</property>
  5994. <font type="string">helvetica_bold.txf</font>
  5995. <character-size type="double">0.005</character-size>
  5996. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  5997. <font-resolution>
  5998. <width type="int">32</width>
  5999. <height type="int">32</height>
  6000. </font-resolution>
  6001. </text>
  6002. <animation>
  6003. <type>material</type>
  6004. <object-name>menu.points.text4</object-name>
  6005. <ambient>
  6006. <red>0</red>
  6007. <green>0</green>
  6008. <blue>0</blue>
  6009. </ambient>
  6010. <diffuse>
  6011. <red>0</red>
  6012. <green>0</green>
  6013. <blue>0</blue>
  6014. </diffuse>
  6015. <condition>
  6016. <not>
  6017. <equals>
  6018. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  6019. <value>4</value>
  6020. </equals>
  6021. </not>
  6022. </condition>
  6023. </animation>
  6024. <animation>
  6025. <type>material</type>
  6026. <object-name>menu.points.text4</object-name>
  6027. <ambient>
  6028. <red>1</red>
  6029. <green>1</green>
  6030. <blue>1</blue>
  6031. </ambient>
  6032. <diffuse>
  6033. <red>1</red>
  6034. <green>1</green>
  6035. <blue>1</blue>
  6036. </diffuse>
  6037. <emission>
  6038. <blue> 1 </blue>
  6039. <red> 1 </red>
  6040. <green> 1 </green>
  6041. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  6042. </emission>
  6043. <condition>
  6044. <equals>
  6045. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  6046. <value>4</value>
  6047. </equals>
  6048. </condition>
  6049. </animation>
  6050. <text>
  6051. <name>menu.points.text5</name>
  6052. <offsets>
  6053. <x-m>0.00617611</x-m>
  6054. <y-m>-0.038322</y-m>
  6055. <z-m>-0.0050966</z-m>
  6056. </offsets>
  6057. <alignment>left-center</alignment>
  6058. <axis-alignment>yz-plane</axis-alignment>
  6059. <type type="string">text-value</type>
  6060. <property>/instrumentation/garmin196/menu_points/point[5]/texte</property>
  6061. <font type="string">helvetica_bold.txf</font>
  6062. <character-size type="double">0.005</character-size>
  6063. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  6064. <font-resolution>
  6065. <width type="int">32</width>
  6066. <height type="int">32</height>
  6067. </font-resolution>
  6068. </text>
  6069. <animation>
  6070. <type>material</type>
  6071. <object-name>menu.points.text5</object-name>
  6072. <ambient>
  6073. <red>0</red>
  6074. <green>0</green>
  6075. <blue>0</blue>
  6076. </ambient>
  6077. <diffuse>
  6078. <red>0</red>
  6079. <green>0</green>
  6080. <blue>0</blue>
  6081. </diffuse>
  6082. <condition>
  6083. <not>
  6084. <equals>
  6085. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  6086. <value>5</value>
  6087. </equals>
  6088. </not>
  6089. </condition>
  6090. </animation>
  6091. <animation>
  6092. <type>material</type>
  6093. <object-name>menu.points.text5</object-name>
  6094. <ambient>
  6095. <red>1</red>
  6096. <green>1</green>
  6097. <blue>1</blue>
  6098. </ambient>
  6099. <diffuse>
  6100. <red>1</red>
  6101. <green>1</green>
  6102. <blue>1</blue>
  6103. </diffuse>
  6104. <emission>
  6105. <blue> 1 </blue>
  6106. <red> 1 </red>
  6107. <green> 1 </green>
  6108. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  6109. </emission>
  6110. <condition>
  6111. <equals>
  6112. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  6113. <value>5</value>
  6114. </equals>
  6115. </condition>
  6116. </animation>
  6117. <text>
  6118. <name>menu.points.text6</name>
  6119. <offsets>
  6120. <x-m>0.00617611</x-m>
  6121. <y-m>-0.038322</y-m>
  6122. <z-m>-0.0100966</z-m>
  6123. </offsets>
  6124. <alignment>left-center</alignment>
  6125. <axis-alignment>yz-plane</axis-alignment>
  6126. <type type="string">text-value</type>
  6127. <property>/instrumentation/garmin196/menu_points/point[6]/texte</property>
  6128. <font type="string">helvetica_bold.txf</font>
  6129. <character-size type="double">0.005</character-size>
  6130. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  6131. <font-resolution>
  6132. <width type="int">32</width>
  6133. <height type="int">32</height>
  6134. </font-resolution>
  6135. </text>
  6136. <animation>
  6137. <type>material</type>
  6138. <object-name>menu.points.text6</object-name>
  6139. <ambient>
  6140. <red>0</red>
  6141. <green>0</green>
  6142. <blue>0</blue>
  6143. </ambient>
  6144. <diffuse>
  6145. <red>0</red>
  6146. <green>0</green>
  6147. <blue>0</blue>
  6148. </diffuse>
  6149. <condition>
  6150. <not>
  6151. <equals>
  6152. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  6153. <value>6</value>
  6154. </equals>
  6155. </not>
  6156. </condition>
  6157. </animation>
  6158. <animation>
  6159. <type>material</type>
  6160. <object-name>menu.points.text6</object-name>
  6161. <ambient>
  6162. <red>1</red>
  6163. <green>1</green>
  6164. <blue>1</blue>
  6165. </ambient>
  6166. <diffuse>
  6167. <red>1</red>
  6168. <green>1</green>
  6169. <blue>1</blue>
  6170. </diffuse>
  6171. <emission>
  6172. <blue> 1 </blue>
  6173. <red> 1 </red>
  6174. <green> 1 </green>
  6175. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  6176. </emission>
  6177. <condition>
  6178. <equals>
  6179. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  6180. <value>6</value>
  6181. </equals>
  6182. </condition>
  6183. </animation>
  6184. <text>
  6185. <name>menu.points.text7</name>
  6186. <offsets>
  6187. <x-m>0.00617611</x-m>
  6188. <y-m>-0.038322</y-m>
  6189. <z-m>-0.0150966</z-m>
  6190. </offsets>
  6191. <alignment>left-center</alignment>
  6192. <axis-alignment>yz-plane</axis-alignment>
  6193. <type type="string">text-value</type>
  6194. <property>/instrumentation/garmin196/menu_points/point[7]/texte</property>
  6195. <font type="string">helvetica_bold.txf</font>
  6196. <character-size type="double">0.005</character-size>
  6197. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  6198. <font-resolution>
  6199. <width type="int">32</width>
  6200. <height type="int">32</height>
  6201. </font-resolution>
  6202. </text>
  6203. <animation>
  6204. <type>material</type>
  6205. <object-name>menu.points.text7</object-name>
  6206. <ambient>
  6207. <red>0</red>
  6208. <green>0</green>
  6209. <blue>0</blue>
  6210. </ambient>
  6211. <diffuse>
  6212. <red>0</red>
  6213. <green>0</green>
  6214. <blue>0</blue>
  6215. </diffuse>
  6216. <condition>
  6217. <not>
  6218. <equals>
  6219. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  6220. <value>7</value>
  6221. </equals>
  6222. </not>
  6223. </condition>
  6224. </animation>
  6225. <animation>
  6226. <type>material</type>
  6227. <object-name>menu.points.text7</object-name>
  6228. <ambient>
  6229. <red>1</red>
  6230. <green>1</green>
  6231. <blue>1</blue>
  6232. </ambient>
  6233. <diffuse>
  6234. <red>1</red>
  6235. <green>1</green>
  6236. <blue>1</blue>
  6237. </diffuse>
  6238. <emission>
  6239. <blue> 1 </blue>
  6240. <red> 1 </red>
  6241. <green> 1 </green>
  6242. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  6243. </emission>
  6244. <condition>
  6245. <equals>
  6246. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  6247. <value>7</value>
  6248. </equals>
  6249. </condition>
  6250. </animation>
  6251. <text>
  6252. <name>menu.points.text8</name>
  6253. <offsets>
  6254. <x-m>0.00617611</x-m>
  6255. <y-m>-0.038322</y-m>
  6256. <z-m>-0.0200966</z-m>
  6257. </offsets>
  6258. <alignment>left-center</alignment>
  6259. <axis-alignment>yz-plane</axis-alignment>
  6260. <type type="string">text-value</type>
  6261. <property>/instrumentation/garmin196/menu_points/point[8]/texte</property>
  6262. <font type="string">helvetica_bold.txf</font>
  6263. <character-size type="double">0.005</character-size>
  6264. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  6265. <font-resolution>
  6266. <width type="int">32</width>
  6267. <height type="int">32</height>
  6268. </font-resolution>
  6269. </text>
  6270. <animation>
  6271. <type>material</type>
  6272. <object-name>menu.points.text8</object-name>
  6273. <ambient>
  6274. <red>0</red>
  6275. <green>0</green>
  6276. <blue>0</blue>
  6277. </ambient>
  6278. <diffuse>
  6279. <red>0</red>
  6280. <green>0</green>
  6281. <blue>0</blue>
  6282. </diffuse>
  6283. <condition>
  6284. <not>
  6285. <equals>
  6286. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  6287. <value>8</value>
  6288. </equals>
  6289. </not>
  6290. </condition>
  6291. </animation>
  6292. <animation>
  6293. <type>material</type>
  6294. <object-name>menu.points.text8</object-name>
  6295. <ambient>
  6296. <red>1</red>
  6297. <green>1</green>
  6298. <blue>1</blue>
  6299. </ambient>
  6300. <diffuse>
  6301. <red>1</red>
  6302. <green>1</green>
  6303. <blue>1</blue>
  6304. </diffuse>
  6305. <emission>
  6306. <blue> 1 </blue>
  6307. <red> 1 </red>
  6308. <green> 1 </green>
  6309. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  6310. </emission>
  6311. <condition>
  6312. <equals>
  6313. <property>/instrumentation/garmin196/menu_points/no_ligne_selected</property>
  6314. <value>8</value>
  6315. </equals>
  6316. </condition>
  6317. </animation>
  6318. <animation>
  6319. <type>select</type>
  6320. <object-name>menu.points.profile</object-name>
  6321. <object-name>menu.points.profile.name.text</object-name>
  6322. <object-name>menu.points.profile.latitude10.text</object-name>
  6323. <object-name>menu.points.profile.latitude1.text</object-name>
  6324. <object-name>menu.points.profile.longitude10.text</object-name>
  6325. <object-name>menu.points.profile.longitude1.text</object-name>
  6326. <object-name>menu.points.profile.latitude_virgule.text</object-name>
  6327. <object-name>menu.points.profile.longitude_virgule.text</object-name>
  6328. <condition>
  6329. <and>
  6330. <greater-than-equals>
  6331. <property>/instrumentation/garmin196/status</property>
  6332. <value>132</value>
  6333. </greater-than-equals>
  6334. <less-than>
  6335. <property>/instrumentation/garmin196/status</property>
  6336. <value>139</value>
  6337. </less-than>
  6338. </and>
  6339. </condition>
  6340. </animation>
  6341. <animation>
  6342. <type>select</type>
  6343. <object-name>menu.points.profile.name.mask</object-name>
  6344. <condition>
  6345. <equals>
  6346. <property>/instrumentation/garmin196/status</property>
  6347. <value>132</value>
  6348. </equals>
  6349. </condition>
  6350. </animation>
  6351. <text>
  6352. <name>menu.points.profile.name.text</name>
  6353. <offsets>
  6354. <x-m>0.00617611</x-m>
  6355. <y-m>-0.038322</y-m>
  6356. <z-m>0.0161008</z-m>
  6357. </offsets>
  6358. <alignment>left-center</alignment>
  6359. <axis-alignment>yz-plane</axis-alignment>
  6360. <type type="string">text-value</type>
  6361. <property>/instrumentation/garmin196/menu_points/name</property>
  6362. <font type="string">helvetica_bold.txf</font>
  6363. <character-size type="double">0.005</character-size>
  6364. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  6365. <font-resolution>
  6366. <width type="int">32</width>
  6367. <height type="int">32</height>
  6368. </font-resolution>
  6369. </text>
  6370. <animation>
  6371. <type>material</type>
  6372. <object-name>menu.points.profile.name.text</object-name>
  6373. <ambient>
  6374. <red>0</red>
  6375. <green>0</green>
  6376. <blue>0</blue>
  6377. </ambient>
  6378. <diffuse>
  6379. <red>0</red>
  6380. <green>0</green>
  6381. <blue>0</blue>
  6382. </diffuse>
  6383. <condition>
  6384. <not>
  6385. <equals>
  6386. <property>/instrumentation/garmin196/status</property>
  6387. <value>132</value>
  6388. </equals>
  6389. </not>
  6390. </condition>
  6391. </animation>
  6392. <animation>
  6393. <type>material</type>
  6394. <object-name>menu.points.profile.name.text</object-name>
  6395. <ambient>
  6396. <red>1</red>
  6397. <green>1</green>
  6398. <blue>1</blue>
  6399. </ambient>
  6400. <diffuse>
  6401. <red>1</red>
  6402. <green>1</green>
  6403. <blue>1</blue>
  6404. </diffuse>
  6405. <emission>
  6406. <blue> 1 </blue>
  6407. <red> 1 </red>
  6408. <green> 1 </green>
  6409. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  6410. </emission>
  6411. <condition>
  6412. <equals>
  6413. <property>/instrumentation/garmin196/status</property>
  6414. <value>132</value>
  6415. </equals>
  6416. </condition>
  6417. </animation>
  6418. <animation>
  6419. <type>select</type>
  6420. <object-name>menu.points.profile.latitude10.mask</object-name>
  6421. <condition>
  6422. <equals>
  6423. <property>/instrumentation/garmin196/status</property>
  6424. <value>133</value>
  6425. </equals>
  6426. </condition>
  6427. </animation>
  6428. <text>
  6429. <name>menu.points.profile.latitude10.text</name>
  6430. <offsets>
  6431. <x-m>0.00617611</x-m>
  6432. <y-m>-0.038322</y-m>
  6433. <z-m>0.00419048</z-m>
  6434. </offsets>
  6435. <alignment>left-center</alignment>
  6436. <axis-alignment>yz-plane</axis-alignment>
  6437. <type type="string">text-value</type>
  6438. <property>/instrumentation/garmin196/menu_points/latitude10_text</property>
  6439. <font type="string">helvetica_bold.txf</font>
  6440. <character-size type="double">0.005</character-size>
  6441. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  6442. <font-resolution>
  6443. <width type="int">32</width>
  6444. <height type="int">32</height>
  6445. </font-resolution>
  6446. </text>
  6447. <animation>
  6448. <type>material</type>
  6449. <object-name>menu.points.profile.latitude10.text</object-name>
  6450. <ambient>
  6451. <red>0</red>
  6452. <green>0</green>
  6453. <blue>0</blue>
  6454. </ambient>
  6455. <diffuse>
  6456. <red>0</red>
  6457. <green>0</green>
  6458. <blue>0</blue>
  6459. </diffuse>
  6460. <condition>
  6461. <not>
  6462. <equals>
  6463. <property>/instrumentation/garmin196/status</property>
  6464. <value>133</value>
  6465. </equals>
  6466. </not>
  6467. </condition>
  6468. </animation>
  6469. <animation>
  6470. <type>material</type>
  6471. <object-name>menu.points.profile.latitude10.text</object-name>
  6472. <ambient>
  6473. <red>1</red>
  6474. <green>1</green>
  6475. <blue>1</blue>
  6476. </ambient>
  6477. <diffuse>
  6478. <red>1</red>
  6479. <green>1</green>
  6480. <blue>1</blue>
  6481. </diffuse>
  6482. <emission>
  6483. <blue> 1 </blue>
  6484. <red> 1 </red>
  6485. <green> 1 </green>
  6486. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  6487. </emission>
  6488. <condition>
  6489. <equals>
  6490. <property>/instrumentation/garmin196/status</property>
  6491. <value>133</value>
  6492. </equals>
  6493. </condition>
  6494. </animation>
  6495. <animation>
  6496. <type>select</type>
  6497. <object-name>menu.points.profile.latitude1.mask</object-name>
  6498. <condition>
  6499. <equals>
  6500. <property>/instrumentation/garmin196/status</property>
  6501. <value>134</value>
  6502. </equals>
  6503. </condition>
  6504. </animation>
  6505. <text>
  6506. <name>menu.points.profile.latitude_virgule.text</name>
  6507. <offsets>
  6508. <x-m>0.00617611</x-m>
  6509. <y-m>-0.0274661</y-m>
  6510. <z-m>0.00419048</z-m>
  6511. </offsets>
  6512. <alignment>left-center</alignment>
  6513. <axis-alignment>yz-plane</axis-alignment>
  6514. <type type="string">literal</type>
  6515. <text type="string">.</text>
  6516. <font type="string">helvetica_bold.txf</font>
  6517. <character-size type="double">0.005</character-size>
  6518. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  6519. <font-resolution>
  6520. <width type="int">32</width>
  6521. <height type="int">32</height>
  6522. </font-resolution>
  6523. </text>
  6524. <text>
  6525. <name>menu.points.profile.latitude1.text</name>
  6526. <offsets>
  6527. <x-m>0.00617611</x-m>
  6528. <y-m>-0.0251004</y-m>
  6529. <z-m>0.00419048</z-m>
  6530. </offsets>
  6531. <alignment>left-center</alignment>
  6532. <axis-alignment>yz-plane</axis-alignment>
  6533. <type type="string">text-value</type>
  6534. <property>/instrumentation/garmin196/menu_points/latitude1_text</property>
  6535. <font type="string">helvetica_bold.txf</font>
  6536. <character-size type="double">0.005</character-size>
  6537. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  6538. <font-resolution>
  6539. <width type="int">32</width>
  6540. <height type="int">32</height>
  6541. </font-resolution>
  6542. </text>
  6543. <animation>
  6544. <type>material</type>
  6545. <object-name>menu.points.profile.latitude1.text</object-name>
  6546. <ambient>
  6547. <red>0</red>
  6548. <green>0</green>
  6549. <blue>0</blue>
  6550. </ambient>
  6551. <diffuse>
  6552. <red>0</red>
  6553. <green>0</green>
  6554. <blue>0</blue>
  6555. </diffuse>
  6556. <condition>
  6557. <not>
  6558. <equals>
  6559. <property>/instrumentation/garmin196/status</property>
  6560. <value>134</value>
  6561. </equals>
  6562. </not>
  6563. </condition>
  6564. </animation>
  6565. <animation>
  6566. <type>material</type>
  6567. <object-name>menu.points.profile.latitude1.text</object-name>
  6568. <ambient>
  6569. <red>1</red>
  6570. <green>1</green>
  6571. <blue>1</blue>
  6572. </ambient>
  6573. <diffuse>
  6574. <red>1</red>
  6575. <green>1</green>
  6576. <blue>1</blue>
  6577. </diffuse>
  6578. <emission>
  6579. <blue> 1 </blue>
  6580. <red> 1 </red>
  6581. <green> 1 </green>
  6582. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  6583. </emission>
  6584. <condition>
  6585. <equals>
  6586. <property>/instrumentation/garmin196/status</property>
  6587. <value>134</value>
  6588. </equals>
  6589. </condition>
  6590. </animation>
  6591. <animation>
  6592. <type>select</type>
  6593. <object-name>menu.points.profile.longitude10.mask</object-name>
  6594. <condition>
  6595. <equals>
  6596. <property>/instrumentation/garmin196/status</property>
  6597. <value>135</value>
  6598. </equals>
  6599. </condition>
  6600. </animation>
  6601. <text>
  6602. <name>menu.points.profile.longitude_virgule.text</name>
  6603. <offsets>
  6604. <x-m>0.00617611</x-m>
  6605. <y-m>-0.0274661</y-m>
  6606. <z-m>-0.0075603</z-m>
  6607. </offsets>
  6608. <alignment>left-center</alignment>
  6609. <axis-alignment>yz-plane</axis-alignment>
  6610. <type type="string">literal</type>
  6611. <text type="string">.</text>
  6612. <font type="string">helvetica_bold.txf</font>
  6613. <character-size type="double">0.005</character-size>
  6614. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  6615. <font-resolution>
  6616. <width type="int">32</width>
  6617. <height type="int">32</height>
  6618. </font-resolution>
  6619. </text>
  6620. <text>
  6621. <name>menu.points.profile.longitude10.text</name>
  6622. <offsets>
  6623. <x-m>0.00617611</x-m>
  6624. <y-m>-0.038322</y-m>
  6625. <z-m>-0.0075603</z-m>
  6626. </offsets>
  6627. <alignment>left-center</alignment>
  6628. <axis-alignment>yz-plane</axis-alignment>
  6629. <type type="string">text-value</type>
  6630. <property>/instrumentation/garmin196/menu_points/longitude10_text</property>
  6631. <font type="string">helvetica_bold.txf</font>
  6632. <character-size type="double">0.005</character-size>
  6633. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  6634. <font-resolution>
  6635. <width type="int">32</width>
  6636. <height type="int">32</height>
  6637. </font-resolution>
  6638. </text>
  6639. <animation>
  6640. <type>material</type>
  6641. <object-name>menu.points.profile.longitude10.text</object-name>
  6642. <ambient>
  6643. <red>0</red>
  6644. <green>0</green>
  6645. <blue>0</blue>
  6646. </ambient>
  6647. <diffuse>
  6648. <red>0</red>
  6649. <green>0</green>
  6650. <blue>0</blue>
  6651. </diffuse>
  6652. <condition>
  6653. <not>
  6654. <equals>
  6655. <property>/instrumentation/garmin196/status</property>
  6656. <value>135</value>
  6657. </equals>
  6658. </not>
  6659. </condition>
  6660. </animation>
  6661. <animation>
  6662. <type>material</type>
  6663. <object-name>menu.points.profile.longitude10.text</object-name>
  6664. <ambient>
  6665. <red>1</red>
  6666. <green>1</green>
  6667. <blue>1</blue>
  6668. </ambient>
  6669. <diffuse>
  6670. <red>1</red>
  6671. <green>1</green>
  6672. <blue>1</blue>
  6673. </diffuse>
  6674. <emission>
  6675. <blue> 1 </blue>
  6676. <red> 1 </red>
  6677. <green> 1 </green>
  6678. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  6679. </emission>
  6680. <condition>
  6681. <equals>
  6682. <property>/instrumentation/garmin196/status</property>
  6683. <value>135</value>
  6684. </equals>
  6685. </condition>
  6686. </animation>
  6687. <animation>
  6688. <type>select</type>
  6689. <object-name>menu.points.profile.longitude1.mask</object-name>
  6690. <condition>
  6691. <equals>
  6692. <property>/instrumentation/garmin196/status</property>
  6693. <value>136</value>
  6694. </equals>
  6695. </condition>
  6696. </animation>
  6697. <text>
  6698. <name>menu.points.profile.longitude1.text</name>
  6699. <offsets>
  6700. <x-m>0.00617611</x-m>
  6701. <y-m>-0.0251004</y-m>
  6702. <z-m>-0.0075603</z-m>
  6703. </offsets>
  6704. <alignment>left-center</alignment>
  6705. <axis-alignment>yz-plane</axis-alignment>
  6706. <type type="string">text-value</type>
  6707. <property>/instrumentation/garmin196/menu_points/longitude1_text</property>
  6708. <font type="string">helvetica_bold.txf</font>
  6709. <character-size type="double">0.005</character-size>
  6710. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  6711. <font-resolution>
  6712. <width type="int">32</width>
  6713. <height type="int">32</height>
  6714. </font-resolution>
  6715. </text>
  6716. <animation>
  6717. <type>material</type>
  6718. <object-name>menu.points.profile.longitude1.text</object-name>
  6719. <ambient>
  6720. <red>0</red>
  6721. <green>0</green>
  6722. <blue>0</blue>
  6723. </ambient>
  6724. <diffuse>
  6725. <red>0</red>
  6726. <green>0</green>
  6727. <blue>0</blue>
  6728. </diffuse>
  6729. <condition>
  6730. <not>
  6731. <equals>
  6732. <property>/instrumentation/garmin196/status</property>
  6733. <value>136</value>
  6734. </equals>
  6735. </not>
  6736. </condition>
  6737. </animation>
  6738. <animation>
  6739. <type>material</type>
  6740. <object-name>menu.points.profile.longitude1.text</object-name>
  6741. <ambient>
  6742. <red>1</red>
  6743. <green>1</green>
  6744. <blue>1</blue>
  6745. </ambient>
  6746. <diffuse>
  6747. <red>1</red>
  6748. <green>1</green>
  6749. <blue>1</blue>
  6750. </diffuse>
  6751. <emission>
  6752. <blue> 1 </blue>
  6753. <red> 1 </red>
  6754. <green> 1 </green>
  6755. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  6756. </emission>
  6757. <condition>
  6758. <equals>
  6759. <property>/instrumentation/garmin196/status</property>
  6760. <value>136</value>
  6761. </equals>
  6762. </condition>
  6763. </animation>
  6764. <!--Menu aircraft-->
  6765. <animation>
  6766. <type>select</type>
  6767. <object-name>menu.aircraft.list</object-name>
  6768. <object-name>menu.aircraft.text</object-name>
  6769. <object-name>menu.aircraft.text0</object-name>
  6770. <object-name>menu.aircraft.text1</object-name>
  6771. <object-name>menu.aircraft.text2</object-name>
  6772. <object-name>menu.aircraft.text3</object-name>
  6773. <object-name>menu.aircraft.text4</object-name>
  6774. <object-name>menu.aircraft.text5</object-name>
  6775. <condition>
  6776. <and>
  6777. <greater-than-equals>
  6778. <property>/instrumentation/garmin196/status</property>
  6779. <value>140</value>
  6780. </greater-than-equals>
  6781. <less-than>
  6782. <property>/instrumentation/garmin196/status</property>
  6783. <value>142</value>
  6784. </less-than>
  6785. </and>
  6786. </condition>
  6787. </animation>
  6788. <animation>
  6789. <type>select</type>
  6790. <object-name>menu.aircraft.list.mask</object-name>
  6791. <condition>
  6792. <equals>
  6793. <property>/instrumentation/garmin196/status</property>
  6794. <value>141</value>
  6795. </equals>
  6796. </condition>
  6797. </animation>
  6798. <animation>
  6799. <type>translate</type>
  6800. <object-name>menu.aircraft.list.mask</object-name>
  6801. <property>/instrumentation/garmin196/menu_aircraft/no_ligne_selected</property>
  6802. <factor>-0.006</factor>
  6803. <axis>
  6804. <x> 0 </x>
  6805. <y> 0 </y>
  6806. <z> 1 </z>
  6807. </axis>
  6808. </animation>
  6809. <text>
  6810. <name>menu.aircraft.text</name>
  6811. <offsets>
  6812. <x-m>0.00617611</x-m>
  6813. <y-m>-0.038322</y-m>
  6814. <z-m>0.016118</z-m>
  6815. </offsets>
  6816. <alignment>left-center</alignment>
  6817. <axis-alignment>yz-plane</axis-alignment>
  6818. <type type="string">text-value</type>
  6819. <property>/instrumentation/garmin196/menu_aircraft/text</property>
  6820. <font type="string">helvetica_bold.txf</font>
  6821. <character-size type="double">0.004</character-size>
  6822. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  6823. <font-resolution>
  6824. <width type="int">32</width>
  6825. <height type="int">32</height>
  6826. </font-resolution>
  6827. </text>
  6828. <animation>
  6829. <type>material</type>
  6830. <object-name>menu.aircraft.text</object-name>
  6831. <ambient>
  6832. <red>0</red>
  6833. <green>0</green>
  6834. <blue>0</blue>
  6835. </ambient>
  6836. <diffuse>
  6837. <red>0</red>
  6838. <green>0</green>
  6839. <blue>0</blue>
  6840. </diffuse>
  6841. </animation>
  6842. <text>
  6843. <name>menu.aircraft.text0</name>
  6844. <offsets>
  6845. <x-m>0.00617611</x-m>
  6846. <y-m>-0.038322</y-m>
  6847. <z-m>0.00931239</z-m>
  6848. </offsets>
  6849. <alignment>left-center</alignment>
  6850. <axis-alignment>yz-plane</axis-alignment>
  6851. <type type="string">text-value</type>
  6852. <property>/instrumentation/garmin196/menu_aircraft/aircraft[0]/texte</property>
  6853. <font type="string">helvetica_bold.txf</font>
  6854. <character-size type="double">0.005</character-size>
  6855. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  6856. <font-resolution>
  6857. <width type="int">32</width>
  6858. <height type="int">32</height>
  6859. </font-resolution>
  6860. </text>
  6861. <animation>
  6862. <type>material</type>
  6863. <object-name>menu.aircraft.text0</object-name>
  6864. <ambient>
  6865. <red>0</red>
  6866. <green>0</green>
  6867. <blue>0</blue>
  6868. </ambient>
  6869. <diffuse>
  6870. <red>0</red>
  6871. <green>0</green>
  6872. <blue>0</blue>
  6873. </diffuse>
  6874. <condition>
  6875. <not>
  6876. <equals>
  6877. <property>/instrumentation/garmin196/menu_aircraft/no_ligne_selected</property>
  6878. <value>0</value>
  6879. </equals>
  6880. </not>
  6881. </condition>
  6882. </animation>
  6883. <animation>
  6884. <type>material</type>
  6885. <object-name>menu.aircraft.text0</object-name>
  6886. <ambient>
  6887. <red>1</red>
  6888. <green>1</green>
  6889. <blue>1</blue>
  6890. </ambient>
  6891. <diffuse>
  6892. <red>1</red>
  6893. <green>1</green>
  6894. <blue>1</blue>
  6895. </diffuse>
  6896. <emission>
  6897. <blue> 1 </blue>
  6898. <red> 1 </red>
  6899. <green> 1 </green>
  6900. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  6901. </emission>
  6902. <condition>
  6903. <equals>
  6904. <property>/instrumentation/garmin196/menu_aircraft/no_ligne_selected</property>
  6905. <value>0</value>
  6906. </equals>
  6907. </condition>
  6908. </animation>
  6909. <text>
  6910. <name>menu.aircraft.text1</name>
  6911. <offsets>
  6912. <x-m>0.00617611</x-m>
  6913. <y-m>-0.038322</y-m>
  6914. <z-m>0.00340291</z-m>
  6915. </offsets>
  6916. <alignment>left-center</alignment>
  6917. <axis-alignment>yz-plane</axis-alignment>
  6918. <type type="string">text-value</type>
  6919. <property>/instrumentation/garmin196/menu_aircraft/aircraft[1]/texte</property>
  6920. <font type="string">helvetica_bold.txf</font>
  6921. <character-size type="double">0.005</character-size>
  6922. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  6923. <font-resolution>
  6924. <width type="int">32</width>
  6925. <height type="int">32</height>
  6926. </font-resolution>
  6927. </text>
  6928. <animation>
  6929. <type>material</type>
  6930. <object-name>menu.aircraft.text1</object-name>
  6931. <ambient>
  6932. <red>0</red>
  6933. <green>0</green>
  6934. <blue>0</blue>
  6935. </ambient>
  6936. <diffuse>
  6937. <red>0</red>
  6938. <green>0</green>
  6939. <blue>0</blue>
  6940. </diffuse>
  6941. <condition>
  6942. <not>
  6943. <equals>
  6944. <property>/instrumentation/garmin196/menu_aircraft/no_ligne_selected</property>
  6945. <value>1</value>
  6946. </equals>
  6947. </not>
  6948. </condition>
  6949. </animation>
  6950. <animation>
  6951. <type>material</type>
  6952. <object-name>menu.aircraft.text1</object-name>
  6953. <ambient>
  6954. <red>1</red>
  6955. <green>1</green>
  6956. <blue>1</blue>
  6957. </ambient>
  6958. <diffuse>
  6959. <red>1</red>
  6960. <green>1</green>
  6961. <blue>1</blue>
  6962. </diffuse>
  6963. <emission>
  6964. <blue> 1 </blue>
  6965. <red> 1 </red>
  6966. <green> 1 </green>
  6967. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  6968. </emission>
  6969. <condition>
  6970. <equals>
  6971. <property>/instrumentation/garmin196/menu_aircraft/no_ligne_selected</property>
  6972. <value>1</value>
  6973. </equals>
  6974. </condition>
  6975. </animation>
  6976. <text>
  6977. <name>menu.aircraft.text2</name>
  6978. <offsets>
  6979. <x-m>0.00617611</x-m>
  6980. <y-m>-0.038322</y-m>
  6981. <z-m>-0.00313332</z-m>
  6982. </offsets>
  6983. <alignment>left-center</alignment>
  6984. <axis-alignment>yz-plane</axis-alignment>
  6985. <type type="string">text-value</type>
  6986. <property>/instrumentation/garmin196/menu_aircraft/aircraft[2]/texte</property>
  6987. <font type="string">helvetica_bold.txf</font>
  6988. <character-size type="double">0.005</character-size>
  6989. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  6990. <font-resolution>
  6991. <width type="int">32</width>
  6992. <height type="int">32</height>
  6993. </font-resolution>
  6994. </text>
  6995. <animation>
  6996. <type>material</type>
  6997. <object-name>menu.aircraft.text2</object-name>
  6998. <ambient>
  6999. <red>0</red>
  7000. <green>0</green>
  7001. <blue>0</blue>
  7002. </ambient>
  7003. <diffuse>
  7004. <red>0</red>
  7005. <green>0</green>
  7006. <blue>0</blue>
  7007. </diffuse>
  7008. <condition>
  7009. <not>
  7010. <equals>
  7011. <property>/instrumentation/garmin196/menu_aircraft/no_ligne_selected</property>
  7012. <value>2</value>
  7013. </equals>
  7014. </not>
  7015. </condition>
  7016. </animation>
  7017. <animation>
  7018. <type>material</type>
  7019. <object-name>menu.aircraft.text2</object-name>
  7020. <ambient>
  7021. <red>1</red>
  7022. <green>1</green>
  7023. <blue>1</blue>
  7024. </ambient>
  7025. <diffuse>
  7026. <red>1</red>
  7027. <green>1</green>
  7028. <blue>1</blue>
  7029. </diffuse>
  7030. <emission>
  7031. <blue> 1 </blue>
  7032. <red> 1 </red>
  7033. <green> 1 </green>
  7034. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  7035. </emission>
  7036. <condition>
  7037. <equals>
  7038. <property>/instrumentation/garmin196/menu_aircraft/no_ligne_selected</property>
  7039. <value>2</value>
  7040. </equals>
  7041. </condition>
  7042. </animation>
  7043. <text>
  7044. <name>menu.aircraft.text3</name>
  7045. <offsets>
  7046. <x-m>0.00617611</x-m>
  7047. <y-m>-0.038322</y-m>
  7048. <z-m>-0.00895326</z-m>
  7049. </offsets>
  7050. <alignment>left-center</alignment>
  7051. <axis-alignment>yz-plane</axis-alignment>
  7052. <type type="string">text-value</type>
  7053. <property>/instrumentation/garmin196/menu_aircraft/aircraft[3]/texte</property>
  7054. <font type="string">helvetica_bold.txf</font>
  7055. <character-size type="double">0.005</character-size>
  7056. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7057. <font-resolution>
  7058. <width type="int">32</width>
  7059. <height type="int">32</height>
  7060. </font-resolution>
  7061. </text>
  7062. <animation>
  7063. <type>material</type>
  7064. <object-name>menu.aircraft.text3</object-name>
  7065. <ambient>
  7066. <red>0</red>
  7067. <green>0</green>
  7068. <blue>0</blue>
  7069. </ambient>
  7070. <diffuse>
  7071. <red>0</red>
  7072. <green>0</green>
  7073. <blue>0</blue>
  7074. </diffuse>
  7075. <condition>
  7076. <not>
  7077. <equals>
  7078. <property>/instrumentation/garmin196/menu_aircraft/no_ligne_selected</property>
  7079. <value>3</value>
  7080. </equals>
  7081. </not>
  7082. </condition>
  7083. </animation>
  7084. <animation>
  7085. <type>material</type>
  7086. <object-name>menu.aircraft.text3</object-name>
  7087. <ambient>
  7088. <red>1</red>
  7089. <green>1</green>
  7090. <blue>1</blue>
  7091. </ambient>
  7092. <diffuse>
  7093. <red>1</red>
  7094. <green>1</green>
  7095. <blue>1</blue>
  7096. </diffuse>
  7097. <emission>
  7098. <blue> 1 </blue>
  7099. <red> 1 </red>
  7100. <green> 1 </green>
  7101. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  7102. </emission>
  7103. <condition>
  7104. <equals>
  7105. <property>/instrumentation/garmin196/menu_aircraft/no_ligne_selected</property>
  7106. <value>3</value>
  7107. </equals>
  7108. </condition>
  7109. </animation>
  7110. <text>
  7111. <name>menu.aircraft.text4</name>
  7112. <offsets>
  7113. <x-m>0.00617611</x-m>
  7114. <y-m>-0.038322</y-m>
  7115. <z-m>-0.0145941</z-m>
  7116. </offsets>
  7117. <alignment>left-center</alignment>
  7118. <axis-alignment>yz-plane</axis-alignment>
  7119. <type type="string">text-value</type>
  7120. <property>/instrumentation/garmin196/menu_aircraft/aircraft[4]/texte</property>
  7121. <font type="string">helvetica_bold.txf</font>
  7122. <character-size type="double">0.005</character-size>
  7123. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7124. <font-resolution>
  7125. <width type="int">32</width>
  7126. <height type="int">32</height>
  7127. </font-resolution>
  7128. </text>
  7129. <animation>
  7130. <type>material</type>
  7131. <object-name>menu.aircraft.text4</object-name>
  7132. <ambient>
  7133. <red>0</red>
  7134. <green>0</green>
  7135. <blue>0</blue>
  7136. </ambient>
  7137. <diffuse>
  7138. <red>0</red>
  7139. <green>0</green>
  7140. <blue>0</blue>
  7141. </diffuse>
  7142. <condition>
  7143. <not>
  7144. <equals>
  7145. <property>/instrumentation/garmin196/menu_aircraft/no_ligne_selected</property>
  7146. <value>4</value>
  7147. </equals>
  7148. </not>
  7149. </condition>
  7150. </animation>
  7151. <animation>
  7152. <type>material</type>
  7153. <object-name>menu.aircraft.text4</object-name>
  7154. <ambient>
  7155. <red>1</red>
  7156. <green>1</green>
  7157. <blue>1</blue>
  7158. </ambient>
  7159. <diffuse>
  7160. <red>1</red>
  7161. <green>1</green>
  7162. <blue>1</blue>
  7163. </diffuse>
  7164. <emission>
  7165. <blue> 1 </blue>
  7166. <red> 1 </red>
  7167. <green> 1 </green>
  7168. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  7169. </emission>
  7170. <condition>
  7171. <equals>
  7172. <property>/instrumentation/garmin196/menu_aircraft/no_ligne_selected</property>
  7173. <value>4</value>
  7174. </equals>
  7175. </condition>
  7176. </animation>
  7177. <text>
  7178. <name>menu.aircraft.text5</name>
  7179. <offsets>
  7180. <x-m>0.00617611</x-m>
  7181. <y-m>-0.038322</y-m>
  7182. <z-m>-0.0208617</z-m>
  7183. </offsets>
  7184. <alignment>left-center</alignment>
  7185. <axis-alignment>yz-plane</axis-alignment>
  7186. <type type="string">text-value</type>
  7187. <property>/instrumentation/garmin196/menu_aircraft/aircraft[5]/texte</property>
  7188. <font type="string">helvetica_bold.txf</font>
  7189. <character-size type="double">0.005</character-size>
  7190. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7191. <font-resolution>
  7192. <width type="int">32</width>
  7193. <height type="int">32</height>
  7194. </font-resolution>
  7195. </text>
  7196. <animation>
  7197. <type>material</type>
  7198. <object-name>menu.aircraft.text5</object-name>
  7199. <ambient>
  7200. <red>0</red>
  7201. <green>0</green>
  7202. <blue>0</blue>
  7203. </ambient>
  7204. <diffuse>
  7205. <red>0</red>
  7206. <green>0</green>
  7207. <blue>0</blue>
  7208. </diffuse>
  7209. <condition>
  7210. <not>
  7211. <equals>
  7212. <property>/instrumentation/garmin196/menu_aircraft/no_ligne_selected</property>
  7213. <value>5</value>
  7214. </equals>
  7215. </not>
  7216. </condition>
  7217. </animation>
  7218. <animation>
  7219. <type>material</type>
  7220. <object-name>menu.aircraft.text5</object-name>
  7221. <ambient>
  7222. <red>1</red>
  7223. <green>1</green>
  7224. <blue>1</blue>
  7225. </ambient>
  7226. <diffuse>
  7227. <red>1</red>
  7228. <green>1</green>
  7229. <blue>1</blue>
  7230. </diffuse>
  7231. <emission>
  7232. <blue> 1 </blue>
  7233. <red> 1 </red>
  7234. <green> 1 </green>
  7235. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  7236. </emission>
  7237. <condition>
  7238. <equals>
  7239. <property>/instrumentation/garmin196/menu_aircraft/no_ligne_selected</property>
  7240. <value>5</value>
  7241. </equals>
  7242. </condition>
  7243. </animation>
  7244. <animation>
  7245. <type>select</type>
  7246. <object-name>menu.aircraft.profile</object-name>
  7247. <object-name>menu.aircraft.profile.name.text</object-name>
  7248. <object-name>menu.aircraft.profile.cruise.text</object-name>
  7249. <object-name>menu.aircraft.profile.max.text</object-name>
  7250. <object-name>menu.aircraft.profile.fuelflow.text</object-name>
  7251. <condition>
  7252. <and>
  7253. <greater-than-equals>
  7254. <property>/instrumentation/garmin196/status</property>
  7255. <value>142</value>
  7256. </greater-than-equals>
  7257. <less-than>
  7258. <property>/instrumentation/garmin196/status</property>
  7259. <value>150</value>
  7260. </less-than>
  7261. </and>
  7262. </condition>
  7263. </animation>
  7264. <animation>
  7265. <type>select</type>
  7266. <object-name>menu.aircraft.profile.name.mask</object-name>
  7267. <condition>
  7268. <equals>
  7269. <property>/instrumentation/garmin196/status</property>
  7270. <value>142</value>
  7271. </equals>
  7272. </condition>
  7273. </animation>
  7274. <animation>
  7275. <type>select</type>
  7276. <object-name>menu.aircraft.profile.cruise.mask</object-name>
  7277. <condition>
  7278. <equals>
  7279. <property>/instrumentation/garmin196/status</property>
  7280. <value>143</value>
  7281. </equals>
  7282. </condition>
  7283. </animation>
  7284. <animation>
  7285. <type>select</type>
  7286. <object-name>menu.aircraft.profile.max.mask</object-name>
  7287. <condition>
  7288. <equals>
  7289. <property>/instrumentation/garmin196/status</property>
  7290. <value>144</value>
  7291. </equals>
  7292. </condition>
  7293. </animation>
  7294. <animation>
  7295. <type>select</type>
  7296. <object-name>menu.aircraft.profile.fuelflow.mask</object-name>
  7297. <condition>
  7298. <equals>
  7299. <property>/instrumentation/garmin196/status</property>
  7300. <value>145</value>
  7301. </equals>
  7302. </condition>
  7303. </animation>
  7304. <text>
  7305. <name>menu.aircraft.profile.name.text</name>
  7306. <offsets>
  7307. <x-m>0.00617611</x-m>
  7308. <y-m>-0.038577</y-m>
  7309. <z-m>0.015899</z-m>
  7310. </offsets>
  7311. <alignment>left-center</alignment>
  7312. <axis-alignment>yz-plane</axis-alignment>
  7313. <type type="string">text-value</type>
  7314. <property>/instrumentation/garmin196/menu_aircraft/selected-name</property>
  7315. <font type="string">helvetica_bold.txf</font>
  7316. <character-size type="double">0.005</character-size>
  7317. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7318. <font-resolution>
  7319. <width type="int">32</width>
  7320. <height type="int">32</height>
  7321. </font-resolution>
  7322. </text>
  7323. <animation>
  7324. <type>material</type>
  7325. <object-name>menu.aircraft.profile.name.text</object-name>
  7326. <ambient>
  7327. <red>0</red>
  7328. <green>0</green>
  7329. <blue>0</blue>
  7330. </ambient>
  7331. <diffuse>
  7332. <red>0</red>
  7333. <green>0</green>
  7334. <blue>0</blue>
  7335. </diffuse>
  7336. <condition>
  7337. <not>
  7338. <equals>
  7339. <property>/instrumentation/garmin196/status</property>
  7340. <value>142</value>
  7341. </equals>
  7342. </not>
  7343. </condition>
  7344. </animation>
  7345. <animation>
  7346. <type>material</type>
  7347. <object-name>menu.aircraft.profile.name.text</object-name>
  7348. <ambient>
  7349. <red>1</red>
  7350. <green>1</green>
  7351. <blue>1</blue>
  7352. </ambient>
  7353. <diffuse>
  7354. <red>1</red>
  7355. <green>1</green>
  7356. <blue>1</blue>
  7357. </diffuse>
  7358. <emission>
  7359. <blue> 1 </blue>
  7360. <red> 1 </red>
  7361. <green> 1 </green>
  7362. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  7363. </emission>
  7364. <condition>
  7365. <equals>
  7366. <property>/instrumentation/garmin196/status</property>
  7367. <value>142</value>
  7368. </equals>
  7369. </condition>
  7370. </animation>
  7371. <text>
  7372. <name>menu.aircraft.profile.cruise.text</name>
  7373. <offsets>
  7374. <x-m>0.00617611</x-m>
  7375. <y-m>-0.038577</y-m>
  7376. <z-m>0.00395431</z-m>
  7377. </offsets>
  7378. <alignment>left-center</alignment>
  7379. <axis-alignment>yz-plane</axis-alignment>
  7380. <type type="string">text-value</type>
  7381. <property>/instrumentation/garmin196/menu_aircraft/selected-cruise-display</property>
  7382. <font type="string">helvetica_bold.txf</font>
  7383. <character-size type="double">0.005</character-size>
  7384. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7385. <font-resolution>
  7386. <width type="int">32</width>
  7387. <height type="int">32</height>
  7388. </font-resolution>
  7389. </text>
  7390. <animation>
  7391. <type>material</type>
  7392. <object-name>menu.aircraft.profile.cruise.text</object-name>
  7393. <ambient>
  7394. <red>0</red>
  7395. <green>0</green>
  7396. <blue>0</blue>
  7397. </ambient>
  7398. <diffuse>
  7399. <red>0</red>
  7400. <green>0</green>
  7401. <blue>0</blue>
  7402. </diffuse>
  7403. <condition>
  7404. <not>
  7405. <equals>
  7406. <property>/instrumentation/garmin196/status</property>
  7407. <value>143</value>
  7408. </equals>
  7409. </not>
  7410. </condition>
  7411. </animation>
  7412. <animation>
  7413. <type>material</type>
  7414. <object-name>menu.aircraft.profile.cruise.text</object-name>
  7415. <ambient>
  7416. <red>1</red>
  7417. <green>1</green>
  7418. <blue>1</blue>
  7419. </ambient>
  7420. <diffuse>
  7421. <red>1</red>
  7422. <green>1</green>
  7423. <blue>1</blue>
  7424. </diffuse>
  7425. <emission>
  7426. <blue> 1 </blue>
  7427. <red> 1 </red>
  7428. <green> 1 </green>
  7429. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  7430. </emission>
  7431. <condition>
  7432. <equals>
  7433. <property>/instrumentation/garmin196/status</property>
  7434. <value>143</value>
  7435. </equals>
  7436. </condition>
  7437. </animation>
  7438. <text>
  7439. <name>menu.aircraft.profile.max.text</name>
  7440. <offsets>
  7441. <x-m>0.00617611</x-m>
  7442. <y-m>-0.0104393</y-m>
  7443. <z-m>0.00395431</z-m>
  7444. </offsets>
  7445. <alignment>left-center</alignment>
  7446. <axis-alignment>yz-plane</axis-alignment>
  7447. <type type="string">text-value</type>
  7448. <property>/instrumentation/garmin196/menu_aircraft/selected-max-display</property>
  7449. <font type="string">helvetica_bold.txf</font>
  7450. <character-size type="double">0.005</character-size>
  7451. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7452. <font-resolution>
  7453. <width type="int">32</width>
  7454. <height type="int">32</height>
  7455. </font-resolution>
  7456. </text>
  7457. <animation>
  7458. <type>material</type>
  7459. <object-name>menu.aircraft.profile.max.text</object-name>
  7460. <ambient>
  7461. <red>0</red>
  7462. <green>0</green>
  7463. <blue>0</blue>
  7464. </ambient>
  7465. <diffuse>
  7466. <red>0</red>
  7467. <green>0</green>
  7468. <blue>0</blue>
  7469. </diffuse>
  7470. <condition>
  7471. <not>
  7472. <equals>
  7473. <property>/instrumentation/garmin196/status</property>
  7474. <value>144</value>
  7475. </equals>
  7476. </not>
  7477. </condition>
  7478. </animation>
  7479. <animation>
  7480. <type>material</type>
  7481. <object-name>menu.aircraft.profile.max.text</object-name>
  7482. <ambient>
  7483. <red>1</red>
  7484. <green>1</green>
  7485. <blue>1</blue>
  7486. </ambient>
  7487. <diffuse>
  7488. <red>1</red>
  7489. <green>1</green>
  7490. <blue>1</blue>
  7491. </diffuse>
  7492. <emission>
  7493. <blue> 1 </blue>
  7494. <red> 1 </red>
  7495. <green> 1 </green>
  7496. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  7497. </emission>
  7498. <condition>
  7499. <equals>
  7500. <property>/instrumentation/garmin196/status</property>
  7501. <value>144</value>
  7502. </equals>
  7503. </condition>
  7504. </animation>
  7505. <text>
  7506. <name>menu.aircraft.profile.fuelflow.text</name>
  7507. <offsets>
  7508. <x-m>0.00617611</x-m>
  7509. <y-m>-0.038577</y-m>
  7510. <z-m>-0.00540647</z-m>
  7511. </offsets>
  7512. <alignment>left-center</alignment>
  7513. <axis-alignment>yz-plane</axis-alignment>
  7514. <type type="string">text-value</type>
  7515. <property>/instrumentation/garmin196/menu_aircraft/selected-fuelflow</property>
  7516. <font type="string">helvetica_bold.txf</font>
  7517. <character-size type="double">0.005</character-size>
  7518. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7519. <font-resolution>
  7520. <width type="int">32</width>
  7521. <height type="int">32</height>
  7522. </font-resolution>
  7523. </text>
  7524. <animation>
  7525. <type>material</type>
  7526. <object-name>menu.aircraft.profile.fuelflow.text</object-name>
  7527. <ambient>
  7528. <red>0</red>
  7529. <green>0</green>
  7530. <blue>0</blue>
  7531. </ambient>
  7532. <diffuse>
  7533. <red>0</red>
  7534. <green>0</green>
  7535. <blue>0</blue>
  7536. </diffuse>
  7537. <condition>
  7538. <not>
  7539. <equals>
  7540. <property>/instrumentation/garmin196/status</property>
  7541. <value>145</value>
  7542. </equals>
  7543. </not>
  7544. </condition>
  7545. </animation>
  7546. <animation>
  7547. <type>material</type>
  7548. <object-name>menu.aircraft.profile.fuelflow.text</object-name>
  7549. <ambient>
  7550. <red>1</red>
  7551. <green>1</green>
  7552. <blue>1</blue>
  7553. </ambient>
  7554. <diffuse>
  7555. <red>1</red>
  7556. <green>1</green>
  7557. <blue>1</blue>
  7558. </diffuse>
  7559. <emission>
  7560. <blue> 1 </blue>
  7561. <red> 1 </red>
  7562. <green> 1 </green>
  7563. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  7564. </emission>
  7565. <condition>
  7566. <equals>
  7567. <property>/instrumentation/garmin196/status</property>
  7568. <value>145</value>
  7569. </equals>
  7570. </condition>
  7571. </animation>
  7572. <!--Menu e6b-->
  7573. <animation>
  7574. <type>select</type>
  7575. <object-name>menu.e6b</object-name>
  7576. <object-name>menu.e6b.indicated-altitude.text</object-name>
  7577. <object-name>menu.e6b.baro-pressure.text</object-name>
  7578. <object-name>menu.e6b.calibrated-airspeed.text</object-name>
  7579. <object-name>menu.e6b.air-temp.text</object-name>
  7580. <object-name>menu.e6b.heading.text</object-name>
  7581. <object-name>menu.e6b.head-wind.text</object-name>
  7582. <object-name>menu.e6b.wind-from.text</object-name>
  7583. <object-name>menu.e6b.wind-speed.text</object-name>
  7584. <object-name>menu.e6b.true-airspeed.text</object-name>
  7585. <object-name>menu.e6b.density-altitude.text</object-name>
  7586. <condition>
  7587. <equals>
  7588. <property>/instrumentation/garmin196/status</property>
  7589. <value>150</value>
  7590. </equals>
  7591. </condition>
  7592. </animation>
  7593. <text>
  7594. <name>menu.e6b.indicated-altitude.text</name>
  7595. <offsets>
  7596. <x-m>0.00567611</x-m>
  7597. <y-m>-0.0387172</y-m>
  7598. <z-m>0.0225294</z-m>
  7599. </offsets>
  7600. <alignment>left-center</alignment>
  7601. <axis-alignment>yz-plane</axis-alignment>
  7602. <type type="string">text-value</type>
  7603. <property>/instrumentation/garmin196/menu_e6b/indicated-altitude</property>
  7604. <font type="string">helvetica_bold.txf</font>
  7605. <character-size type="double">0.004</character-size>
  7606. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7607. <font-resolution>
  7608. <width type="int">32</width>
  7609. <height type="int">32</height>
  7610. </font-resolution>
  7611. </text>
  7612. <text>
  7613. <name>menu.e6b.baro-pressure.text</name>
  7614. <offsets>
  7615. <x-m>0.00567611</x-m>
  7616. <y-m>-0.0103718</y-m>
  7617. <z-m>0.0225294</z-m>
  7618. </offsets>
  7619. <alignment>left-center</alignment>
  7620. <axis-alignment>yz-plane</axis-alignment>
  7621. <type type="string">text-value</type>
  7622. <property>/instrumentation/garmin196/menu_e6b/baro-pressure</property>
  7623. <font type="string">helvetica_bold.txf</font>
  7624. <character-size type="double">0.004</character-size>
  7625. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7626. <font-resolution>
  7627. <width type="int">32</width>
  7628. <height type="int">32</height>
  7629. </font-resolution>
  7630. </text>
  7631. <text>
  7632. <name>menu.e6b.calibrated-airspeed.text</name>
  7633. <offsets>
  7634. <x-m>0.00567611</x-m>
  7635. <y-m>-0.0387172</y-m>
  7636. <z-m>0.0126624</z-m>
  7637. </offsets>
  7638. <alignment>left-center</alignment>
  7639. <axis-alignment>yz-plane</axis-alignment>
  7640. <type type="string">text-value</type>
  7641. <property>/instrumentation/garmin196/menu_e6b/calibrated-airspeed</property>
  7642. <font type="string">helvetica_bold.txf</font>
  7643. <character-size type="double">0.004</character-size>
  7644. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7645. <font-resolution>
  7646. <width type="int">32</width>
  7647. <height type="int">32</height>
  7648. </font-resolution>
  7649. </text>
  7650. <text>
  7651. <name>menu.e6b.air-temp.text</name>
  7652. <offsets>
  7653. <x-m>0.00567611</x-m>
  7654. <y-m>-0.0103718</y-m>
  7655. <z-m>0.0126624</z-m>
  7656. </offsets>
  7657. <alignment>left-center</alignment>
  7658. <axis-alignment>yz-plane</axis-alignment>
  7659. <type type="string">text-value</type>
  7660. <property>/instrumentation/garmin196/menu_e6b/air-temp</property>
  7661. <font type="string">helvetica_bold.txf</font>
  7662. <character-size type="double">0.004</character-size>
  7663. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7664. <font-resolution>
  7665. <width type="int">32</width>
  7666. <height type="int">32</height>
  7667. </font-resolution>
  7668. </text>
  7669. <text>
  7670. <name>menu.e6b.heading.text</name>
  7671. <offsets>
  7672. <x-m>0.00567611</x-m>
  7673. <y-m>-0.0387172</y-m>
  7674. <z-m>0.00252619</z-m>
  7675. </offsets>
  7676. <alignment>left-center</alignment>
  7677. <axis-alignment>yz-plane</axis-alignment>
  7678. <type type="string">text-value</type>
  7679. <property>/instrumentation/garmin196/menu_e6b/heading</property>
  7680. <font type="string">helvetica_bold.txf</font>
  7681. <character-size type="double">0.004</character-size>
  7682. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7683. <font-resolution>
  7684. <width type="int">32</width>
  7685. <height type="int">32</height>
  7686. </font-resolution>
  7687. </text>
  7688. <text>
  7689. <name>menu.e6b.head-wind.text</name>
  7690. <offsets>
  7691. <x-m>0.00567611</x-m>
  7692. <y-m>-0.0103718</y-m>
  7693. <z-m>0.00252619</z-m>
  7694. </offsets>
  7695. <alignment>left-center</alignment>
  7696. <axis-alignment>yz-plane</axis-alignment>
  7697. <type type="string">text-value</type>
  7698. <property>/instrumentation/garmin196/menu_e6b/head-wind</property>
  7699. <font type="string">helvetica_bold.txf</font>
  7700. <character-size type="double">0.004</character-size>
  7701. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7702. <font-resolution>
  7703. <width type="int">32</width>
  7704. <height type="int">32</height>
  7705. </font-resolution>
  7706. </text>
  7707. <text>
  7708. <name>menu.e6b.wind-from.text</name>
  7709. <offsets>
  7710. <x-m>0.00567611</x-m>
  7711. <y-m>-0.0387172</y-m>
  7712. <z-m>-0.00698207</z-m>
  7713. </offsets>
  7714. <alignment>left-center</alignment>
  7715. <axis-alignment>yz-plane</axis-alignment>
  7716. <type type="string">text-value</type>
  7717. <property>/instrumentation/garmin196/menu_e6b/wind-from</property>
  7718. <font type="string">helvetica_bold.txf</font>
  7719. <character-size type="double">0.004</character-size>
  7720. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7721. <font-resolution>
  7722. <width type="int">32</width>
  7723. <height type="int">32</height>
  7724. </font-resolution>
  7725. </text>
  7726. <text>
  7727. <name>menu.e6b.wind-speed.text</name>
  7728. <offsets>
  7729. <x-m>0.00567611</x-m>
  7730. <y-m>-0.0103718</y-m>
  7731. <z-m>-0.00698207</z-m>
  7732. </offsets>
  7733. <alignment>left-center</alignment>
  7734. <axis-alignment>yz-plane</axis-alignment>
  7735. <type type="string">text-value</type>
  7736. <property>/instrumentation/garmin196/menu_e6b/wind-speed</property>
  7737. <font type="string">helvetica_bold.txf</font>
  7738. <character-size type="double">0.004</character-size>
  7739. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7740. <font-resolution>
  7741. <width type="int">32</width>
  7742. <height type="int">32</height>
  7743. </font-resolution>
  7744. </text>
  7745. <text>
  7746. <name>menu.e6b.true-airspeed.text</name>
  7747. <offsets>
  7748. <x-m>0.00567611</x-m>
  7749. <y-m>-0.0387172</y-m>
  7750. <z-m>-0.0168491</z-m>
  7751. </offsets>
  7752. <alignment>left-center</alignment>
  7753. <axis-alignment>yz-plane</axis-alignment>
  7754. <type type="string">text-value</type>
  7755. <property>/instrumentation/garmin196/menu_e6b/true-airspeed</property>
  7756. <font type="string">helvetica_bold.txf</font>
  7757. <character-size type="double">0.004</character-size>
  7758. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7759. <font-resolution>
  7760. <width type="int">32</width>
  7761. <height type="int">32</height>
  7762. </font-resolution>
  7763. </text>
  7764. <text>
  7765. <name>menu.e6b.density-altitude.text</name>
  7766. <offsets>
  7767. <x-m>0.00567611</x-m>
  7768. <y-m>-0.0103718</y-m>
  7769. <z-m>-0.0168491</z-m>
  7770. </offsets>
  7771. <alignment>left-center</alignment>
  7772. <axis-alignment>yz-plane</axis-alignment>
  7773. <type type="string">text-value</type>
  7774. <property>/instrumentation/garmin196/menu_e6b/density-altitude</property>
  7775. <font type="string">helvetica_bold.txf</font>
  7776. <character-size type="double">0.004</character-size>
  7777. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  7778. <font-resolution>
  7779. <width type="int">32</width>
  7780. <height type="int">32</height>
  7781. </font-resolution>
  7782. </text>
  7783. <!--Menu map-->
  7784. <animation>
  7785. <type>select</type>
  7786. <object-name>menu.map</object-name>
  7787. <condition>
  7788. <and>
  7789. <greater-than-equals>
  7790. <property>/instrumentation/garmin196/status</property>
  7791. <value>160</value>
  7792. </greater-than-equals>
  7793. <less-than>
  7794. <property>/instrumentation/garmin196/status</property>
  7795. <value>170</value>
  7796. </less-than>
  7797. </and>
  7798. </condition>
  7799. </animation>
  7800. <animation>
  7801. <type>select</type>
  7802. <object-name>menu.map.airports.mask</object-name>
  7803. <condition>
  7804. <and>
  7805. <greater-than-equals>
  7806. <property>/instrumentation/garmin196/status</property>
  7807. <value>160</value>
  7808. </greater-than-equals>
  7809. <less-than>
  7810. <property>/instrumentation/garmin196/status</property>
  7811. <value>170</value>
  7812. </less-than>
  7813. <equals>
  7814. <property>/instrumentation/garmin196/menu_map/no_ligne_selected</property>
  7815. <value>0</value>
  7816. </equals>
  7817. </and>
  7818. </condition>
  7819. </animation>
  7820. <animation>
  7821. <type>select</type>
  7822. <object-name>menu.map.airports.check</object-name>
  7823. <condition>
  7824. <and>
  7825. <greater-than-equals>
  7826. <property>/instrumentation/garmin196/status</property>
  7827. <value>160</value>
  7828. </greater-than-equals>
  7829. <less-than>
  7830. <property>/instrumentation/garmin196/status</property>
  7831. <value>170</value>
  7832. </less-than>
  7833. <property>/instrumentation/garmin196/symbols/params/airport</property>
  7834. </and>
  7835. </condition>
  7836. </animation>
  7837. <animation>
  7838. <type>select</type>
  7839. <object-name>menu.map.vor.mask</object-name>
  7840. <condition>
  7841. <and>
  7842. <greater-than-equals>
  7843. <property>/instrumentation/garmin196/status</property>
  7844. <value>160</value>
  7845. </greater-than-equals>
  7846. <less-than>
  7847. <property>/instrumentation/garmin196/status</property>
  7848. <value>170</value>
  7849. </less-than>
  7850. <equals>
  7851. <property>/instrumentation/garmin196/menu_map/no_ligne_selected</property>
  7852. <value>1</value>
  7853. </equals>
  7854. </and>
  7855. </condition>
  7856. </animation>
  7857. <animation>
  7858. <type>select</type>
  7859. <object-name>menu.map.vor.check</object-name>
  7860. <condition>
  7861. <and>
  7862. <greater-than-equals>
  7863. <property>/instrumentation/garmin196/status</property>
  7864. <value>160</value>
  7865. </greater-than-equals>
  7866. <less-than>
  7867. <property>/instrumentation/garmin196/status</property>
  7868. <value>170</value>
  7869. </less-than>
  7870. <property>/instrumentation/garmin196/symbols/params/vor</property>
  7871. </and>
  7872. </condition>
  7873. </animation>
  7874. <animation>
  7875. <type>select</type>
  7876. <object-name>menu.map.ndb.mask</object-name>
  7877. <condition>
  7878. <and>
  7879. <greater-than-equals>
  7880. <property>/instrumentation/garmin196/status</property>
  7881. <value>160</value>
  7882. </greater-than-equals>
  7883. <less-than>
  7884. <property>/instrumentation/garmin196/status</property>
  7885. <value>170</value>
  7886. </less-than>
  7887. <equals>
  7888. <property>/instrumentation/garmin196/menu_map/no_ligne_selected</property>
  7889. <value>2</value>
  7890. </equals>
  7891. </and>
  7892. </condition>
  7893. </animation>
  7894. <animation>
  7895. <type>select</type>
  7896. <object-name>menu.map.ndb.check</object-name>
  7897. <condition>
  7898. <and>
  7899. <greater-than-equals>
  7900. <property>/instrumentation/garmin196/status</property>
  7901. <value>160</value>
  7902. </greater-than-equals>
  7903. <less-than>
  7904. <property>/instrumentation/garmin196/status</property>
  7905. <value>170</value>
  7906. </less-than>
  7907. <property>/instrumentation/garmin196/symbols/params/ndb</property>
  7908. </and>
  7909. </condition>
  7910. </animation>
  7911. <animation>
  7912. <type>select</type>
  7913. <object-name>menu.map.fix.mask</object-name>
  7914. <condition>
  7915. <and>
  7916. <greater-than-equals>
  7917. <property>/instrumentation/garmin196/status</property>
  7918. <value>160</value>
  7919. </greater-than-equals>
  7920. <less-than>
  7921. <property>/instrumentation/garmin196/status</property>
  7922. <value>170</value>
  7923. </less-than>
  7924. <equals>
  7925. <property>/instrumentation/garmin196/menu_map/no_ligne_selected</property>
  7926. <value>3</value>
  7927. </equals>
  7928. </and>
  7929. </condition>
  7930. </animation>
  7931. <animation>
  7932. <type>select</type>
  7933. <object-name>menu.map.fix.check</object-name>
  7934. <condition>
  7935. <and>
  7936. <greater-than-equals>
  7937. <property>/instrumentation/garmin196/status</property>
  7938. <value>160</value>
  7939. </greater-than-equals>
  7940. <less-than>
  7941. <property>/instrumentation/garmin196/status</property>
  7942. <value>170</value>
  7943. </less-than>
  7944. <property>/instrumentation/garmin196/symbols/params/fix</property>
  7945. </and>
  7946. </condition>
  7947. </animation>
  7948. <animation>
  7949. <type>select</type>
  7950. <object-name>menu.map.cities.mask</object-name>
  7951. <condition>
  7952. <and>
  7953. <greater-than-equals>
  7954. <property>/instrumentation/garmin196/status</property>
  7955. <value>160</value>
  7956. </greater-than-equals>
  7957. <less-than>
  7958. <property>/instrumentation/garmin196/status</property>
  7959. <value>170</value>
  7960. </less-than>
  7961. <equals>
  7962. <property>/instrumentation/garmin196/menu_map/no_ligne_selected</property>
  7963. <value>4</value>
  7964. </equals>
  7965. </and>
  7966. </condition>
  7967. </animation>
  7968. <animation>
  7969. <type>select</type>
  7970. <object-name>menu.map.cities.check</object-name>
  7971. <condition>
  7972. <and>
  7973. <greater-than-equals>
  7974. <property>/instrumentation/garmin196/status</property>
  7975. <value>160</value>
  7976. </greater-than-equals>
  7977. <less-than>
  7978. <property>/instrumentation/garmin196/status</property>
  7979. <value>170</value>
  7980. </less-than>
  7981. <property>/instrumentation/garmin196/symbols/params/twn</property>
  7982. </and>
  7983. </condition>
  7984. </animation>
  7985. <animation>
  7986. <type>select</type>
  7987. <object-name>menu.map.waypoints.mask</object-name>
  7988. <condition>
  7989. <and>
  7990. <greater-than-equals>
  7991. <property>/instrumentation/garmin196/status</property>
  7992. <value>160</value>
  7993. </greater-than-equals>
  7994. <less-than>
  7995. <property>/instrumentation/garmin196/status</property>
  7996. <value>170</value>
  7997. </less-than>
  7998. <equals>
  7999. <property>/instrumentation/garmin196/menu_map/no_ligne_selected</property>
  8000. <value>5</value>
  8001. </equals>
  8002. </and>
  8003. </condition>
  8004. </animation>
  8005. <animation>
  8006. <type>select</type>
  8007. <object-name>menu.map.waypoints.check</object-name>
  8008. <condition>
  8009. <and>
  8010. <greater-than-equals>
  8011. <property>/instrumentation/garmin196/status</property>
  8012. <value>160</value>
  8013. </greater-than-equals>
  8014. <less-than>
  8015. <property>/instrumentation/garmin196/status</property>
  8016. <value>170</value>
  8017. </less-than>
  8018. <property>/instrumentation/garmin196/symbols/params/wpt</property>
  8019. </and>
  8020. </condition>
  8021. </animation>
  8022. <!--Menu setup-->
  8023. <animation>
  8024. <type>select</type>
  8025. <object-name>menu.setup</object-name>
  8026. <condition>
  8027. <and>
  8028. <greater-than-equals>
  8029. <property>/instrumentation/garmin196/status</property>
  8030. <value>170</value>
  8031. </greater-than-equals>
  8032. <less-than>
  8033. <property>/instrumentation/garmin196/status</property>
  8034. <value>175</value>
  8035. </less-than>
  8036. </and>
  8037. </condition>
  8038. </animation>
  8039. <animation>
  8040. <type>select</type>
  8041. <object-name>menu.setup.mask</object-name>
  8042. <condition>
  8043. <and>
  8044. <greater-than-equals>
  8045. <property>/instrumentation/garmin196/status</property>
  8046. <value>170</value>
  8047. </greater-than-equals>
  8048. <less-than>
  8049. <property>/instrumentation/garmin196/status</property>
  8050. <value>175</value>
  8051. </less-than>
  8052. <greater-than>
  8053. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8054. <value>-1</value>
  8055. </greater-than>
  8056. </and>
  8057. </condition>
  8058. </animation>
  8059. <animation>
  8060. <type>translate</type>
  8061. <object-name>menu.setup.mask</object-name>
  8062. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8063. <factor>-0.006</factor>
  8064. <axis>
  8065. <x> 0 </x>
  8066. <y> 0 </y>
  8067. <z> 1 </z>
  8068. </axis>
  8069. </animation>
  8070. <text>
  8071. <name>menu.setup.distance.nm</name>
  8072. <offsets>
  8073. <x-m>0.00617611</x-m>
  8074. <y-m>-0.0113466</y-m>
  8075. <z-m>0.0142989</z-m>
  8076. </offsets>
  8077. <alignment>left-center</alignment>
  8078. <axis-alignment>yz-plane</axis-alignment>
  8079. <type type="string">literal</type>
  8080. <text type="string">Nautical miles</text>
  8081. <font type="string">helvetica_bold.txf</font>
  8082. <character-size type="double">0.005</character-size>
  8083. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  8084. <font-resolution>
  8085. <width type="int">32</width>
  8086. <height type="int">32</height>
  8087. </font-resolution>
  8088. </text>
  8089. <text>
  8090. <name>menu.setup.distance.km</name>
  8091. <offsets>
  8092. <x-m>0.00617611</x-m>
  8093. <y-m>-0.0113466</y-m>
  8094. <z-m>0.0142989</z-m>
  8095. </offsets>
  8096. <alignment>left-center</alignment>
  8097. <axis-alignment>yz-plane</axis-alignment>
  8098. <type type="string">literal</type>
  8099. <text type="string">Kilometers</text>
  8100. <font type="string">helvetica_bold.txf</font>
  8101. <character-size type="double">0.005</character-size>
  8102. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  8103. <font-resolution>
  8104. <width type="int">32</width>
  8105. <height type="int">32</height>
  8106. </font-resolution>
  8107. </text>
  8108. <animation>
  8109. <type>select</type>
  8110. <object-name>menu.setup.distance.nm</object-name>
  8111. <condition>
  8112. <and>
  8113. <greater-than-equals>
  8114. <property>/instrumentation/garmin196/status</property>
  8115. <value>170</value>
  8116. </greater-than-equals>
  8117. <less-than>
  8118. <property>/instrumentation/garmin196/status</property>
  8119. <value>175</value>
  8120. </less-than>
  8121. <equals>
  8122. <property>/instrumentation/garmin196/params/units/distance</property>
  8123. <value>1</value>
  8124. </equals>
  8125. </and>
  8126. </condition>
  8127. </animation>
  8128. <animation>
  8129. <type>select</type>
  8130. <object-name>menu.setup.distance.km</object-name>
  8131. <condition>
  8132. <and>
  8133. <greater-than-equals>
  8134. <property>/instrumentation/garmin196/status</property>
  8135. <value>170</value>
  8136. </greater-than-equals>
  8137. <less-than>
  8138. <property>/instrumentation/garmin196/status</property>
  8139. <value>175</value>
  8140. </less-than>
  8141. <equals>
  8142. <property>/instrumentation/garmin196/params/units/distance</property>
  8143. <value>2</value>
  8144. </equals>
  8145. </and>
  8146. </condition>
  8147. </animation>
  8148. <animation>
  8149. <type>material</type>
  8150. <object-name>menu.setup.distance.nm</object-name>
  8151. <object-name>menu.setup.distance.km</object-name>
  8152. <ambient>
  8153. <red>0</red>
  8154. <green>0</green>
  8155. <blue>0</blue>
  8156. </ambient>
  8157. <diffuse>
  8158. <red>0</red>
  8159. <green>0</green>
  8160. <blue>0</blue>
  8161. </diffuse>
  8162. <condition>
  8163. <not>
  8164. <equals>
  8165. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8166. <value>0</value>
  8167. </equals>
  8168. </not>
  8169. </condition>
  8170. </animation>
  8171. <animation>
  8172. <type>material</type>
  8173. <object-name>menu.setup.distance.nm</object-name>
  8174. <object-name>menu.setup.distance.km</object-name>
  8175. <ambient>
  8176. <red>1</red>
  8177. <green>1</green>
  8178. <blue>1</blue>
  8179. </ambient>
  8180. <diffuse>
  8181. <red>1</red>
  8182. <green>1</green>
  8183. <blue>1</blue>
  8184. </diffuse>
  8185. <emission>
  8186. <blue> 1 </blue>
  8187. <red> 1 </red>
  8188. <green> 1 </green>
  8189. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  8190. </emission>
  8191. <condition>
  8192. <equals>
  8193. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8194. <value>0</value>
  8195. </equals>
  8196. </condition>
  8197. </animation>
  8198. <text>
  8199. <name>menu.setup.speed.kt</name>
  8200. <offsets>
  8201. <x-m>0.00617611</x-m>
  8202. <y-m>-0.0113466</y-m>
  8203. <z-m>0.00839653</z-m>
  8204. </offsets>
  8205. <alignment>left-center</alignment>
  8206. <axis-alignment>yz-plane</axis-alignment>
  8207. <type type="string">literal</type>
  8208. <text type="string">Knots</text>
  8209. <font type="string">helvetica_bold.txf</font>
  8210. <character-size type="double">0.005</character-size>
  8211. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  8212. <font-resolution>
  8213. <width type="int">32</width>
  8214. <height type="int">32</height>
  8215. </font-resolution>
  8216. </text>
  8217. <text>
  8218. <name>menu.setup.speed.kmh</name>
  8219. <offsets>
  8220. <x-m>0.00617611</x-m>
  8221. <y-m>-0.0113466</y-m>
  8222. <z-m>0.00839653</z-m>
  8223. </offsets>
  8224. <alignment>left-center</alignment>
  8225. <axis-alignment>yz-plane</axis-alignment>
  8226. <type type="string">literal</type>
  8227. <text type="string">Km per hour</text>
  8228. <font type="string">helvetica_bold.txf</font>
  8229. <character-size type="double">0.005</character-size>
  8230. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  8231. <font-resolution>
  8232. <width type="int">32</width>
  8233. <height type="int">32</height>
  8234. </font-resolution>
  8235. </text>
  8236. <animation>
  8237. <type>select</type>
  8238. <object-name>menu.setup.speed.kt</object-name>
  8239. <condition>
  8240. <and>
  8241. <greater-than-equals>
  8242. <property>/instrumentation/garmin196/status</property>
  8243. <value>170</value>
  8244. </greater-than-equals>
  8245. <less-than>
  8246. <property>/instrumentation/garmin196/status</property>
  8247. <value>175</value>
  8248. </less-than>
  8249. <equals>
  8250. <property>/instrumentation/garmin196/params/units/speed</property>
  8251. <value>1</value>
  8252. </equals>
  8253. </and>
  8254. </condition>
  8255. </animation>
  8256. <animation>
  8257. <type>select</type>
  8258. <object-name>menu.setup.speed.kmh</object-name>
  8259. <condition>
  8260. <and>
  8261. <greater-than-equals>
  8262. <property>/instrumentation/garmin196/status</property>
  8263. <value>170</value>
  8264. </greater-than-equals>
  8265. <less-than>
  8266. <property>/instrumentation/garmin196/status</property>
  8267. <value>175</value>
  8268. </less-than>
  8269. <equals>
  8270. <property>/instrumentation/garmin196/params/units/speed</property>
  8271. <value>2</value>
  8272. </equals>
  8273. </and>
  8274. </condition>
  8275. </animation>
  8276. <animation>
  8277. <type>material</type>
  8278. <object-name>menu.setup.speed.kt</object-name>
  8279. <object-name>menu.setup.speed.kmh</object-name>
  8280. <ambient>
  8281. <red>0</red>
  8282. <green>0</green>
  8283. <blue>0</blue>
  8284. </ambient>
  8285. <diffuse>
  8286. <red>0</red>
  8287. <green>0</green>
  8288. <blue>0</blue>
  8289. </diffuse>
  8290. <condition>
  8291. <not>
  8292. <equals>
  8293. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8294. <value>1</value>
  8295. </equals>
  8296. </not>
  8297. </condition>
  8298. </animation>
  8299. <animation>
  8300. <type>material</type>
  8301. <object-name>menu.setup.speed.kt</object-name>
  8302. <object-name>menu.setup.speed.kmh</object-name>
  8303. <ambient>
  8304. <red>1</red>
  8305. <green>1</green>
  8306. <blue>1</blue>
  8307. </ambient>
  8308. <diffuse>
  8309. <red>1</red>
  8310. <green>1</green>
  8311. <blue>1</blue>
  8312. </diffuse>
  8313. <emission>
  8314. <blue> 1 </blue>
  8315. <red> 1 </red>
  8316. <green> 1 </green>
  8317. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  8318. </emission>
  8319. <condition>
  8320. <equals>
  8321. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8322. <value>1</value>
  8323. </equals>
  8324. </condition>
  8325. </animation>
  8326. <text>
  8327. <name>menu.setup.vspeed.ftmn</name>
  8328. <offsets>
  8329. <x-m>0.00617611</x-m>
  8330. <y-m>-0.0113466</y-m>
  8331. <z-m>0.00235251</z-m>
  8332. </offsets>
  8333. <alignment>left-center</alignment>
  8334. <axis-alignment>yz-plane</axis-alignment>
  8335. <type type="string">literal</type>
  8336. <text type="string">Feet per mn</text>
  8337. <font type="string">helvetica_bold.txf</font>
  8338. <character-size type="double">0.005</character-size>
  8339. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  8340. <font-resolution>
  8341. <width type="int">32</width>
  8342. <height type="int">32</height>
  8343. </font-resolution>
  8344. </text>
  8345. <text>
  8346. <name>menu.setup.vspeed.ms</name>
  8347. <offsets>
  8348. <x-m>0.00617611</x-m>
  8349. <y-m>-0.0113466</y-m>
  8350. <z-m>0.00235251</z-m>
  8351. </offsets>
  8352. <alignment>left-center</alignment>
  8353. <axis-alignment>yz-plane</axis-alignment>
  8354. <type type="string">literal</type>
  8355. <text type="string">M per second</text>
  8356. <font type="string">helvetica_bold.txf</font>
  8357. <character-size type="double">0.005</character-size>
  8358. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  8359. <font-resolution>
  8360. <width type="int">32</width>
  8361. <height type="int">32</height>
  8362. </font-resolution>
  8363. </text>
  8364. <animation>
  8365. <type>select</type>
  8366. <object-name>menu.setup.vspeed.ftmn</object-name>
  8367. <condition>
  8368. <and>
  8369. <greater-than-equals>
  8370. <property>/instrumentation/garmin196/status</property>
  8371. <value>170</value>
  8372. </greater-than-equals>
  8373. <less-than>
  8374. <property>/instrumentation/garmin196/status</property>
  8375. <value>175</value>
  8376. </less-than>
  8377. <equals>
  8378. <property>/instrumentation/garmin196/params/units/vert-speed</property>
  8379. <value>1</value>
  8380. </equals>
  8381. </and>
  8382. </condition>
  8383. </animation>
  8384. <animation>
  8385. <type>select</type>
  8386. <object-name>menu.setup.vspeed.ms</object-name>
  8387. <condition>
  8388. <and>
  8389. <greater-than-equals>
  8390. <property>/instrumentation/garmin196/status</property>
  8391. <value>170</value>
  8392. </greater-than-equals>
  8393. <less-than>
  8394. <property>/instrumentation/garmin196/status</property>
  8395. <value>175</value>
  8396. </less-than>
  8397. <equals>
  8398. <property>/instrumentation/garmin196/params/units/vert-speed</property>
  8399. <value>2</value>
  8400. </equals>
  8401. </and>
  8402. </condition>
  8403. </animation>
  8404. <animation>
  8405. <type>material</type>
  8406. <object-name>menu.setup.vspeed.ftmn</object-name>
  8407. <object-name>menu.setup.vspeed.ms</object-name>
  8408. <ambient>
  8409. <red>0</red>
  8410. <green>0</green>
  8411. <blue>0</blue>
  8412. </ambient>
  8413. <diffuse>
  8414. <red>0</red>
  8415. <green>0</green>
  8416. <blue>0</blue>
  8417. </diffuse>
  8418. <condition>
  8419. <not>
  8420. <equals>
  8421. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8422. <value>2</value>
  8423. </equals>
  8424. </not>
  8425. </condition>
  8426. </animation>
  8427. <animation>
  8428. <type>material</type>
  8429. <object-name>menu.setup.vspeed.ftmn</object-name>
  8430. <object-name>menu.setup.vspeed.ms</object-name>
  8431. <ambient>
  8432. <red>1</red>
  8433. <green>1</green>
  8434. <blue>1</blue>
  8435. </ambient>
  8436. <diffuse>
  8437. <red>1</red>
  8438. <green>1</green>
  8439. <blue>1</blue>
  8440. </diffuse>
  8441. <emission>
  8442. <blue> 1 </blue>
  8443. <red> 1 </red>
  8444. <green> 1 </green>
  8445. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  8446. </emission>
  8447. <condition>
  8448. <equals>
  8449. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8450. <value>2</value>
  8451. </equals>
  8452. </condition>
  8453. </animation>
  8454. <text>
  8455. <name>menu.setup.altitude.ft</name>
  8456. <offsets>
  8457. <x-m>0.00617611</x-m>
  8458. <y-m>-0.0113466</y-m>
  8459. <z-m>-0.00354986</z-m>
  8460. </offsets>
  8461. <alignment>left-center</alignment>
  8462. <axis-alignment>yz-plane</axis-alignment>
  8463. <type type="string">literal</type>
  8464. <text type="string">Feet</text>
  8465. <font type="string">helvetica_bold.txf</font>
  8466. <character-size type="double">0.005</character-size>
  8467. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  8468. <font-resolution>
  8469. <width type="int">32</width>
  8470. <height type="int">32</height>
  8471. </font-resolution>
  8472. </text>
  8473. <text>
  8474. <name>menu.setup.altitude.m</name>
  8475. <offsets>
  8476. <x-m>0.00617611</x-m>
  8477. <y-m>-0.0113466</y-m>
  8478. <z-m>-0.00354986</z-m>
  8479. </offsets>
  8480. <alignment>left-center</alignment>
  8481. <axis-alignment>yz-plane</axis-alignment>
  8482. <type type="string">literal</type>
  8483. <text type="string">Meters</text>
  8484. <font type="string">helvetica_bold.txf</font>
  8485. <character-size type="double">0.005</character-size>
  8486. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  8487. <font-resolution>
  8488. <width type="int">32</width>
  8489. <height type="int">32</height>
  8490. </font-resolution>
  8491. </text>
  8492. <animation>
  8493. <type>select</type>
  8494. <object-name>menu.setup.altitude.ft</object-name>
  8495. <condition>
  8496. <and>
  8497. <greater-than-equals>
  8498. <property>/instrumentation/garmin196/status</property>
  8499. <value>170</value>
  8500. </greater-than-equals>
  8501. <less-than>
  8502. <property>/instrumentation/garmin196/status</property>
  8503. <value>175</value>
  8504. </less-than>
  8505. <equals>
  8506. <property>/instrumentation/garmin196/params/units/altitude</property>
  8507. <value>1</value>
  8508. </equals>
  8509. </and>
  8510. </condition>
  8511. </animation>
  8512. <animation>
  8513. <type>select</type>
  8514. <object-name>menu.setup.altitude.m</object-name>
  8515. <condition>
  8516. <and>
  8517. <greater-than-equals>
  8518. <property>/instrumentation/garmin196/status</property>
  8519. <value>170</value>
  8520. </greater-than-equals>
  8521. <less-than>
  8522. <property>/instrumentation/garmin196/status</property>
  8523. <value>175</value>
  8524. </less-than>
  8525. <equals>
  8526. <property>/instrumentation/garmin196/params/units/altitude</property>
  8527. <value>2</value>
  8528. </equals>
  8529. </and>
  8530. </condition>
  8531. </animation>
  8532. <animation>
  8533. <type>material</type>
  8534. <object-name>menu.setup.altitude.ft</object-name>
  8535. <object-name>menu.setup.altitude.m</object-name>
  8536. <ambient>
  8537. <red>0</red>
  8538. <green>0</green>
  8539. <blue>0</blue>
  8540. </ambient>
  8541. <diffuse>
  8542. <red>0</red>
  8543. <green>0</green>
  8544. <blue>0</blue>
  8545. </diffuse>
  8546. <condition>
  8547. <not>
  8548. <equals>
  8549. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8550. <value>3</value>
  8551. </equals>
  8552. </not>
  8553. </condition>
  8554. </animation>
  8555. <animation>
  8556. <type>material</type>
  8557. <object-name>menu.setup.altitude.ft</object-name>
  8558. <object-name>menu.setup.altitude.m</object-name>
  8559. <ambient>
  8560. <red>1</red>
  8561. <green>1</green>
  8562. <blue>1</blue>
  8563. </ambient>
  8564. <diffuse>
  8565. <red>1</red>
  8566. <green>1</green>
  8567. <blue>1</blue>
  8568. </diffuse>
  8569. <emission>
  8570. <blue> 1 </blue>
  8571. <red> 1 </red>
  8572. <green> 1 </green>
  8573. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  8574. </emission>
  8575. <condition>
  8576. <equals>
  8577. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8578. <value>3</value>
  8579. </equals>
  8580. </condition>
  8581. </animation>
  8582. <text>
  8583. <name>menu.setup.pressure.inhg</name>
  8584. <offsets>
  8585. <x-m>0.00617611</x-m>
  8586. <y-m>-0.0113466</y-m>
  8587. <z-m>-0.00954986</z-m>
  8588. </offsets>
  8589. <alignment>left-center</alignment>
  8590. <axis-alignment>yz-plane</axis-alignment>
  8591. <type type="string">literal</type>
  8592. <text type="string">Inch Hg</text>
  8593. <font type="string">helvetica_bold.txf</font>
  8594. <character-size type="double">0.005</character-size>
  8595. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  8596. <font-resolution>
  8597. <width type="int">32</width>
  8598. <height type="int">32</height>
  8599. </font-resolution>
  8600. </text>
  8601. <text>
  8602. <name>menu.setup.pressure.hpa</name>
  8603. <offsets>
  8604. <x-m>0.00617611</x-m>
  8605. <y-m>-0.0113466</y-m>
  8606. <z-m>-0.00954986</z-m>
  8607. </offsets>
  8608. <alignment>left-center</alignment>
  8609. <axis-alignment>yz-plane</axis-alignment>
  8610. <type type="string">literal</type>
  8611. <text type="string">Hecto Pascal</text>
  8612. <font type="string">helvetica_bold.txf</font>
  8613. <character-size type="double">0.005</character-size>
  8614. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  8615. <font-resolution>
  8616. <width type="int">32</width>
  8617. <height type="int">32</height>
  8618. </font-resolution>
  8619. </text>
  8620. <animation>
  8621. <type>select</type>
  8622. <object-name>menu.setup.pressure.inhg</object-name>
  8623. <condition>
  8624. <and>
  8625. <greater-than-equals>
  8626. <property>/instrumentation/garmin196/status</property>
  8627. <value>170</value>
  8628. </greater-than-equals>
  8629. <less-than>
  8630. <property>/instrumentation/garmin196/status</property>
  8631. <value>175</value>
  8632. </less-than>
  8633. <equals>
  8634. <property>/instrumentation/garmin196/params/units/pressure</property>
  8635. <value>1</value>
  8636. </equals>
  8637. </and>
  8638. </condition>
  8639. </animation>
  8640. <animation>
  8641. <type>select</type>
  8642. <object-name>menu.setup.pressure.hpa</object-name>
  8643. <condition>
  8644. <and>
  8645. <greater-than-equals>
  8646. <property>/instrumentation/garmin196/status</property>
  8647. <value>170</value>
  8648. </greater-than-equals>
  8649. <less-than>
  8650. <property>/instrumentation/garmin196/status</property>
  8651. <value>175</value>
  8652. </less-than>
  8653. <equals>
  8654. <property>/instrumentation/garmin196/params/units/pressure</property>
  8655. <value>2</value>
  8656. </equals>
  8657. </and>
  8658. </condition>
  8659. </animation>
  8660. <animation>
  8661. <type>material</type>
  8662. <object-name>menu.setup.pressure.inhg</object-name>
  8663. <object-name>menu.setup.pressure.hpa</object-name>
  8664. <ambient>
  8665. <red>0</red>
  8666. <green>0</green>
  8667. <blue>0</blue>
  8668. </ambient>
  8669. <diffuse>
  8670. <red>0</red>
  8671. <green>0</green>
  8672. <blue>0</blue>
  8673. </diffuse>
  8674. <condition>
  8675. <not>
  8676. <equals>
  8677. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8678. <value>4</value>
  8679. </equals>
  8680. </not>
  8681. </condition>
  8682. </animation>
  8683. <animation>
  8684. <type>material</type>
  8685. <object-name>menu.setup.pressure.inhg</object-name>
  8686. <object-name>menu.setup.pressure.hpa</object-name>
  8687. <ambient>
  8688. <red>1</red>
  8689. <green>1</green>
  8690. <blue>1</blue>
  8691. </ambient>
  8692. <diffuse>
  8693. <red>1</red>
  8694. <green>1</green>
  8695. <blue>1</blue>
  8696. </diffuse>
  8697. <emission>
  8698. <blue> 1 </blue>
  8699. <red> 1 </red>
  8700. <green> 1 </green>
  8701. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  8702. </emission>
  8703. <condition>
  8704. <equals>
  8705. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8706. <value>4</value>
  8707. </equals>
  8708. </condition>
  8709. </animation>
  8710. <text>
  8711. <name>menu.setup.temperature.c</name>
  8712. <offsets>
  8713. <x-m>0.00617611</x-m>
  8714. <y-m>-0.0113466</y-m>
  8715. <z-m>-0.0155499</z-m>
  8716. </offsets>
  8717. <alignment>left-center</alignment>
  8718. <axis-alignment>yz-plane</axis-alignment>
  8719. <type type="string">literal</type>
  8720. <text type="string">Celsius</text>
  8721. <font type="string">helvetica_bold.txf</font>
  8722. <character-size type="double">0.005</character-size>
  8723. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  8724. <font-resolution>
  8725. <width type="int">32</width>
  8726. <height type="int">32</height>
  8727. </font-resolution>
  8728. </text>
  8729. <text>
  8730. <name>menu.setup.temperature.f</name>
  8731. <offsets>
  8732. <x-m>0.00617611</x-m>
  8733. <y-m>-0.0113466</y-m>
  8734. <z-m>-0.0155499</z-m>
  8735. </offsets>
  8736. <alignment>left-center</alignment>
  8737. <axis-alignment>yz-plane</axis-alignment>
  8738. <type type="string">literal</type>
  8739. <text type="string">Farenheit</text>
  8740. <font type="string">helvetica_bold.txf</font>
  8741. <character-size type="double">0.005</character-size>
  8742. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  8743. <font-resolution>
  8744. <width type="int">32</width>
  8745. <height type="int">32</height>
  8746. </font-resolution>
  8747. </text>
  8748. <animation>
  8749. <type>select</type>
  8750. <object-name>menu.setup.temperature.c</object-name>
  8751. <condition>
  8752. <and>
  8753. <greater-than-equals>
  8754. <property>/instrumentation/garmin196/status</property>
  8755. <value>170</value>
  8756. </greater-than-equals>
  8757. <less-than>
  8758. <property>/instrumentation/garmin196/status</property>
  8759. <value>175</value>
  8760. </less-than>
  8761. <equals>
  8762. <property>/instrumentation/garmin196/params/units/temperature</property>
  8763. <value>1</value>
  8764. </equals>
  8765. </and>
  8766. </condition>
  8767. </animation>
  8768. <animation>
  8769. <type>select</type>
  8770. <object-name>menu.setup.temperature.f</object-name>
  8771. <condition>
  8772. <and>
  8773. <greater-than-equals>
  8774. <property>/instrumentation/garmin196/status</property>
  8775. <value>170</value>
  8776. </greater-than-equals>
  8777. <less-than>
  8778. <property>/instrumentation/garmin196/status</property>
  8779. <value>175</value>
  8780. </less-than>
  8781. <equals>
  8782. <property>/instrumentation/garmin196/params/units/temperature</property>
  8783. <value>2</value>
  8784. </equals>
  8785. </and>
  8786. </condition>
  8787. </animation>
  8788. <animation>
  8789. <type>material</type>
  8790. <object-name>menu.setup.temperature.c</object-name>
  8791. <object-name>menu.setup.temperature.f</object-name>
  8792. <ambient>
  8793. <red>0</red>
  8794. <green>0</green>
  8795. <blue>0</blue>
  8796. </ambient>
  8797. <diffuse>
  8798. <red>0</red>
  8799. <green>0</green>
  8800. <blue>0</blue>
  8801. </diffuse>
  8802. <condition>
  8803. <not>
  8804. <equals>
  8805. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8806. <value>5</value>
  8807. </equals>
  8808. </not>
  8809. </condition>
  8810. </animation>
  8811. <animation>
  8812. <type>material</type>
  8813. <object-name>menu.setup.temperature.c</object-name>
  8814. <object-name>menu.setup.temperature.f</object-name>
  8815. <ambient>
  8816. <red>1</red>
  8817. <green>1</green>
  8818. <blue>1</blue>
  8819. </ambient>
  8820. <diffuse>
  8821. <red>1</red>
  8822. <green>1</green>
  8823. <blue>1</blue>
  8824. </diffuse>
  8825. <emission>
  8826. <blue> 1 </blue>
  8827. <red> 1 </red>
  8828. <green> 1 </green>
  8829. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  8830. </emission>
  8831. <condition>
  8832. <equals>
  8833. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8834. <value>5</value>
  8835. </equals>
  8836. </condition>
  8837. </animation>
  8838. <animation>
  8839. <type>select</type>
  8840. <object-name>menu.setup.filter</object-name>
  8841. <condition>
  8842. <and>
  8843. <greater-than-equals>
  8844. <property>/instrumentation/garmin196/status</property>
  8845. <value>175</value>
  8846. </greater-than-equals>
  8847. <less-than>
  8848. <property>/instrumentation/garmin196/status</property>
  8849. <value>180</value>
  8850. </less-than>
  8851. </and>
  8852. </condition>
  8853. </animation>
  8854. <animation>
  8855. <type>select</type>
  8856. <object-name>menu.setup.filter.mask</object-name>
  8857. <condition>
  8858. <and>
  8859. <greater-than-equals>
  8860. <property>/instrumentation/garmin196/status</property>
  8861. <value>175</value>
  8862. </greater-than-equals>
  8863. <less-than>
  8864. <property>/instrumentation/garmin196/status</property>
  8865. <value>180</value>
  8866. </less-than>
  8867. <greater-than>
  8868. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8869. <value>-1</value>
  8870. </greater-than>
  8871. </and>
  8872. </condition>
  8873. </animation>
  8874. <animation>
  8875. <type>translate</type>
  8876. <object-name>menu.setup.filter.mask</object-name>
  8877. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8878. <factor>-0.005</factor>
  8879. <axis>
  8880. <x> 0 </x>
  8881. <y> 0 </y>
  8882. <z> 1 </z>
  8883. </axis>
  8884. </animation>
  8885. <text>
  8886. <name>menu.setup.nofilter.texte</name>
  8887. <offsets>
  8888. <x-m>0.00617611</x-m>
  8889. <y-m>-0.0113466</y-m>
  8890. <z-m>0.0142989</z-m>
  8891. </offsets>
  8892. <alignment>left-center</alignment>
  8893. <axis-alignment>yz-plane</axis-alignment>
  8894. <type type="string">literal</type>
  8895. <text type="string">No map filter</text>
  8896. <font type="string">helvetica_bold.txf</font>
  8897. <character-size type="double">0.005</character-size>
  8898. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  8899. <font-resolution>
  8900. <width type="int">32</width>
  8901. <height type="int">32</height>
  8902. </font-resolution>
  8903. </text>
  8904. <text>
  8905. <name>menu.setup.filter.texte</name>
  8906. <offsets>
  8907. <x-m>0.00617611</x-m>
  8908. <y-m>-0.0113466</y-m>
  8909. <z-m>0.0142989</z-m>
  8910. </offsets>
  8911. <alignment>left-center</alignment>
  8912. <axis-alignment>yz-plane</axis-alignment>
  8913. <type type="string">literal</type>
  8914. <text type="string">Map filter</text>
  8915. <font type="string">helvetica_bold.txf</font>
  8916. <character-size type="double">0.005</character-size>
  8917. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  8918. <font-resolution>
  8919. <width type="int">32</width>
  8920. <height type="int">32</height>
  8921. </font-resolution>
  8922. </text>
  8923. <animation>
  8924. <type>select</type>
  8925. <object-name>menu.setup.nofilter.texte</object-name>
  8926. <condition>
  8927. <and>
  8928. <greater-than-equals>
  8929. <property>/instrumentation/garmin196/status</property>
  8930. <value>175</value>
  8931. </greater-than-equals>
  8932. <less-than>
  8933. <property>/instrumentation/garmin196/status</property>
  8934. <value>180</value>
  8935. </less-than>
  8936. <equals>
  8937. <property>/instrumentation/garmin196/params/filtrage</property>
  8938. <value>0</value>
  8939. </equals>
  8940. </and>
  8941. </condition>
  8942. </animation>
  8943. <animation>
  8944. <type>select</type>
  8945. <object-name>menu.setup.filter.texte</object-name>
  8946. <condition>
  8947. <and>
  8948. <greater-than-equals>
  8949. <property>/instrumentation/garmin196/status</property>
  8950. <value>175</value>
  8951. </greater-than-equals>
  8952. <less-than>
  8953. <property>/instrumentation/garmin196/status</property>
  8954. <value>180</value>
  8955. </less-than>
  8956. <equals>
  8957. <property>/instrumentation/garmin196/params/filtrage</property>
  8958. <value>1</value>
  8959. </equals>
  8960. </and>
  8961. </condition>
  8962. </animation>
  8963. <animation>
  8964. <type>material</type>
  8965. <object-name>menu.setup.nofilter.texte</object-name>
  8966. <object-name>menu.setup.filter.texte</object-name>
  8967. <ambient>
  8968. <red>0</red>
  8969. <green>0</green>
  8970. <blue>0</blue>
  8971. </ambient>
  8972. <diffuse>
  8973. <red>0</red>
  8974. <green>0</green>
  8975. <blue>0</blue>
  8976. </diffuse>
  8977. <condition>
  8978. <not>
  8979. <equals>
  8980. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  8981. <value>0</value>
  8982. </equals>
  8983. </not>
  8984. </condition>
  8985. </animation>
  8986. <animation>
  8987. <type>material</type>
  8988. <object-name>menu.setup.nofilter.texte</object-name>
  8989. <object-name>menu.setup.filter.texte</object-name>
  8990. <ambient>
  8991. <red>1</red>
  8992. <green>1</green>
  8993. <blue>1</blue>
  8994. </ambient>
  8995. <diffuse>
  8996. <red>1</red>
  8997. <green>1</green>
  8998. <blue>1</blue>
  8999. </diffuse>
  9000. <emission>
  9001. <blue> 1 </blue>
  9002. <red> 1 </red>
  9003. <green> 1 </green>
  9004. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  9005. </emission>
  9006. <condition>
  9007. <equals>
  9008. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  9009. <value>0</value>
  9010. </equals>
  9011. </condition>
  9012. </animation>
  9013. <text>
  9014. <name>menu.setup.novnav.texte</name>
  9015. <offsets>
  9016. <x-m>0.00617611</x-m>
  9017. <y-m>-0.0113466</y-m>
  9018. <z-m>0.0092989</z-m>
  9019. </offsets>
  9020. <alignment>left-center</alignment>
  9021. <axis-alignment>yz-plane</axis-alignment>
  9022. <type type="string">literal</type>
  9023. <text type="string">No VNAV</text>
  9024. <font type="string">helvetica_bold.txf</font>
  9025. <character-size type="double">0.005</character-size>
  9026. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  9027. <font-resolution>
  9028. <width type="int">32</width>
  9029. <height type="int">32</height>
  9030. </font-resolution>
  9031. </text>
  9032. <text>
  9033. <name>menu.setup.vnav.texte</name>
  9034. <offsets>
  9035. <x-m>0.00617611</x-m>
  9036. <y-m>-0.0113466</y-m>
  9037. <z-m>0.0092989</z-m>
  9038. </offsets>
  9039. <alignment>left-center</alignment>
  9040. <axis-alignment>yz-plane</axis-alignment>
  9041. <type type="string">literal</type>
  9042. <text type="string">VNAV Indicator</text>
  9043. <font type="string">helvetica_bold.txf</font>
  9044. <character-size type="double">0.005</character-size>
  9045. <character-aspect-ratio type="double">1.5</character-aspect-ratio>
  9046. <font-resolution>
  9047. <width type="int">32</width>
  9048. <height type="int">32</height>
  9049. </font-resolution>
  9050. </text>
  9051. <animation>
  9052. <type>select</type>
  9053. <object-name>menu.setup.novnav.texte</object-name>
  9054. <condition>
  9055. <and>
  9056. <greater-than-equals>
  9057. <property>/instrumentation/garmin196/status</property>
  9058. <value>175</value>
  9059. </greater-than-equals>
  9060. <less-than>
  9061. <property>/instrumentation/garmin196/status</property>
  9062. <value>180</value>
  9063. </less-than>
  9064. <equals>
  9065. <property>/instrumentation/garmin196/params/vnav-indicator</property>
  9066. <value>0</value>
  9067. </equals>
  9068. </and>
  9069. </condition>
  9070. </animation>
  9071. <animation>
  9072. <type>select</type>
  9073. <object-name>menu.setup.vnav.texte</object-name>
  9074. <condition>
  9075. <and>
  9076. <greater-than-equals>
  9077. <property>/instrumentation/garmin196/status</property>
  9078. <value>175</value>
  9079. </greater-than-equals>
  9080. <less-than>
  9081. <property>/instrumentation/garmin196/status</property>
  9082. <value>180</value>
  9083. </less-than>
  9084. <equals>
  9085. <property>/instrumentation/garmin196/params/vnav-indicator</property>
  9086. <value>1</value>
  9087. </equals>
  9088. </and>
  9089. </condition>
  9090. </animation>
  9091. <animation>
  9092. <type>material</type>
  9093. <object-name>menu.setup.novnav.texte</object-name>
  9094. <object-name>menu.setup.vnav.texte</object-name>
  9095. <ambient>
  9096. <red>0</red>
  9097. <green>0</green>
  9098. <blue>0</blue>
  9099. </ambient>
  9100. <diffuse>
  9101. <red>0</red>
  9102. <green>0</green>
  9103. <blue>0</blue>
  9104. </diffuse>
  9105. <condition>
  9106. <not>
  9107. <equals>
  9108. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  9109. <value>1</value>
  9110. </equals>
  9111. </not>
  9112. </condition>
  9113. </animation>
  9114. <animation>
  9115. <type>material</type>
  9116. <object-name>menu.setup.novnav.texte</object-name>
  9117. <object-name>menu.setup.vnav.texte</object-name>
  9118. <ambient>
  9119. <red>1</red>
  9120. <green>1</green>
  9121. <blue>1</blue>
  9122. </ambient>
  9123. <diffuse>
  9124. <red>1</red>
  9125. <green>1</green>
  9126. <blue>1</blue>
  9127. </diffuse>
  9128. <emission>
  9129. <blue> 1 </blue>
  9130. <red> 1 </red>
  9131. <green> 1 </green>
  9132. <factor-prop>/instrumentation/garmin196/light</factor-prop>
  9133. </emission>
  9134. <condition>
  9135. <equals>
  9136. <property>/instrumentation/garmin196/menu_setup/no_ligne_selected</property>
  9137. <value>1</value>
  9138. </equals>
  9139. </condition>
  9140. </animation>
  9141. </PropertyList>