timeType.json 174 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514
  1. [
  2. {
  3. "id": "QG01_082022520",
  4. "windturbineid": "QG01_08",
  5. "stationid": "QS_FDC",
  6. "timestamp": 1653034618868,
  7. "stophours": 0.00672,
  8. "onpowerhours": 0.0,
  9. "standbyhours": 0.09688000000000001,
  10. "starthours": 3.5784000000000007,
  11. "onlinehours": 2.922640000000001,
  12. "faulthours": 0.0,
  13. "maintainhours": 0.0,
  14. "offlinehours": 0.0,
  15. "powerfactor": 1.0,
  16. "averageWindSpeedDay": 4.723069190979004
  17. },
  18. {
  19. "id": "QG01_092022520",
  20. "windturbineid": "QG01_09",
  21. "stationid": "QS_FDC",
  22. "timestamp": 1653034618868,
  23. "stophours": 0.007,
  24. "onpowerhours": 0.0,
  25. "standbyhours": 0.08316000000000001,
  26. "starthours": 3.4938399999999996,
  27. "onlinehours": 12.722639999999998,
  28. "faulthours": 0.0,
  29. "maintainhours": 0.0,
  30. "offlinehours": 0.0,
  31. "powerfactor": 1.0,
  32. "averageWindSpeedDay": 4.5880537033081055
  33. },
  34. {
  35. "id": "QG01_042022520",
  36. "windturbineid": "QG01_04",
  37. "stationid": "QS_FDC",
  38. "timestamp": 1653034618868,
  39. "stophours": 0.0,
  40. "onpowerhours": 0.0,
  41. "standbyhours": 0.0,
  42. "starthours": 3.9519199999999994,
  43. "onlinehours": 3.8724000000000016,
  44. "faulthours": 0.0,
  45. "maintainhours": 0.0,
  46. "offlinehours": 0.0,
  47. "powerfactor": -0.800000011920929,
  48. "averageWindSpeedDay": 4.1175079345703125
  49. },
  50. {
  51. "id": "QG01_052022520",
  52. "windturbineid": "QG01_05",
  53. "stationid": "QS_FDC",
  54. "timestamp": 1653034618868,
  55. "stophours": 0.0476,
  56. "onpowerhours": 0.0,
  57. "standbyhours": 0.7154,
  58. "starthours": 3.954999999999999,
  59. "onlinehours": 3.1494400000000007,
  60. "faulthours": 0.0,
  61. "maintainhours": 0.0,
  62. "offlinehours": 0.0,
  63. "powerfactor": -0.699999988079071,
  64. "averageWindSpeedDay": 4.038105010986328
  65. },
  66. {
  67. "id": "QG01_062022520",
  68. "windturbineid": "QG01_06",
  69. "stationid": "QS_FDC",
  70. "timestamp": 1653034618868,
  71. "stophours": 0.0,
  72. "onpowerhours": 0.0,
  73. "standbyhours": 0.0,
  74. "starthours": 3.78728,
  75. "onlinehours": 2.3452800000000007,
  76. "faulthours": 0.0,
  77. "maintainhours": 0.0,
  78. "offlinehours": 0.0,
  79. "powerfactor": 0.4000000059604645,
  80. "averageWindSpeedDay": 4.740782737731934
  81. },
  82. {
  83. "id": "QG01_072022520",
  84. "windturbineid": "QG01_07",
  85. "stationid": "QS_FDC",
  86. "timestamp": 1653034618868,
  87. "stophours": 0.0061600000000000005,
  88. "onpowerhours": 0.0,
  89. "standbyhours": 1.43248,
  90. "starthours": 2.805040000000001,
  91. "onlinehours": 1.9541200000000005,
  92. "faulthours": 0.04676000000000001,
  93. "maintainhours": 0.0,
  94. "offlinehours": 0.0,
  95. "powerfactor": 1.0,
  96. "averageWindSpeedDay": 4.516889572143555
  97. },
  98. {
  99. "id": "QG01_012022520",
  100. "windturbineid": "QG01_01",
  101. "stationid": "QS_FDC",
  102. "timestamp": 1653034618868,
  103. "stophours": 0.05012,
  104. "onpowerhours": 0.0,
  105. "standbyhours": 0.39732,
  106. "starthours": 3.843280000000001,
  107. "onlinehours": 3.3527199999999997,
  108. "faulthours": 0.0,
  109. "maintainhours": 0.0,
  110. "offlinehours": 0.0,
  111. "powerfactor": 1.0,
  112. "averageWindSpeedDay": 4.864572525024414
  113. },
  114. {
  115. "id": "QG01_022022520",
  116. "windturbineid": "QG01_02",
  117. "stationid": "QS_FDC",
  118. "timestamp": 1653034618868,
  119. "stophours": 0.10024000000000001,
  120. "onpowerhours": 0.0,
  121. "standbyhours": 0.6003200000000001,
  122. "starthours": 4.611600000000001,
  123. "onlinehours": 10.474240000000002,
  124. "faulthours": 0.053200000000000004,
  125. "maintainhours": 0.0,
  126. "offlinehours": 0.0,
  127. "powerfactor": -0.699999988079071,
  128. "averageWindSpeedDay": 4.184243202209473
  129. },
  130. {
  131. "id": "QG01_032022520",
  132. "windturbineid": "QG01_03",
  133. "stationid": "QS_FDC",
  134. "timestamp": 1653034618868,
  135. "stophours": 0.063,
  136. "onpowerhours": 0.0,
  137. "standbyhours": 1.17712,
  138. "starthours": 3.826200000000001,
  139. "onlinehours": 11.156600000000003,
  140. "faulthours": 0.0,
  141. "maintainhours": 0.0,
  142. "offlinehours": 0.0,
  143. "powerfactor": -0.699999988079071,
  144. "averageWindSpeedDay": 3.8252317905426025
  145. },
  146. {
  147. "id": "QG01_262022520",
  148. "windturbineid": "QG01_26",
  149. "stationid": "QS_FDC",
  150. "timestamp": 1653034618868,
  151. "stophours": 0.06132,
  152. "onpowerhours": 0.0,
  153. "standbyhours": 0.96684,
  154. "starthours": 2.6936,
  155. "onlinehours": 2.471,
  156. "faulthours": 0.0,
  157. "maintainhours": 0.0,
  158. "offlinehours": 0.0,
  159. "powerfactor": -0.5,
  160. "averageWindSpeedDay": 3.6636457443237305
  161. },
  162. {
  163. "id": "QG01_272022520",
  164. "windturbineid": "QG01_27",
  165. "stationid": "QS_FDC",
  166. "timestamp": 1653034618868,
  167. "stophours": 0.0,
  168. "onpowerhours": 0.0,
  169. "standbyhours": 0.0,
  170. "starthours": 2.8484399999999996,
  171. "onlinehours": 2.73756,
  172. "faulthours": 0.0,
  173. "maintainhours": 0.0,
  174. "offlinehours": 0.0,
  175. "powerfactor": -0.6000000238418579,
  176. "averageWindSpeedDay": 3.887847661972046
  177. },
  178. {
  179. "id": "QG01_282022520",
  180. "windturbineid": "QG01_28",
  181. "stationid": "QS_FDC",
  182. "timestamp": 1653034618868,
  183. "stophours": 0.052640000000000006,
  184. "onpowerhours": 0.0,
  185. "standbyhours": 0.0,
  186. "starthours": 3.0962400000000003,
  187. "onlinehours": 2.8260400000000003,
  188. "faulthours": 0.0,
  189. "maintainhours": 0.0,
  190. "offlinehours": 0.0,
  191. "powerfactor": -0.6000000238418579,
  192. "averageWindSpeedDay": 3.936972141265869
  193. },
  194. {
  195. "id": "QG01_292022520",
  196. "windturbineid": "QG01_29",
  197. "stationid": "QS_FDC",
  198. "timestamp": 1653034618868,
  199. "stophours": 0.00672,
  200. "onpowerhours": 0.0,
  201. "standbyhours": 0.1582,
  202. "starthours": 2.65888,
  203. "onlinehours": 1.9020399999999997,
  204. "faulthours": 0.47600000000000003,
  205. "maintainhours": 0.0,
  206. "offlinehours": 0.0,
  207. "powerfactor": -0.699999988079071,
  208. "averageWindSpeedDay": 3.686405658721924
  209. },
  210. {
  211. "id": "QG01_222022520",
  212. "windturbineid": "QG01_22",
  213. "stationid": "QS_FDC",
  214. "timestamp": 1653034618868,
  215. "stophours": 0.14448,
  216. "onpowerhours": 0.0,
  217. "standbyhours": 0.32200000000000006,
  218. "starthours": 3.31352,
  219. "onlinehours": 1.9935999999999998,
  220. "faulthours": 0.0,
  221. "maintainhours": 0.0,
  222. "offlinehours": 0.0,
  223. "powerfactor": -0.5,
  224. "averageWindSpeedDay": 4.008444786071777
  225. },
  226. {
  227. "id": "QG01_232022520",
  228. "windturbineid": "QG01_23",
  229. "stationid": "QS_FDC",
  230. "timestamp": 1653034618868,
  231. "stophours": 0.00644,
  232. "onpowerhours": 0.0,
  233. "standbyhours": 0.44772,
  234. "starthours": 3.39332,
  235. "onlinehours": 1.7796800000000002,
  236. "faulthours": 0.0,
  237. "maintainhours": 0.0,
  238. "offlinehours": 0.0,
  239. "powerfactor": 1.0,
  240. "averageWindSpeedDay": 4.810916423797607
  241. },
  242. {
  243. "id": "QG01_242022520",
  244. "windturbineid": "QG01_24",
  245. "stationid": "QS_FDC",
  246. "timestamp": 1653034618868,
  247. "stophours": 0.0,
  248. "onpowerhours": 0.0,
  249. "standbyhours": 0.0,
  250. "starthours": 3.3244400000000014,
  251. "onlinehours": 2.74568,
  252. "faulthours": 0.0,
  253. "maintainhours": 0.0,
  254. "offlinehours": 0.0,
  255. "powerfactor": -0.699999988079071,
  256. "averageWindSpeedDay": 4.68784761428833
  257. },
  258. {
  259. "id": "QG01_252022520",
  260. "windturbineid": "QG01_25",
  261. "stationid": "QS_FDC",
  262. "timestamp": 1653034618868,
  263. "stophours": 0.05320000000000001,
  264. "onpowerhours": 0.0,
  265. "standbyhours": 0.77924,
  266. "starthours": 2.64068,
  267. "onlinehours": 5.2962,
  268. "faulthours": 4.442200000000001,
  269. "maintainhours": 0.0,
  270. "offlinehours": 0.0,
  271. "powerfactor": -0.699999988079071,
  272. "averageWindSpeedDay": 4.0911431312561035
  273. },
  274. {
  275. "id": "QG01_202022520",
  276. "windturbineid": "QG01_20",
  277. "stationid": "QS_FDC",
  278. "timestamp": 1653034618868,
  279. "stophours": 0.05432,
  280. "onpowerhours": 0.0,
  281. "standbyhours": 0.29008,
  282. "starthours": 3.2015200000000004,
  283. "onlinehours": 10.240720000000001,
  284. "faulthours": 0.0,
  285. "maintainhours": 0.0,
  286. "offlinehours": 0.0,
  287. "powerfactor": -0.699999988079071,
  288. "averageWindSpeedDay": 3.423480987548828
  289. },
  290. {
  291. "id": "QG01_212022520",
  292. "windturbineid": "QG01_21",
  293. "stationid": "QS_FDC",
  294. "timestamp": 1653034618868,
  295. "stophours": 0.02156,
  296. "onpowerhours": 0.0,
  297. "standbyhours": 1.17572,
  298. "starthours": 2.67652,
  299. "onlinehours": 2.51244,
  300. "faulthours": 0.0,
  301. "maintainhours": 0.0,
  302. "offlinehours": 0.0,
  303. "powerfactor": -0.6000000238418579,
  304. "averageWindSpeedDay": 3.695056676864624
  305. },
  306. {
  307. "id": "QG01_192022520",
  308. "windturbineid": "QG01_19",
  309. "stationid": "QS_FDC",
  310. "timestamp": 1653034618868,
  311. "stophours": 0.0,
  312. "onpowerhours": 0.0,
  313. "standbyhours": 0.13272,
  314. "starthours": 2.95428,
  315. "onlinehours": 1.77884,
  316. "faulthours": 1.4131600000000002,
  317. "maintainhours": 0.0,
  318. "offlinehours": 0.0,
  319. "powerfactor": -0.6000000238418579,
  320. "averageWindSpeedDay": 3.984243154525757
  321. },
  322. {
  323. "id": "QG01_152022520",
  324. "windturbineid": "QG01_15",
  325. "stationid": "QS_FDC",
  326. "timestamp": 1653034618868,
  327. "stophours": 0.48608000000000007,
  328. "onpowerhours": 0.0,
  329. "standbyhours": 0.54432,
  330. "starthours": 4.39012,
  331. "onlinehours": 9.535960000000001,
  332. "faulthours": 0.0,
  333. "maintainhours": 0.0,
  334. "offlinehours": 0.0,
  335. "powerfactor": -0.699999988079071,
  336. "averageWindSpeedDay": 4.392996788024902
  337. },
  338. {
  339. "id": "XG01_092022520",
  340. "windturbineid": "XG01_09",
  341. "stationid": "XS_FDC",
  342. "timestamp": 1653034618868,
  343. "stophours": 0.0,
  344. "onpowerhours": 0.0,
  345. "standbyhours": 5.457479999999999,
  346. "starthours": 2.42844,
  347. "onlinehours": 3.8533600000000003,
  348. "faulthours": 0.0,
  349. "maintainhours": 0.0,
  350. "offlinehours": 0.0,
  351. "powerfactor": 0.9879999756813049,
  352. "averageWindSpeedDay": 3.5869510173797607
  353. },
  354. {
  355. "id": "QG01_162022520",
  356. "windturbineid": "QG01_16",
  357. "stationid": "QS_FDC",
  358. "timestamp": 1653034618868,
  359. "stophours": 0.007560000000000001,
  360. "onpowerhours": 0.0,
  361. "standbyhours": 0.12404000000000001,
  362. "starthours": 3.8544800000000006,
  363. "onlinehours": 1.7337599999999997,
  364. "faulthours": 0.0,
  365. "maintainhours": 0.0,
  366. "offlinehours": 0.0,
  367. "powerfactor": -0.699999988079071,
  368. "averageWindSpeedDay": 4.878475666046143
  369. },
  370. {
  371. "id": "QG01_172022520",
  372. "windturbineid": "QG01_17",
  373. "stationid": "QS_FDC",
  374. "timestamp": 1653034618868,
  375. "stophours": 0.0,
  376. "onpowerhours": 0.0,
  377. "standbyhours": 0.0,
  378. "starthours": 3.528,
  379. "onlinehours": 2.49172,
  380. "faulthours": 0.0,
  381. "maintainhours": 0.0,
  382. "offlinehours": 0.0,
  383. "powerfactor": -0.699999988079071,
  384. "averageWindSpeedDay": 4.338928699493408
  385. },
  386. {
  387. "id": "QG01_182022520",
  388. "windturbineid": "QG01_18",
  389. "stationid": "QS_FDC",
  390. "timestamp": 1653034618868,
  391. "stophours": 0.007280000000000001,
  392. "onpowerhours": 0.0,
  393. "standbyhours": 2.2792000000000003,
  394. "starthours": 2.0515600000000003,
  395. "onlinehours": 2.0087200000000003,
  396. "faulthours": 0.37464000000000003,
  397. "maintainhours": 0.0,
  398. "offlinehours": 0.0,
  399. "powerfactor": -0.20000000298023224,
  400. "averageWindSpeedDay": 4.534603595733643
  401. },
  402. {
  403. "id": "QG01_112022520",
  404. "windturbineid": "QG01_11",
  405. "stationid": "QS_FDC",
  406. "timestamp": 1653034618868,
  407. "stophours": 0.01372,
  408. "onpowerhours": 0.0,
  409. "standbyhours": 0.8705200000000001,
  410. "starthours": 3.31072,
  411. "onlinehours": 2.07228,
  412. "faulthours": 0.0,
  413. "maintainhours": 0.0,
  414. "offlinehours": 0.0,
  415. "powerfactor": -0.699999988079071,
  416. "averageWindSpeedDay": 3.5491247177124023
  417. },
  418. {
  419. "id": "QG01_122022520",
  420. "windturbineid": "QG01_12",
  421. "stationid": "QS_FDC",
  422. "timestamp": 1653034618868,
  423. "stophours": 0.0,
  424. "onpowerhours": 0.0,
  425. "standbyhours": 0.36428,
  426. "starthours": 2.85992,
  427. "onlinehours": 1.463,
  428. "faulthours": 1.0934000000000001,
  429. "maintainhours": 0.0,
  430. "offlinehours": 0.0,
  431. "powerfactor": 1.0,
  432. "averageWindSpeedDay": 4.33748722076416
  433. },
  434. {
  435. "id": "QG01_132022520",
  436. "windturbineid": "QG01_13",
  437. "stationid": "QS_FDC",
  438. "timestamp": 1653034618868,
  439. "stophours": 0.15372000000000002,
  440. "onpowerhours": 0.0,
  441. "standbyhours": 0.06440000000000001,
  442. "starthours": 3.55572,
  443. "onlinehours": 5.943839999999999,
  444. "faulthours": 0.0,
  445. "maintainhours": 0.0,
  446. "offlinehours": 0.0,
  447. "powerfactor": 1.0,
  448. "averageWindSpeedDay": 4.5625128746032715
  449. },
  450. {
  451. "id": "QG01_142022520",
  452. "windturbineid": "QG01_14",
  453. "stationid": "QS_FDC",
  454. "timestamp": 1653034618868,
  455. "stophours": 0.05544,
  456. "onpowerhours": 0.0,
  457. "standbyhours": 0.15176,
  458. "starthours": 3.0704800000000008,
  459. "onlinehours": 1.4364000000000001,
  460. "faulthours": 0.0,
  461. "maintainhours": 0.0,
  462. "offlinehours": 0.0,
  463. "powerfactor": -0.6000000238418579,
  464. "averageWindSpeedDay": 4.499382019042969
  465. },
  466. {
  467. "id": "XG01_012022520",
  468. "windturbineid": "XG01_01",
  469. "stationid": "XS_FDC",
  470. "timestamp": 1653034618868,
  471. "stophours": 0.0,
  472. "onpowerhours": 0.0,
  473. "standbyhours": 3.1082799999999993,
  474. "starthours": 0.8682800000000002,
  475. "onlinehours": 3.3532800000000003,
  476. "faulthours": 0.0,
  477. "maintainhours": 0.0,
  478. "offlinehours": 0.0,
  479. "powerfactor": -0.972000002861023,
  480. "averageWindSpeedDay": 3.879074811935425
  481. },
  482. {
  483. "id": "XG01_022022520",
  484. "windturbineid": "XG01_02",
  485. "stationid": "XS_FDC",
  486. "timestamp": 1653034618868,
  487. "stophours": 0.0,
  488. "onpowerhours": 0.0,
  489. "standbyhours": 3.6727599999999994,
  490. "starthours": 1.6077600000000003,
  491. "onlinehours": 6.644119999999999,
  492. "faulthours": 0.0,
  493. "maintainhours": 0.0,
  494. "offlinehours": 0.0,
  495. "powerfactor": 1.0,
  496. "averageWindSpeedDay": 3.9744863510131836
  497. },
  498. {
  499. "id": "XG01_032022520",
  500. "windturbineid": "XG01_03",
  501. "stationid": "XS_FDC",
  502. "timestamp": 1653034618868,
  503. "stophours": 0.0,
  504. "onpowerhours": 0.0,
  505. "standbyhours": 4.127199999999998,
  506. "starthours": 1.4963200000000003,
  507. "onlinehours": 6.02308,
  508. "faulthours": 0.0,
  509. "maintainhours": 0.0,
  510. "offlinehours": 0.0,
  511. "powerfactor": 0.9760000109672546,
  512. "averageWindSpeedDay": 4.084348678588867
  513. },
  514. {
  515. "id": "QG01_102022520",
  516. "windturbineid": "QG01_10",
  517. "stationid": "QS_FDC",
  518. "timestamp": 1653034618868,
  519. "stophours": 0.21028000000000002,
  520. "onpowerhours": 0.0,
  521. "standbyhours": 0.11788000000000001,
  522. "starthours": 3.5753199999999996,
  523. "onlinehours": 12.152000000000001,
  524. "faulthours": 0.0,
  525. "maintainhours": 0.0,
  526. "offlinehours": 0.0,
  527. "powerfactor": -0.10000000149011612,
  528. "averageWindSpeedDay": 4.177445888519287
  529. },
  530. {
  531. "id": "XG01_042022520",
  532. "windturbineid": "XG01_04",
  533. "stationid": "XS_FDC",
  534. "timestamp": 1653034618868,
  535. "stophours": 0.0,
  536. "onpowerhours": 0.00336,
  537. "standbyhours": 2.8406000000000007,
  538. "starthours": 1.0729600000000001,
  539. "onlinehours": 3.2642400000000005,
  540. "faulthours": 0.07700000000000001,
  541. "maintainhours": 0.0,
  542. "offlinehours": 0.0,
  543. "powerfactor": 1.0,
  544. "averageWindSpeedDay": 9.068147659301758
  545. },
  546. {
  547. "id": "XG01_052022520",
  548. "windturbineid": "XG01_05",
  549. "stationid": "XS_FDC",
  550. "timestamp": 1653034618868,
  551. "stophours": 0.0,
  552. "onpowerhours": 0.00196,
  553. "standbyhours": 2.61268,
  554. "starthours": 0.78904,
  555. "onlinehours": 4.549440000000001,
  556. "faulthours": 0.0,
  557. "maintainhours": 0.0,
  558. "offlinehours": 0.0,
  559. "powerfactor": 0.8999999761581421,
  560. "averageWindSpeedDay": 3.869107484817505
  561. },
  562. {
  563. "id": "XG01_062022520",
  564. "windturbineid": "XG01_06",
  565. "stationid": "XS_FDC",
  566. "timestamp": 1653034618868,
  567. "stophours": 0.0,
  568. "onpowerhours": 0.0,
  569. "standbyhours": 2.62192,
  570. "starthours": 0.84952,
  571. "onlinehours": 6.52036,
  572. "faulthours": 0.0,
  573. "maintainhours": 0.0,
  574. "offlinehours": 0.0,
  575. "powerfactor": 0.9810000061988831,
  576. "averageWindSpeedDay": 4.0517578125
  577. },
  578. {
  579. "id": "XG01_072022520",
  580. "windturbineid": "XG01_07",
  581. "stationid": "XS_FDC",
  582. "timestamp": 1653034618868,
  583. "stophours": 0.0,
  584. "onpowerhours": 0.0,
  585. "standbyhours": 3.15756,
  586. "starthours": 0.6762,
  587. "onlinehours": 0.98784,
  588. "faulthours": 0.0,
  589. "maintainhours": 0.0,
  590. "offlinehours": 0.0,
  591. "powerfactor": 0.968999981880188,
  592. "averageWindSpeedDay": 3.8188350200653076
  593. },
  594. {
  595. "id": "XG01_082022520",
  596. "windturbineid": "XG01_08",
  597. "stationid": "XS_FDC",
  598. "timestamp": 1653034618868,
  599. "stophours": 0.0,
  600. "onpowerhours": 0.0,
  601. "standbyhours": 2.9763999999999995,
  602. "starthours": 0.9926,
  603. "onlinehours": 3.2712400000000006,
  604. "faulthours": 0.0,
  605. "maintainhours": 0.0,
  606. "offlinehours": 0.0,
  607. "powerfactor": 0.9750000238418579,
  608. "averageWindSpeedDay": 4.063368320465088
  609. },
  610. {
  611. "id": "SG01_1112022520",
  612. "windturbineid": "SG01_111",
  613. "stationid": "SBQ_FDC",
  614. "timestamp": 1653034618868,
  615. "stophours": 0.0,
  616. "onpowerhours": 0.0266,
  617. "standbyhours": 7.4225200000000005,
  618. "starthours": 1.91968,
  619. "onlinehours": 5.360040000000001,
  620. "faulthours": 0.17528000000000002,
  621. "maintainhours": 0.0,
  622. "offlinehours": 0.0,
  623. "powerfactor": 1.0,
  624. "averageWindSpeedDay": 2.5868451595306396
  625. },
  626. {
  627. "id": "SG01_1102022520",
  628. "windturbineid": "SG01_110",
  629. "stationid": "SBQ_FDC",
  630. "timestamp": 1653034618868,
  631. "stophours": 0.0,
  632. "onpowerhours": 0.020720000000000002,
  633. "standbyhours": 1.9762400000000007,
  634. "starthours": 2.3206400000000005,
  635. "onlinehours": 4.745160000000001,
  636. "faulthours": 0.22512000000000001,
  637. "maintainhours": 0.0,
  638. "offlinehours": 0.0,
  639. "powerfactor": 1.0,
  640. "averageWindSpeedDay": 3.711315870285034
  641. },
  642. {
  643. "id": "XG01_102022520",
  644. "windturbineid": "XG01_10",
  645. "stationid": "XS_FDC",
  646. "timestamp": 1653034618868,
  647. "stophours": 0.0,
  648. "onpowerhours": 0.0,
  649. "standbyhours": 3.9715200000000013,
  650. "starthours": 1.0054800000000002,
  651. "onlinehours": 2.45588,
  652. "faulthours": 0.0,
  653. "maintainhours": 0.0,
  654. "offlinehours": 0.0,
  655. "powerfactor": 0.9739999771118164,
  656. "averageWindSpeedDay": 3.9244065284729004
  657. },
  658. {
  659. "id": "XG01_112022520",
  660. "windturbineid": "XG01_11",
  661. "stationid": "XS_FDC",
  662. "timestamp": 1653034618868,
  663. "stophours": 0.0,
  664. "onpowerhours": 0.0,
  665. "standbyhours": 3.22056,
  666. "starthours": 1.45208,
  667. "onlinehours": 2.48276,
  668. "faulthours": 0.0,
  669. "maintainhours": 0.0,
  670. "offlinehours": 0.0,
  671. "powerfactor": 1.0,
  672. "averageWindSpeedDay": 4.319842338562012
  673. },
  674. {
  675. "id": "SG01_1152022520",
  676. "windturbineid": "SG01_115",
  677. "stationid": "SBQ_FDC",
  678. "timestamp": 1653034618868,
  679. "stophours": 0.0,
  680. "onpowerhours": 0.0112,
  681. "standbyhours": 5.647040000000002,
  682. "starthours": 1.99724,
  683. "onlinehours": 2.5975600000000005,
  684. "faulthours": 0.14140000000000003,
  685. "maintainhours": 0.0,
  686. "offlinehours": 0.0,
  687. "powerfactor": 1.0,
  688. "averageWindSpeedDay": 2.8074920177459717
  689. },
  690. {
  691. "id": "SG01_1142022520",
  692. "windturbineid": "SG01_114",
  693. "stationid": "SBQ_FDC",
  694. "timestamp": 1653034618868,
  695. "stophours": 0.0,
  696. "onpowerhours": 0.02772,
  697. "standbyhours": 4.82244,
  698. "starthours": 2.1372400000000003,
  699. "onlinehours": 3.4361600000000005,
  700. "faulthours": 0.12880000000000003,
  701. "maintainhours": 0.0,
  702. "offlinehours": 0.0,
  703. "powerfactor": 1.0,
  704. "averageWindSpeedDay": 2.8361237049102783
  705. },
  706. {
  707. "id": "SG01_1132022520",
  708. "windturbineid": "SG01_113",
  709. "stationid": "SBQ_FDC",
  710. "timestamp": 1653034618868,
  711. "stophours": 0.0,
  712. "onpowerhours": 0.027440000000000003,
  713. "standbyhours": 5.519359999999999,
  714. "starthours": 2.080400000000001,
  715. "onlinehours": 2.5774000000000004,
  716. "faulthours": 0.16072000000000003,
  717. "maintainhours": 0.0,
  718. "offlinehours": 0.0,
  719. "powerfactor": 1.0,
  720. "averageWindSpeedDay": 2.8304247856140137
  721. },
  722. {
  723. "id": "SG01_1122022520",
  724. "windturbineid": "SG01_112",
  725. "stationid": "SBQ_FDC",
  726. "timestamp": 1653034618868,
  727. "stophours": 0.0,
  728. "onpowerhours": 0.01316,
  729. "standbyhours": 5.97044,
  730. "starthours": 1.0032400000000001,
  731. "onlinehours": 2.83976,
  732. "faulthours": 0.0994,
  733. "maintainhours": 2.47072,
  734. "offlinehours": 0.0,
  735. "powerfactor": 1.0,
  736. "averageWindSpeedDay": 2.593574047088623
  737. },
  738. {
  739. "id": "SG01_1162022520",
  740. "windturbineid": "SG01_116",
  741. "stationid": "SBQ_FDC",
  742. "timestamp": 1653034618868,
  743. "stophours": 0.0,
  744. "onpowerhours": 0.02688000000000001,
  745. "standbyhours": 7.287559999999999,
  746. "starthours": 2.32568,
  747. "onlinehours": 0.9564800000000002,
  748. "faulthours": 0.2237200000000001,
  749. "maintainhours": 0.0,
  750. "offlinehours": 0.0,
  751. "powerfactor": 1.0,
  752. "averageWindSpeedDay": 2.5602104663848877
  753. },
  754. {
  755. "id": "XG01_122022520",
  756. "windturbineid": "XG01_12",
  757. "stationid": "XS_FDC",
  758. "timestamp": 1653034618868,
  759. "stophours": 0.0,
  760. "onpowerhours": 0.0,
  761. "standbyhours": 3.3434799999999996,
  762. "starthours": 0.84616,
  763. "onlinehours": 2.0602400000000003,
  764. "faulthours": 0.0,
  765. "maintainhours": 0.0,
  766. "offlinehours": 0.0,
  767. "powerfactor": 1.0,
  768. "averageWindSpeedDay": 3.347841262817383
  769. },
  770. {
  771. "id": "XG01_132022520",
  772. "windturbineid": "XG01_13",
  773. "stationid": "XS_FDC",
  774. "timestamp": 1653034618868,
  775. "stophours": 0.0,
  776. "onpowerhours": 0.0,
  777. "standbyhours": 6.138159999999998,
  778. "starthours": 1.32552,
  779. "onlinehours": 3.41432,
  780. "faulthours": 0.0,
  781. "maintainhours": 0.0,
  782. "offlinehours": 0.0,
  783. "powerfactor": 1.0,
  784. "averageWindSpeedDay": 3.3124585151672363
  785. },
  786. {
  787. "id": "XG01_142022520",
  788. "windturbineid": "XG01_14",
  789. "stationid": "XS_FDC",
  790. "timestamp": 1653034618868,
  791. "stophours": 0.0,
  792. "onpowerhours": 0.0,
  793. "standbyhours": 6.812119999999998,
  794. "starthours": 1.17096,
  795. "onlinehours": 2.3744,
  796. "faulthours": 0.0,
  797. "maintainhours": 0.0,
  798. "offlinehours": 0.0,
  799. "powerfactor": 0.9810000061988831,
  800. "averageWindSpeedDay": 3.3224565982818604
  801. },
  802. {
  803. "id": "XG01_152022520",
  804. "windturbineid": "XG01_15",
  805. "stationid": "XS_FDC",
  806. "timestamp": 1653034618868,
  807. "stophours": 0.0,
  808. "onpowerhours": 0.0,
  809. "standbyhours": 4.513040000000001,
  810. "starthours": 0.7347200000000002,
  811. "onlinehours": 2.3713200000000003,
  812. "faulthours": 0.0,
  813. "maintainhours": 0.0,
  814. "offlinehours": 0.0,
  815. "powerfactor": 0.9700000286102295,
  816. "averageWindSpeedDay": 3.5299484729766846
  817. },
  818. {
  819. "id": "XG01_162022520",
  820. "windturbineid": "XG01_16",
  821. "stationid": "XS_FDC",
  822. "timestamp": 1653034618868,
  823. "stophours": 0.0,
  824. "onpowerhours": 0.0,
  825. "standbyhours": 1.3775999999999997,
  826. "starthours": 1.6114,
  827. "onlinehours": 3.81864,
  828. "faulthours": 0.0,
  829. "maintainhours": 0.0,
  830. "offlinehours": 0.0,
  831. "powerfactor": 0.9819999933242798,
  832. "averageWindSpeedDay": 3.8631348609924316
  833. },
  834. {
  835. "id": "XG01_172022520",
  836. "windturbineid": "XG01_17",
  837. "stationid": "XS_FDC",
  838. "timestamp": 1653034618868,
  839. "stophours": 0.0,
  840. "onpowerhours": 0.0,
  841. "standbyhours": 2.8151200000000007,
  842. "starthours": 1.1743200000000005,
  843. "onlinehours": 7.445759999999998,
  844. "faulthours": 0.0,
  845. "maintainhours": 0.0,
  846. "offlinehours": 0.0,
  847. "powerfactor": 1.0,
  848. "averageWindSpeedDay": 3.5930306911468506
  849. },
  850. {
  851. "id": "XG01_182022520",
  852. "windturbineid": "XG01_18",
  853. "stationid": "XS_FDC",
  854. "timestamp": 1653034618868,
  855. "stophours": 0.0,
  856. "onpowerhours": 0.0,
  857. "standbyhours": 3.524079999999999,
  858. "starthours": 1.0474800000000002,
  859. "onlinehours": 3.4174,
  860. "faulthours": 0.0,
  861. "maintainhours": 0.0,
  862. "offlinehours": 0.0,
  863. "powerfactor": 0.9769999980926514,
  864. "averageWindSpeedDay": 3.553277015686035
  865. },
  866. {
  867. "id": "XG01_192022520",
  868. "windturbineid": "XG01_19",
  869. "stationid": "XS_FDC",
  870. "timestamp": 1653034618868,
  871. "stophours": 0.0,
  872. "onpowerhours": 0.0,
  873. "standbyhours": 2.1159600000000003,
  874. "starthours": 1.8102000000000003,
  875. "onlinehours": 11.623920000000004,
  876. "faulthours": 0.0,
  877. "maintainhours": 0.0,
  878. "offlinehours": 0.0,
  879. "powerfactor": 0.9850000143051147,
  880. "averageWindSpeedDay": 3.8207385540008545
  881. },
  882. {
  883. "id": "SG01_1002022520",
  884. "windturbineid": "SG01_100",
  885. "stationid": "SBQ_FDC",
  886. "timestamp": 1653034618868,
  887. "stophours": 0.0,
  888. "onpowerhours": 0.0,
  889. "standbyhours": 0.0,
  890. "starthours": 0.0,
  891. "onlinehours": 0.0,
  892. "faulthours": 0.0,
  893. "maintainhours": 0.0,
  894. "offlinehours": 0.0,
  895. "powerfactor": 1.0,
  896. "averageWindSpeedDay": 3.1607232093811035
  897. },
  898. {
  899. "id": "XG01_202022520",
  900. "windturbineid": "XG01_20",
  901. "stationid": "XS_FDC",
  902. "timestamp": 1653034618868,
  903. "stophours": 0.0,
  904. "onpowerhours": 0.0,
  905. "standbyhours": 4.1734,
  906. "starthours": 1.21576,
  907. "onlinehours": 6.72308,
  908. "faulthours": 0.0,
  909. "maintainhours": 0.0,
  910. "offlinehours": 0.0,
  911. "powerfactor": 0.9729999899864197,
  912. "averageWindSpeedDay": 3.413651943206787
  913. },
  914. {
  915. "id": "XG01_212022520",
  916. "windturbineid": "XG01_21",
  917. "stationid": "XS_FDC",
  918. "timestamp": 1653034618868,
  919. "stophours": 0.0,
  920. "onpowerhours": 0.0,
  921. "standbyhours": 5.5048,
  922. "starthours": 1.1858000000000002,
  923. "onlinehours": 4.9994000000000005,
  924. "faulthours": 0.0,
  925. "maintainhours": 0.0,
  926. "offlinehours": 0.0,
  927. "powerfactor": 0.9810000061988831,
  928. "averageWindSpeedDay": 3.3186399936676025
  929. },
  930. {
  931. "id": "XG01_222022520",
  932. "windturbineid": "XG01_22",
  933. "stationid": "XS_FDC",
  934. "timestamp": 1653034618868,
  935. "stophours": 0.0,
  936. "onpowerhours": 0.0,
  937. "standbyhours": 6.43832,
  938. "starthours": 0.8181600000000001,
  939. "onlinehours": 3.858120000000001,
  940. "faulthours": 0.0,
  941. "maintainhours": 0.0,
  942. "offlinehours": 0.0,
  943. "powerfactor": 1.0,
  944. "averageWindSpeedDay": 3.3206961154937744
  945. },
  946. {
  947. "id": "SG01_1042022520",
  948. "windturbineid": "SG01_104",
  949. "stationid": "SBQ_FDC",
  950. "timestamp": 1653034618868,
  951. "stophours": 0.0,
  952. "onpowerhours": 0.01008,
  953. "standbyhours": 6.75696,
  954. "starthours": 0.98812,
  955. "onlinehours": 2.3097200000000004,
  956. "faulthours": 0.0588,
  957. "maintainhours": 0.0,
  958. "offlinehours": 0.0,
  959. "powerfactor": 1.0,
  960. "averageWindSpeedDay": 2.473068952560425
  961. },
  962. {
  963. "id": "SG01_1032022520",
  964. "windturbineid": "SG01_103",
  965. "stationid": "SBQ_FDC",
  966. "timestamp": 1653034618868,
  967. "stophours": 0.0,
  968. "onpowerhours": 0.01624,
  969. "standbyhours": 5.16236,
  970. "starthours": 1.24404,
  971. "onlinehours": 9.78012,
  972. "faulthours": 0.12824000000000002,
  973. "maintainhours": 0.0,
  974. "offlinehours": 0.0,
  975. "powerfactor": 1.0,
  976. "averageWindSpeedDay": 2.6738169193267822
  977. },
  978. {
  979. "id": "SG01_1022022520",
  980. "windturbineid": "SG01_102",
  981. "stationid": "SBQ_FDC",
  982. "timestamp": 1653034654166,
  983. "stophours": 0.0,
  984. "onpowerhours": 0.03200344,
  985. "standbyhours": 4.733680000000001,
  986. "starthours": 1.3350400000000002,
  987. "onlinehours": 2.6477429999999997,
  988. "faulthours": 0.04991756000000001,
  989. "maintainhours": 0.0,
  990. "offlinehours": 0.0,
  991. "powerfactor": -0.7149999737739563,
  992. "averageWindSpeedDay": 2.696666717529297
  993. },
  994. {
  995. "id": "SG01_1012022520",
  996. "windturbineid": "SG01_101",
  997. "stationid": "SBQ_FDC",
  998. "timestamp": 1653034618868,
  999. "stophours": 0.0,
  1000. "onpowerhours": 0.0182,
  1001. "standbyhours": 4.408879999999999,
  1002. "starthours": 1.42828,
  1003. "onlinehours": 2.9652000000000003,
  1004. "faulthours": 0.2394,
  1005. "maintainhours": 0.0,
  1006. "offlinehours": 0.0,
  1007. "powerfactor": 1.0,
  1008. "averageWindSpeedDay": 2.967543125152588
  1009. },
  1010. {
  1011. "id": "SG01_1082022520",
  1012. "windturbineid": "SG01_108",
  1013. "stationid": "SBQ_FDC",
  1014. "timestamp": 1653034618868,
  1015. "stophours": 0.0,
  1016. "onpowerhours": 0.01204,
  1017. "standbyhours": 4.459840000000001,
  1018. "starthours": 0.3794,
  1019. "onlinehours": 1.92584,
  1020. "faulthours": 0.12320000000000002,
  1021. "maintainhours": 6.17288,
  1022. "offlinehours": 0.0,
  1023. "powerfactor": 1.0,
  1024. "averageWindSpeedDay": 2.5649356842041016
  1025. },
  1026. {
  1027. "id": "SG01_1072022520",
  1028. "windturbineid": "SG01_107",
  1029. "stationid": "SBQ_FDC",
  1030. "timestamp": 1653034618868,
  1031. "stophours": 0.0,
  1032. "onpowerhours": 0.025759999999999998,
  1033. "standbyhours": 5.371239999999999,
  1034. "starthours": 2.604840000000001,
  1035. "onlinehours": 4.3358,
  1036. "faulthours": 0.20636000000000002,
  1037. "maintainhours": 0.0,
  1038. "offlinehours": 0.0,
  1039. "powerfactor": 1.0,
  1040. "averageWindSpeedDay": 2.6816399097442627
  1041. },
  1042. {
  1043. "id": "SG01_1062022520",
  1044. "windturbineid": "SG01_106",
  1045. "stationid": "SBQ_FDC",
  1046. "timestamp": 1653034618868,
  1047. "stophours": 0.0,
  1048. "onpowerhours": 0.020720000000000002,
  1049. "standbyhours": 5.628279999999999,
  1050. "starthours": 1.3403600000000004,
  1051. "onlinehours": 3.16512,
  1052. "faulthours": 0.11116000000000002,
  1053. "maintainhours": 0.0,
  1054. "offlinehours": 0.0,
  1055. "powerfactor": 1.0,
  1056. "averageWindSpeedDay": 2.5594029426574707
  1057. },
  1058. {
  1059. "id": "SG01_1052022520",
  1060. "windturbineid": "SG01_105",
  1061. "stationid": "SBQ_FDC",
  1062. "timestamp": 1653034618868,
  1063. "stophours": 0.0,
  1064. "onpowerhours": 0.01708,
  1065. "standbyhours": 6.99356,
  1066. "starthours": 1.03936,
  1067. "onlinehours": 4.135040000000001,
  1068. "faulthours": 0.06608,
  1069. "maintainhours": 0.0,
  1070. "offlinehours": 0.0,
  1071. "powerfactor": 1.0,
  1072. "averageWindSpeedDay": 2.6001312732696533
  1073. },
  1074. {
  1075. "id": "SG01_1092022520",
  1076. "windturbineid": "SG01_109",
  1077. "stationid": "SBQ_FDC",
  1078. "timestamp": 1653034618868,
  1079. "stophours": 0.0,
  1080. "onpowerhours": 0.01848,
  1081. "standbyhours": 2.4043600000000005,
  1082. "starthours": 0.95452,
  1083. "onlinehours": 2.81652,
  1084. "faulthours": 0.31164,
  1085. "maintainhours": 3.6307600000000004,
  1086. "offlinehours": 0.0,
  1087. "powerfactor": 1.0,
  1088. "averageWindSpeedDay": 2.8904716968536377
  1089. },
  1090. {
  1091. "id": "XG01_232022520",
  1092. "windturbineid": "XG01_23",
  1093. "stationid": "XS_FDC",
  1094. "timestamp": 1653034618868,
  1095. "stophours": 0.0,
  1096. "onpowerhours": 0.0,
  1097. "standbyhours": 2.79748,
  1098. "starthours": 1.2737200000000002,
  1099. "onlinehours": 6.390160000000002,
  1100. "faulthours": 0.0,
  1101. "maintainhours": 0.0,
  1102. "offlinehours": 0.0,
  1103. "powerfactor": 1.0,
  1104. "averageWindSpeedDay": 3.5891966819763184
  1105. },
  1106. {
  1107. "id": "XG01_242022520",
  1108. "windturbineid": "XG01_24",
  1109. "stationid": "XS_FDC",
  1110. "timestamp": 1653034618868,
  1111. "stophours": 0.0,
  1112. "onpowerhours": 0.0,
  1113. "standbyhours": 5.386920000000001,
  1114. "starthours": 1.0329199999999998,
  1115. "onlinehours": 4.89804,
  1116. "faulthours": 0.0,
  1117. "maintainhours": 0.0,
  1118. "offlinehours": 0.0,
  1119. "powerfactor": 0.972000002861023,
  1120. "averageWindSpeedDay": 3.2702410221099854
  1121. },
  1122. {
  1123. "id": "XG01_252022520",
  1124. "windturbineid": "XG01_25",
  1125. "stationid": "XS_FDC",
  1126. "timestamp": 1653034618868,
  1127. "stophours": 0.0,
  1128. "onpowerhours": 0.0,
  1129. "standbyhours": 5.955600000000001,
  1130. "starthours": 1.55932,
  1131. "onlinehours": 3.93764,
  1132. "faulthours": 0.0,
  1133. "maintainhours": 0.0,
  1134. "offlinehours": 0.0,
  1135. "powerfactor": 0.9620000123977661,
  1136. "averageWindSpeedDay": 3.367112636566162
  1137. },
  1138. {
  1139. "id": "XG01_262022520",
  1140. "windturbineid": "XG01_26",
  1141. "stationid": "XS_FDC",
  1142. "timestamp": 1653034618868,
  1143. "stophours": 0.0,
  1144. "onpowerhours": 0.20412000000000005,
  1145. "standbyhours": 2.1982800000000005,
  1146. "starthours": 0.7526399999999999,
  1147. "onlinehours": 2.1268800000000003,
  1148. "faulthours": 0.0,
  1149. "maintainhours": 2.80028,
  1150. "offlinehours": 0.0,
  1151. "powerfactor": 1.0,
  1152. "averageWindSpeedDay": 3.609947919845581
  1153. },
  1154. {
  1155. "id": "XG01_272022520",
  1156. "windturbineid": "XG01_27",
  1157. "stationid": "XS_FDC",
  1158. "timestamp": 1653034618868,
  1159. "stophours": 0.0,
  1160. "onpowerhours": 0.21084,
  1161. "standbyhours": 1.33896,
  1162. "starthours": 0.5501999999999999,
  1163. "onlinehours": 4.60124,
  1164. "faulthours": 1.02228,
  1165. "maintainhours": 4.089119999999999,
  1166. "offlinehours": 0.0,
  1167. "powerfactor": 1.0,
  1168. "averageWindSpeedDay": 3.620645761489868
  1169. },
  1170. {
  1171. "id": "XG01_282022520",
  1172. "windturbineid": "XG01_28",
  1173. "stationid": "XS_FDC",
  1174. "timestamp": 1653034618868,
  1175. "stophours": 0.0,
  1176. "onpowerhours": 0.1036,
  1177. "standbyhours": 1.53384,
  1178. "starthours": 0.98616,
  1179. "onlinehours": 1.8009600000000001,
  1180. "faulthours": 0.0,
  1181. "maintainhours": 7.47992,
  1182. "offlinehours": 0.0,
  1183. "powerfactor": 1.0,
  1184. "averageWindSpeedDay": 2.9702672958374023
  1185. },
  1186. {
  1187. "id": "XG01_292022520",
  1188. "windturbineid": "XG01_29",
  1189. "stationid": "XS_FDC",
  1190. "timestamp": 1653034618868,
  1191. "stophours": 0.0,
  1192. "onpowerhours": 0.14308,
  1193. "standbyhours": 4.24172,
  1194. "starthours": 0.6507200000000001,
  1195. "onlinehours": 0.95872,
  1196. "faulthours": 0.0,
  1197. "maintainhours": 6.86364,
  1198. "offlinehours": 0.0,
  1199. "powerfactor": 1.0,
  1200. "averageWindSpeedDay": 3.0025992393493652
  1201. },
  1202. {
  1203. "id": "XG01_302022520",
  1204. "windturbineid": "XG01_30",
  1205. "stationid": "XS_FDC",
  1206. "timestamp": 1653034618868,
  1207. "stophours": 0.0,
  1208. "onpowerhours": 0.08232,
  1209. "standbyhours": 0.69132,
  1210. "starthours": 0.49000000000000005,
  1211. "onlinehours": 1.37228,
  1212. "faulthours": 0.0,
  1213. "maintainhours": 5.561640000000001,
  1214. "offlinehours": 0.0,
  1215. "powerfactor": 1.0,
  1216. "averageWindSpeedDay": 3.365755796432495
  1217. },
  1218. {
  1219. "id": "XG01_312022520",
  1220. "windturbineid": "XG01_31",
  1221. "stationid": "XS_FDC",
  1222. "timestamp": 1653034618868,
  1223. "stophours": 0.0,
  1224. "onpowerhours": 0.07672000000000001,
  1225. "standbyhours": 1.0122,
  1226. "starthours": 0.3704400000000001,
  1227. "onlinehours": 2.920680000000001,
  1228. "faulthours": 0.0,
  1229. "maintainhours": 3.7402400000000005,
  1230. "offlinehours": 0.0,
  1231. "powerfactor": 1.0,
  1232. "averageWindSpeedDay": 3.7685582637786865
  1233. },
  1234. {
  1235. "id": "XG01_322022520",
  1236. "windturbineid": "XG01_32",
  1237. "stationid": "XS_FDC",
  1238. "timestamp": 1653034618868,
  1239. "stophours": 0.0,
  1240. "onpowerhours": 0.22848000000000002,
  1241. "standbyhours": 1.6587200000000002,
  1242. "starthours": 0.4426800000000001,
  1243. "onlinehours": 2.2744400000000002,
  1244. "faulthours": 0.0,
  1245. "maintainhours": 4.445,
  1246. "offlinehours": 0.0,
  1247. "powerfactor": 1.0,
  1248. "averageWindSpeedDay": 3.3136892318725586
  1249. },
  1250. {
  1251. "id": "XG01_332022520",
  1252. "windturbineid": "XG01_33",
  1253. "stationid": "XS_FDC",
  1254. "timestamp": 1653034618868,
  1255. "stophours": 0.0,
  1256. "onpowerhours": 0.2338,
  1257. "standbyhours": 2.3184,
  1258. "starthours": 0.41272000000000003,
  1259. "onlinehours": 4.65528,
  1260. "faulthours": 0.0,
  1261. "maintainhours": 4.528720000000001,
  1262. "offlinehours": 0.0,
  1263. "powerfactor": 1.0,
  1264. "averageWindSpeedDay": 3.2687389850616455
  1265. },
  1266. {
  1267. "id": "XG01_342022520",
  1268. "windturbineid": "XG01_34",
  1269. "stationid": "XS_FDC",
  1270. "timestamp": 1653034618868,
  1271. "stophours": 0.0,
  1272. "onpowerhours": 0.2114,
  1273. "standbyhours": 1.6648800000000001,
  1274. "starthours": 0.48384000000000005,
  1275. "onlinehours": 5.00696,
  1276. "faulthours": 0.0,
  1277. "maintainhours": 4.873400000000001,
  1278. "offlinehours": 0.0,
  1279. "powerfactor": 1.0,
  1280. "averageWindSpeedDay": 3.291597843170166
  1281. },
  1282. {
  1283. "id": "XG01_352022520",
  1284. "windturbineid": "XG01_35",
  1285. "stationid": "XS_FDC",
  1286. "timestamp": 1653034618868,
  1287. "stophours": 0.0,
  1288. "onpowerhours": 0.0,
  1289. "standbyhours": 0.01344,
  1290. "starthours": 0.0,
  1291. "onlinehours": 0.0,
  1292. "faulthours": 0.0,
  1293. "maintainhours": 1.3378400000000001,
  1294. "offlinehours": 0.0,
  1295. "powerfactor": 1.0,
  1296. "averageWindSpeedDay": 3.1584246158599854
  1297. },
  1298. {
  1299. "id": "XG01_362022520",
  1300. "windturbineid": "XG01_36",
  1301. "stationid": "XS_FDC",
  1302. "timestamp": 1653034632093,
  1303. "stophours": 0.0,
  1304. "onpowerhours": 0.21112000000000003,
  1305. "standbyhours": 1.241303,
  1306. "starthours": 0.413,
  1307. "onlinehours": 2.2901200000000004,
  1308. "faulthours": 0.0,
  1309. "maintainhours": 4.711840000000001,
  1310. "offlinehours": 0.0,
  1311. "powerfactor": 1.0,
  1312. "averageWindSpeedDay": 3.7348134517669678
  1313. },
  1314. {
  1315. "id": "XG01_372022520",
  1316. "windturbineid": "XG01_37",
  1317. "stationid": "XS_FDC",
  1318. "timestamp": 1653034618868,
  1319. "stophours": 0.0,
  1320. "onpowerhours": 0.10724000000000002,
  1321. "standbyhours": 1.6388399999999999,
  1322. "starthours": 0.8371999999999999,
  1323. "onlinehours": 1.6511600000000002,
  1324. "faulthours": 0.0,
  1325. "maintainhours": 4.214840000000001,
  1326. "offlinehours": 0.0,
  1327. "powerfactor": 1.0,
  1328. "averageWindSpeedDay": 3.105099678039551
  1329. },
  1330. {
  1331. "id": "XG01_382022520",
  1332. "windturbineid": "XG01_38",
  1333. "stationid": "XS_FDC",
  1334. "timestamp": 1653034618868,
  1335. "stophours": 0.0,
  1336. "onpowerhours": 0.21868,
  1337. "standbyhours": 1.2821200000000001,
  1338. "starthours": 0.5429200000000002,
  1339. "onlinehours": 2.0118,
  1340. "faulthours": 0.0,
  1341. "maintainhours": 3.02232,
  1342. "offlinehours": 0.0,
  1343. "powerfactor": 1.0,
  1344. "averageWindSpeedDay": 3.7589032649993896
  1345. },
  1346. {
  1347. "id": "XG01_392022520",
  1348. "windturbineid": "XG01_39",
  1349. "stationid": "XS_FDC",
  1350. "timestamp": 1653034618868,
  1351. "stophours": 0.0,
  1352. "onpowerhours": 0.16072000000000003,
  1353. "standbyhours": 1.5332800000000002,
  1354. "starthours": 0.35112000000000004,
  1355. "onlinehours": 3.8931199999999997,
  1356. "faulthours": 0.0,
  1357. "maintainhours": 4.49876,
  1358. "offlinehours": 0.0,
  1359. "powerfactor": 1.0,
  1360. "averageWindSpeedDay": 3.6020967960357666
  1361. },
  1362. {
  1363. "id": "NG01_052022520",
  1364. "windturbineid": "NG01_05",
  1365. "stationid": "NSS_FDC",
  1366. "timestamp": 1653034618868,
  1367. "stophours": 0.0,
  1368. "onpowerhours": 0.13944,
  1369. "standbyhours": 6.464079999999999,
  1370. "starthours": 0.16772,
  1371. "onlinehours": 3.3221999999999996,
  1372. "faulthours": 0.0,
  1373. "maintainhours": 5.3726400000000005,
  1374. "offlinehours": 0.0,
  1375. "powerfactor": -0.7033333778381348,
  1376. "averageWindSpeedDay": 3.0709495544433594
  1377. },
  1378. {
  1379. "id": "NG01_062022520",
  1380. "windturbineid": "NG01_06",
  1381. "stationid": "NSS_FDC",
  1382. "timestamp": 1653034618868,
  1383. "stophours": 0.0,
  1384. "onpowerhours": 0.03556,
  1385. "standbyhours": 0.8744400000000001,
  1386. "starthours": 0.0154,
  1387. "onlinehours": 0.11900000000000001,
  1388. "faulthours": 0.0,
  1389. "maintainhours": 14.53312,
  1390. "offlinehours": 0.0,
  1391. "powerfactor": 0.0,
  1392. "averageWindSpeedDay": 2.5589780807495117
  1393. },
  1394. {
  1395. "id": "NG01_032022520",
  1396. "windturbineid": "NG01_03",
  1397. "stationid": "NSS_FDC",
  1398. "timestamp": 1653034618868,
  1399. "stophours": 0.0,
  1400. "onpowerhours": 0.15792,
  1401. "standbyhours": 6.139560000000001,
  1402. "starthours": 0.18984000000000004,
  1403. "onlinehours": 0.48244000000000004,
  1404. "faulthours": 0.0,
  1405. "maintainhours": 5.194,
  1406. "offlinehours": 0.0,
  1407. "powerfactor": -0.03999999165534973,
  1408. "averageWindSpeedDay": 3.356022834777832
  1409. },
  1410. {
  1411. "id": "NG01_042022520",
  1412. "windturbineid": "NG01_04",
  1413. "stationid": "NSS_FDC",
  1414. "timestamp": 1653034618868,
  1415. "stophours": 0.0,
  1416. "onpowerhours": 0.1302,
  1417. "standbyhours": 2.05632,
  1418. "starthours": 0.17864000000000002,
  1419. "onlinehours": 1.5848000000000002,
  1420. "faulthours": 0.0,
  1421. "maintainhours": 11.826640000000001,
  1422. "offlinehours": 0.0,
  1423. "powerfactor": -2.3333332538604736,
  1424. "averageWindSpeedDay": 2.6725969314575195
  1425. },
  1426. {
  1427. "id": "XG01_402022520",
  1428. "windturbineid": "XG01_40",
  1429. "stationid": "XS_FDC",
  1430. "timestamp": 1653034618868,
  1431. "stophours": 0.0,
  1432. "onpowerhours": 0.15064000000000002,
  1433. "standbyhours": 2.50992,
  1434. "starthours": 0.21112000000000003,
  1435. "onlinehours": 1.1774000000000002,
  1436. "faulthours": 0.0,
  1437. "maintainhours": 3.7142,
  1438. "offlinehours": 0.0,
  1439. "powerfactor": 1.0,
  1440. "averageWindSpeedDay": 2.847745895385742
  1441. },
  1442. {
  1443. "id": "NG01_092022520",
  1444. "windturbineid": "NG01_09",
  1445. "stationid": "NSS_FDC",
  1446. "timestamp": 1653034618868,
  1447. "stophours": 0.0,
  1448. "onpowerhours": 0.08204,
  1449. "standbyhours": 3.26284,
  1450. "starthours": 0.12236,
  1451. "onlinehours": 0.017640000000000003,
  1452. "faulthours": 0.0,
  1453. "maintainhours": 12.21024,
  1454. "offlinehours": 0.0,
  1455. "powerfactor": 0.0,
  1456. "averageWindSpeedDay": 2.2795164585113525
  1457. },
  1458. {
  1459. "id": "XG01_412022520",
  1460. "windturbineid": "XG01_41",
  1461. "stationid": "XS_FDC",
  1462. "timestamp": 1653034618868,
  1463. "stophours": 0.0,
  1464. "onpowerhours": 0.21364000000000002,
  1465. "standbyhours": 3.2004,
  1466. "starthours": 0.93436,
  1467. "onlinehours": 6.837600000000001,
  1468. "faulthours": 0.0,
  1469. "maintainhours": 2.8151200000000003,
  1470. "offlinehours": 0.0,
  1471. "powerfactor": 1.0,
  1472. "averageWindSpeedDay": 3.167933702468872
  1473. },
  1474. {
  1475. "id": "XG01_422022520",
  1476. "windturbineid": "XG01_42",
  1477. "stationid": "XS_FDC",
  1478. "timestamp": 1653034632093,
  1479. "stophours": 0.0,
  1480. "onpowerhours": 0.15848000000000004,
  1481. "standbyhours": 3.15084,
  1482. "starthours": 0.9228800000000001,
  1483. "onlinehours": 4.9605429999999995,
  1484. "faulthours": 0.0,
  1485. "maintainhours": 3.12676,
  1486. "offlinehours": 0.0,
  1487. "powerfactor": 1.0,
  1488. "averageWindSpeedDay": 3.3673553466796875
  1489. },
  1490. {
  1491. "id": "NG01_072022520",
  1492. "windturbineid": "NG01_07",
  1493. "stationid": "NSS_FDC",
  1494. "timestamp": 1653034618868,
  1495. "stophours": 0.0,
  1496. "onpowerhours": 0.02044,
  1497. "standbyhours": 0.40236000000000005,
  1498. "starthours": 0.01344,
  1499. "onlinehours": 0.00812,
  1500. "faulthours": 7.214200000000001,
  1501. "maintainhours": 7.4172,
  1502. "offlinehours": 0.0,
  1503. "powerfactor": 0.0,
  1504. "averageWindSpeedDay": 2.596754312515259
  1505. },
  1506. {
  1507. "id": "XG01_432022520",
  1508. "windturbineid": "XG01_43",
  1509. "stationid": "XS_FDC",
  1510. "timestamp": 1653034618868,
  1511. "stophours": 0.0,
  1512. "onpowerhours": 0.19572,
  1513. "standbyhours": 0.8713600000000002,
  1514. "starthours": 0.56392,
  1515. "onlinehours": 2.03392,
  1516. "faulthours": 0.0,
  1517. "maintainhours": 5.866840000000001,
  1518. "offlinehours": 0.0,
  1519. "powerfactor": 1.0,
  1520. "averageWindSpeedDay": 3.1115901470184326
  1521. },
  1522. {
  1523. "id": "NG01_082022520",
  1524. "windturbineid": "NG01_08",
  1525. "stationid": "NSS_FDC",
  1526. "timestamp": 1653034618868,
  1527. "stophours": 0.0,
  1528. "onpowerhours": 0.08568,
  1529. "standbyhours": 0.43512,
  1530. "starthours": 0.27132,
  1531. "onlinehours": 0.34412,
  1532. "faulthours": 0.0,
  1533. "maintainhours": 14.533400000000002,
  1534. "offlinehours": 0.0,
  1535. "powerfactor": 0.0,
  1536. "averageWindSpeedDay": 2.5837149620056152
  1537. },
  1538. {
  1539. "id": "XG01_442022520",
  1540. "windturbineid": "XG01_44",
  1541. "stationid": "XS_FDC",
  1542. "timestamp": 1653034618868,
  1543. "stophours": 0.0,
  1544. "onpowerhours": 0.1792,
  1545. "standbyhours": 1.72956,
  1546. "starthours": 0.5782,
  1547. "onlinehours": 2.5401599999999998,
  1548. "faulthours": 0.0,
  1549. "maintainhours": 7.5767999999999995,
  1550. "offlinehours": 0.0,
  1551. "powerfactor": 1.0,
  1552. "averageWindSpeedDay": 3.0654613971710205
  1553. },
  1554. {
  1555. "id": "NG01_012022520",
  1556. "windturbineid": "NG01_01",
  1557. "stationid": "NSS_FDC",
  1558. "timestamp": 1653034618868,
  1559. "stophours": 0.0,
  1560. "onpowerhours": 0.02772,
  1561. "standbyhours": 0.2632,
  1562. "starthours": 0.02296,
  1563. "onlinehours": 0.0,
  1564. "faulthours": 0.0,
  1565. "maintainhours": 11.45928,
  1566. "offlinehours": 0.0,
  1567. "powerfactor": 0.15333333611488342,
  1568. "averageWindSpeedDay": 3.1296675205230713
  1569. },
  1570. {
  1571. "id": "NG01_022022520",
  1572. "windturbineid": "NG01_02",
  1573. "stationid": "NSS_FDC",
  1574. "timestamp": 1653034618868,
  1575. "stophours": 0.0,
  1576. "onpowerhours": 0.00532,
  1577. "standbyhours": 1.19476,
  1578. "starthours": 0.012320000000000001,
  1579. "onlinehours": 2.38308,
  1580. "faulthours": 0.0,
  1581. "maintainhours": 11.810120000000001,
  1582. "offlinehours": 0.0,
  1583. "powerfactor": -1.0,
  1584. "averageWindSpeedDay": 2.465458393096924
  1585. },
  1586. {
  1587. "id": "XG01_452022520",
  1588. "windturbineid": "XG01_45",
  1589. "stationid": "XS_FDC",
  1590. "timestamp": 1653034618868,
  1591. "stophours": 0.0,
  1592. "onpowerhours": 0.15204,
  1593. "standbyhours": 0.9892400000000001,
  1594. "starthours": 0.40824,
  1595. "onlinehours": 2.65468,
  1596. "faulthours": 0.0,
  1597. "maintainhours": 3.81164,
  1598. "offlinehours": 0.0,
  1599. "powerfactor": 1.0,
  1600. "averageWindSpeedDay": 3.4561147689819336
  1601. },
  1602. {
  1603. "id": "XG01_462022520",
  1604. "windturbineid": "XG01_46",
  1605. "stationid": "XS_FDC",
  1606. "timestamp": 1653034618868,
  1607. "stophours": 0.0,
  1608. "onpowerhours": 0.12264000000000001,
  1609. "standbyhours": 1.4008400000000003,
  1610. "starthours": 0.26404000000000005,
  1611. "onlinehours": 2.2498000000000005,
  1612. "faulthours": 0.0,
  1613. "maintainhours": 4.1238399999999995,
  1614. "offlinehours": 0.0,
  1615. "powerfactor": 1.0,
  1616. "averageWindSpeedDay": 3.615241289138794
  1617. },
  1618. {
  1619. "id": "XG01_472022520",
  1620. "windturbineid": "XG01_47",
  1621. "stationid": "XS_FDC",
  1622. "timestamp": 1653034618868,
  1623. "stophours": 0.0,
  1624. "onpowerhours": 0.15764000000000003,
  1625. "standbyhours": 2.19436,
  1626. "starthours": 0.9018800000000002,
  1627. "onlinehours": 0.57316,
  1628. "faulthours": 0.0,
  1629. "maintainhours": 5.67252,
  1630. "offlinehours": 0.0,
  1631. "powerfactor": 1.0,
  1632. "averageWindSpeedDay": 3.103604555130005
  1633. },
  1634. {
  1635. "id": "XG01_482022520",
  1636. "windturbineid": "XG01_48",
  1637. "stationid": "XS_FDC",
  1638. "timestamp": 1653034618868,
  1639. "stophours": 0.0,
  1640. "onpowerhours": 0.16576,
  1641. "standbyhours": 1.1443600000000003,
  1642. "starthours": 0.6776,
  1643. "onlinehours": 1.79116,
  1644. "faulthours": 0.0,
  1645. "maintainhours": 4.972519999999999,
  1646. "offlinehours": 0.0,
  1647. "powerfactor": 1.0,
  1648. "averageWindSpeedDay": 3.1523935794830322
  1649. },
  1650. {
  1651. "id": "XG01_492022520",
  1652. "windturbineid": "XG01_49",
  1653. "stationid": "XS_FDC",
  1654. "timestamp": 1653034618868,
  1655. "stophours": 0.0,
  1656. "onpowerhours": 0.28812,
  1657. "standbyhours": 2.7874,
  1658. "starthours": 0.4984000000000001,
  1659. "onlinehours": 2.02692,
  1660. "faulthours": 0.0,
  1661. "maintainhours": 4.50212,
  1662. "offlinehours": 0.0,
  1663. "powerfactor": 1.0,
  1664. "averageWindSpeedDay": 3.068971633911133
  1665. },
  1666. {
  1667. "id": "NG01_162022520",
  1668. "windturbineid": "NG01_16",
  1669. "stationid": "NSS_FDC",
  1670. "timestamp": 1653034618868,
  1671. "stophours": 0.0,
  1672. "onpowerhours": 0.0,
  1673. "standbyhours": 0.04116,
  1674. "starthours": 0.0,
  1675. "onlinehours": 0.0,
  1676. "faulthours": 0.105,
  1677. "maintainhours": 2.79608,
  1678. "offlinehours": 0.35868,
  1679. "powerfactor": -0.7033333778381348,
  1680. "averageWindSpeedDay": 2.6239655017852783
  1681. },
  1682. {
  1683. "id": "SG01_322022520",
  1684. "windturbineid": "SG01_32",
  1685. "stationid": "SBQ_FDC",
  1686. "timestamp": 1653034618868,
  1687. "stophours": 0.0,
  1688. "onpowerhours": 0.3108,
  1689. "standbyhours": 9.22376,
  1690. "starthours": 1.0150000000000001,
  1691. "onlinehours": 1.5789200000000003,
  1692. "faulthours": 0.0,
  1693. "maintainhours": 0.0,
  1694. "offlinehours": 0.0,
  1695. "powerfactor": 1.0,
  1696. "averageWindSpeedDay": 2.02169132232666
  1697. },
  1698. {
  1699. "id": "NG01_172022520",
  1700. "windturbineid": "NG01_17",
  1701. "stationid": "NSS_FDC",
  1702. "timestamp": 1653034618868,
  1703. "stophours": 0.0,
  1704. "onpowerhours": 0.05992,
  1705. "standbyhours": 6.29104,
  1706. "starthours": 0.09688000000000001,
  1707. "onlinehours": 0.55916,
  1708. "faulthours": 0.0,
  1709. "maintainhours": 5.480160000000001,
  1710. "offlinehours": 0.0,
  1711. "powerfactor": 0.5233333110809326,
  1712. "averageWindSpeedDay": 3.0708653926849365
  1713. },
  1714. {
  1715. "id": "SG01_312022520",
  1716. "windturbineid": "SG01_31",
  1717. "stationid": "SBQ_FDC",
  1718. "timestamp": 1653034618868,
  1719. "stophours": 0.0,
  1720. "onpowerhours": 0.056280000000000004,
  1721. "standbyhours": 3.8626,
  1722. "starthours": 0.10164000000000001,
  1723. "onlinehours": 0.030240000000000003,
  1724. "faulthours": 0.0,
  1725. "maintainhours": 0.0,
  1726. "offlinehours": 0.0,
  1727. "powerfactor": 1.0,
  1728. "averageWindSpeedDay": 1.8365378379821777
  1729. },
  1730. {
  1731. "id": "NG01_142022520",
  1732. "windturbineid": "NG01_14",
  1733. "stationid": "NSS_FDC",
  1734. "timestamp": 1653034618868,
  1735. "stophours": 0.0,
  1736. "onpowerhours": 0.09912000000000001,
  1737. "standbyhours": 6.31624,
  1738. "starthours": 0.21728000000000003,
  1739. "onlinehours": 0.5857600000000001,
  1740. "faulthours": 0.0,
  1741. "maintainhours": 5.411840000000001,
  1742. "offlinehours": 0.0,
  1743. "powerfactor": 0.1666666716337204,
  1744. "averageWindSpeedDay": 3.2071211338043213
  1745. },
  1746. {
  1747. "id": "SG01_342022520",
  1748. "windturbineid": "SG01_34",
  1749. "stationid": "SBQ_FDC",
  1750. "timestamp": 1653034618868,
  1751. "stophours": 0.0,
  1752. "onpowerhours": 0.02016,
  1753. "standbyhours": 1.3958000000000002,
  1754. "starthours": 0.36119999999999997,
  1755. "onlinehours": 3.8108000000000004,
  1756. "faulthours": 0.0,
  1757. "maintainhours": 0.0,
  1758. "offlinehours": 0.0,
  1759. "powerfactor": 1.0,
  1760. "averageWindSpeedDay": 1.7229081392288208
  1761. },
  1762. {
  1763. "id": "NG01_152022520",
  1764. "windturbineid": "NG01_15",
  1765. "stationid": "NSS_FDC",
  1766. "timestamp": 1653034618868,
  1767. "stophours": 0.0,
  1768. "onpowerhours": 0.039760000000000004,
  1769. "standbyhours": 6.035400000000001,
  1770. "starthours": 0.26572,
  1771. "onlinehours": 0.6468,
  1772. "faulthours": 0.0,
  1773. "maintainhours": 4.78324,
  1774. "offlinehours": 0.0,
  1775. "powerfactor": -0.9333333373069763,
  1776. "averageWindSpeedDay": 3.236314058303833
  1777. },
  1778. {
  1779. "id": "QG01_902022520",
  1780. "windturbineid": "QG01_90",
  1781. "stationid": "QS_FDC",
  1782. "timestamp": 1653034618868,
  1783. "stophours": 0.0,
  1784. "onpowerhours": 0.0,
  1785. "standbyhours": 2.26912,
  1786. "starthours": 3.0517200000000004,
  1787. "onlinehours": 11.045720000000001,
  1788. "faulthours": 0.0,
  1789. "maintainhours": 0.0,
  1790. "offlinehours": 0.0,
  1791. "powerfactor": -685.0,
  1792. "averageWindSpeedDay": 4.296980857849121
  1793. },
  1794. {
  1795. "id": "SG01_332022520",
  1796. "windturbineid": "SG01_33",
  1797. "stationid": "SBQ_FDC",
  1798. "timestamp": 1653034618868,
  1799. "stophours": 0.0,
  1800. "onpowerhours": 0.1652,
  1801. "standbyhours": 14.29344,
  1802. "starthours": 0.96796,
  1803. "onlinehours": 0.7602,
  1804. "faulthours": 0.0,
  1805. "maintainhours": 0.0,
  1806. "offlinehours": 0.0,
  1807. "powerfactor": 1.0,
  1808. "averageWindSpeedDay": 2.067880392074585
  1809. },
  1810. {
  1811. "id": "MG01_402022520",
  1812. "windturbineid": "MG01_40",
  1813. "stationid": "MHS_FDC",
  1814. "timestamp": 1653034618868,
  1815. "stophours": 0.0,
  1816. "onpowerhours": 0.0,
  1817. "standbyhours": 4.21792,
  1818. "starthours": 0.57484,
  1819. "onlinehours": 0.046200000000000005,
  1820. "faulthours": 0.0,
  1821. "maintainhours": 0.0,
  1822. "offlinehours": 0.0,
  1823. "powerfactor": -0.8980000019073486,
  1824. "averageWindSpeedDay": 4.535439491271973
  1825. },
  1826. {
  1827. "id": "SG01_362022520",
  1828. "windturbineid": "SG01_36",
  1829. "stationid": "SBQ_FDC",
  1830. "timestamp": 1653034618868,
  1831. "stophours": 0.0,
  1832. "onpowerhours": 0.14476,
  1833. "standbyhours": 6.8434800000000005,
  1834. "starthours": 1.9289200000000002,
  1835. "onlinehours": 4.37444,
  1836. "faulthours": 0.0,
  1837. "maintainhours": 0.0,
  1838. "offlinehours": 0.0,
  1839. "powerfactor": 1.0,
  1840. "averageWindSpeedDay": 2.6659772396087646
  1841. },
  1842. {
  1843. "id": "MG01_412022520",
  1844. "windturbineid": "MG01_41",
  1845. "stationid": "MHS_FDC",
  1846. "timestamp": 1653034618868,
  1847. "stophours": 0.0,
  1848. "onpowerhours": 0.00672,
  1849. "standbyhours": 4.759440000000001,
  1850. "starthours": 0.6297200000000001,
  1851. "onlinehours": 1.358,
  1852. "faulthours": 0.00784,
  1853. "maintainhours": 0.0,
  1854. "offlinehours": 0.0,
  1855. "powerfactor": -0.9620000123977661,
  1856. "averageWindSpeedDay": 4.533970832824707
  1857. },
  1858. {
  1859. "id": "SG01_352022520",
  1860. "windturbineid": "SG01_35",
  1861. "stationid": "SBQ_FDC",
  1862. "timestamp": 1653034618868,
  1863. "stophours": 0.0,
  1864. "onpowerhours": 0.12936,
  1865. "standbyhours": 10.299240000000001,
  1866. "starthours": 2.10532,
  1867. "onlinehours": 3.0968000000000004,
  1868. "faulthours": 0.0,
  1869. "maintainhours": 0.0,
  1870. "offlinehours": 0.0,
  1871. "powerfactor": 1.0,
  1872. "averageWindSpeedDay": 2.8173298835754395
  1873. },
  1874. {
  1875. "id": "MG01_422022520",
  1876. "windturbineid": "MG01_42",
  1877. "stationid": "MHS_FDC",
  1878. "timestamp": 1653034618868,
  1879. "stophours": 0.0,
  1880. "onpowerhours": 0.005600000000000001,
  1881. "standbyhours": 3.8449600000000004,
  1882. "starthours": 0.45864,
  1883. "onlinehours": 0.58408,
  1884. "faulthours": 0.08568,
  1885. "maintainhours": 1.55484,
  1886. "offlinehours": 0.0,
  1887. "powerfactor": 1.0,
  1888. "averageWindSpeedDay": 4.805882930755615
  1889. },
  1890. {
  1891. "id": "NG01_182022520",
  1892. "windturbineid": "NG01_18",
  1893. "stationid": "NSS_FDC",
  1894. "timestamp": 1653034618868,
  1895. "stophours": 0.0,
  1896. "onpowerhours": 0.033600000000000005,
  1897. "standbyhours": 0.73416,
  1898. "starthours": 0.06440000000000001,
  1899. "onlinehours": 0.37828,
  1900. "faulthours": 0.0,
  1901. "maintainhours": 11.331040000000002,
  1902. "offlinehours": 0.0,
  1903. "powerfactor": -1.0,
  1904. "averageWindSpeedDay": 2.99922251701355
  1905. },
  1906. {
  1907. "id": "SG01_382022520",
  1908. "windturbineid": "SG01_38",
  1909. "stationid": "SBQ_FDC",
  1910. "timestamp": 1653034618868,
  1911. "stophours": 0.0,
  1912. "onpowerhours": 0.015960000000000002,
  1913. "standbyhours": 13.911240000000001,
  1914. "starthours": 0.22148,
  1915. "onlinehours": 0.52108,
  1916. "faulthours": 0.0,
  1917. "maintainhours": 0.0,
  1918. "offlinehours": 0.0,
  1919. "powerfactor": 1.0,
  1920. "averageWindSpeedDay": 1.894181728363037
  1921. },
  1922. {
  1923. "id": "MG01_432022520",
  1924. "windturbineid": "MG01_43",
  1925. "stationid": "MHS_FDC",
  1926. "timestamp": 1653034618868,
  1927. "stophours": 0.0,
  1928. "onpowerhours": 0.00784,
  1929. "standbyhours": 3.8578399999999995,
  1930. "starthours": 0.86856,
  1931. "onlinehours": 1.8088000000000002,
  1932. "faulthours": 0.01708,
  1933. "maintainhours": 0.0,
  1934. "offlinehours": 0.0,
  1935. "powerfactor": 1.0,
  1936. "averageWindSpeedDay": 4.162296772003174
  1937. },
  1938. {
  1939. "id": "NG01_192022520",
  1940. "windturbineid": "NG01_19",
  1941. "stationid": "NSS_FDC",
  1942. "timestamp": 1653034618868,
  1943. "stophours": 0.0,
  1944. "onpowerhours": 0.0182,
  1945. "standbyhours": 0.6370000000000001,
  1946. "starthours": 0.054880000000000005,
  1947. "onlinehours": 0.48440000000000005,
  1948. "faulthours": 0.0,
  1949. "maintainhours": 10.874640000000001,
  1950. "offlinehours": 0.0,
  1951. "powerfactor": 0.0,
  1952. "averageWindSpeedDay": 3.5045461654663086
  1953. },
  1954. {
  1955. "id": "SG01_372022520",
  1956. "windturbineid": "SG01_37",
  1957. "stationid": "SBQ_FDC",
  1958. "timestamp": 1653034618868,
  1959. "stophours": 0.0,
  1960. "onpowerhours": 0.1876,
  1961. "standbyhours": 11.417280000000002,
  1962. "starthours": 0.50932,
  1963. "onlinehours": 2.8616000000000006,
  1964. "faulthours": 0.0,
  1965. "maintainhours": 0.0,
  1966. "offlinehours": 0.0,
  1967. "powerfactor": 1.0,
  1968. "averageWindSpeedDay": 1.8566162586212158
  1969. },
  1970. {
  1971. "id": "NG01_122022520",
  1972. "windturbineid": "NG01_12",
  1973. "stationid": "NSS_FDC",
  1974. "timestamp": 1653034618868,
  1975. "stophours": 0.0,
  1976. "onpowerhours": 0.022680000000000002,
  1977. "standbyhours": 0.9326800000000001,
  1978. "starthours": 0.056,
  1979. "onlinehours": 0.0030800000000000003,
  1980. "faulthours": 0.0,
  1981. "maintainhours": 11.178720000000002,
  1982. "offlinehours": 0.0,
  1983. "powerfactor": -1.0,
  1984. "averageWindSpeedDay": 3.2150731086730957
  1985. },
  1986. {
  1987. "id": "NG01_132022520",
  1988. "windturbineid": "NG01_13",
  1989. "stationid": "NSS_FDC",
  1990. "timestamp": 1653034618868,
  1991. "stophours": 0.0,
  1992. "onpowerhours": 0.014560000000000002,
  1993. "standbyhours": 6.193040000000001,
  1994. "starthours": 0.3136,
  1995. "onlinehours": 0.07224,
  1996. "faulthours": 0.0,
  1997. "maintainhours": 5.22396,
  1998. "offlinehours": 0.0,
  1999. "powerfactor": 0.0,
  2000. "averageWindSpeedDay": 3.031248092651367
  2001. },
  2002. {
  2003. "id": "NG01_102022520",
  2004. "windturbineid": "NG01_10",
  2005. "stationid": "NSS_FDC",
  2006. "timestamp": 1653034618868,
  2007. "stophours": 0.0,
  2008. "onpowerhours": 0.06860000000000001,
  2009. "standbyhours": 1.8922400000000001,
  2010. "starthours": 0.10192000000000001,
  2011. "onlinehours": 1.4932400000000001,
  2012. "faulthours": 0.0,
  2013. "maintainhours": 12.021520000000002,
  2014. "offlinehours": 0.0,
  2015. "powerfactor": 0.0,
  2016. "averageWindSpeedDay": 2.903636932373047
  2017. },
  2018. {
  2019. "id": "SG01_302022520",
  2020. "windturbineid": "SG01_30",
  2021. "stationid": "SBQ_FDC",
  2022. "timestamp": 1653034618868,
  2023. "stophours": 0.0,
  2024. "onpowerhours": 0.13048,
  2025. "standbyhours": 9.13892,
  2026. "starthours": 0.27496,
  2027. "onlinehours": 1.5380400000000003,
  2028. "faulthours": 0.0,
  2029. "maintainhours": 0.0,
  2030. "offlinehours": 0.0,
  2031. "powerfactor": 0.7500000596046448,
  2032. "averageWindSpeedDay": 1.9049545526504517
  2033. },
  2034. {
  2035. "id": "NG01_112022520",
  2036. "windturbineid": "NG01_11",
  2037. "stationid": "NSS_FDC",
  2038. "timestamp": 1653034618868,
  2039. "stophours": 0.0,
  2040. "onpowerhours": 0.06244,
  2041. "standbyhours": 0.92988,
  2042. "starthours": 0.02576,
  2043. "onlinehours": 0.2086,
  2044. "faulthours": 0.0,
  2045. "maintainhours": 11.467680000000001,
  2046. "offlinehours": 0.0,
  2047. "powerfactor": -0.7633333206176758,
  2048. "averageWindSpeedDay": 2.8228557109832764
  2049. },
  2050. {
  2051. "id": "QG01_882022520",
  2052. "windturbineid": "QG01_88",
  2053. "stationid": "QS_FDC",
  2054. "timestamp": 1653034618868,
  2055. "stophours": 0.0,
  2056. "onpowerhours": 0.0,
  2057. "standbyhours": 2.6286400000000003,
  2058. "starthours": 2.828,
  2059. "onlinehours": 10.837680000000002,
  2060. "faulthours": 0.0,
  2061. "maintainhours": 0.0,
  2062. "offlinehours": 0.0,
  2063. "powerfactor": -631.0,
  2064. "averageWindSpeedDay": 4.502216815948486
  2065. },
  2066. {
  2067. "id": "QG01_892022520",
  2068. "windturbineid": "QG01_89",
  2069. "stationid": "QS_FDC",
  2070. "timestamp": 1653034656177,
  2071. "stophours": 0.0,
  2072. "onpowerhours": 0.0,
  2073. "standbyhours": 2.5276465200000007,
  2074. "starthours": 3.2435830000000014,
  2075. "onlinehours": 10.531919999999998,
  2076. "faulthours": 0.0,
  2077. "maintainhours": 0.0,
  2078. "offlinehours": 0.0,
  2079. "powerfactor": -757.0,
  2080. "averageWindSpeedDay": 4.41409158706665
  2081. },
  2082. {
  2083. "id": "QG01_842022520",
  2084. "windturbineid": "QG01_84",
  2085. "stationid": "QS_FDC",
  2086. "timestamp": 1653034618868,
  2087. "stophours": 0.0,
  2088. "onpowerhours": 0.0,
  2089. "standbyhours": 1.76792,
  2090. "starthours": 2.4038,
  2091. "onlinehours": 1.20792,
  2092. "faulthours": 0.0,
  2093. "maintainhours": 0.0,
  2094. "offlinehours": 0.0,
  2095. "powerfactor": -754.0,
  2096. "averageWindSpeedDay": 5.451052188873291
  2097. },
  2098. {
  2099. "id": "QG01_852022520",
  2100. "windturbineid": "QG01_85",
  2101. "stationid": "QS_FDC",
  2102. "timestamp": 1653034618868,
  2103. "stophours": 0.0,
  2104. "onpowerhours": 0.0,
  2105. "standbyhours": 1.45628,
  2106. "starthours": 2.5158000000000005,
  2107. "onlinehours": 1.13344,
  2108. "faulthours": 0.0,
  2109. "maintainhours": 0.0,
  2110. "offlinehours": 0.0,
  2111. "powerfactor": -717.0,
  2112. "averageWindSpeedDay": 5.289490222930908
  2113. },
  2114. {
  2115. "id": "SG01_392022520",
  2116. "windturbineid": "SG01_39",
  2117. "stationid": "SBQ_FDC",
  2118. "timestamp": 1653034618868,
  2119. "stophours": 0.0,
  2120. "onpowerhours": 0.09072,
  2121. "standbyhours": 13.690039999999998,
  2122. "starthours": 0.42783999999999994,
  2123. "onlinehours": 1.01304,
  2124. "faulthours": 0.0,
  2125. "maintainhours": 0.0,
  2126. "offlinehours": 0.0,
  2127. "powerfactor": 1.0,
  2128. "averageWindSpeedDay": 2.1705920696258545
  2129. },
  2130. {
  2131. "id": "QG01_862022520",
  2132. "windturbineid": "QG01_86",
  2133. "stationid": "QS_FDC",
  2134. "timestamp": 1653034618868,
  2135. "stophours": 0.0,
  2136. "onpowerhours": 0.0,
  2137. "standbyhours": 3.5481599999999998,
  2138. "starthours": 1.3339200000000002,
  2139. "onlinehours": 2.884280000000001,
  2140. "faulthours": 0.0,
  2141. "maintainhours": 0.0,
  2142. "offlinehours": 0.0,
  2143. "powerfactor": -726.0,
  2144. "averageWindSpeedDay": 4.1402106285095215
  2145. },
  2146. {
  2147. "id": "QG01_872022520",
  2148. "windturbineid": "QG01_87",
  2149. "stationid": "QS_FDC",
  2150. "timestamp": 1653034618868,
  2151. "stophours": 0.0,
  2152. "onpowerhours": 0.0,
  2153. "standbyhours": 0.5012,
  2154. "starthours": 0.66808,
  2155. "onlinehours": 0.0,
  2156. "faulthours": 0.04508000000000001,
  2157. "maintainhours": 0.4046,
  2158. "offlinehours": 0.0,
  2159. "powerfactor": 1000.0,
  2160. "averageWindSpeedDay": 5.1853485107421875
  2161. },
  2162. {
  2163. "id": "QG01_802022520",
  2164. "windturbineid": "QG01_80",
  2165. "stationid": "QS_FDC",
  2166. "timestamp": 1653034618868,
  2167. "stophours": 0.0,
  2168. "onpowerhours": 0.0,
  2169. "standbyhours": 1.83876,
  2170. "starthours": 2.07704,
  2171. "onlinehours": 3.9342799999999998,
  2172. "faulthours": 0.0,
  2173. "maintainhours": 0.0,
  2174. "offlinehours": 0.0,
  2175. "powerfactor": 737.0,
  2176. "averageWindSpeedDay": 5.1831746101379395
  2177. },
  2178. {
  2179. "id": "QG01_812022520",
  2180. "windturbineid": "QG01_81",
  2181. "stationid": "QS_FDC",
  2182. "timestamp": 1653034618868,
  2183. "stophours": 0.0,
  2184. "onpowerhours": 0.0,
  2185. "standbyhours": 1.6309999999999998,
  2186. "starthours": 2.60428,
  2187. "onlinehours": 3.58064,
  2188. "faulthours": 0.0,
  2189. "maintainhours": 0.0,
  2190. "offlinehours": 0.0,
  2191. "powerfactor": -450.0,
  2192. "averageWindSpeedDay": 4.5022501945495605
  2193. },
  2194. {
  2195. "id": "QG01_822022520",
  2196. "windturbineid": "QG01_82",
  2197. "stationid": "QS_FDC",
  2198. "timestamp": 1653034618868,
  2199. "stophours": 0.0,
  2200. "onpowerhours": 0.0,
  2201. "standbyhours": 1.83932,
  2202. "starthours": 3.0746800000000007,
  2203. "onlinehours": 4.7026,
  2204. "faulthours": 0.0,
  2205. "maintainhours": 0.0,
  2206. "offlinehours": 0.0,
  2207. "powerfactor": 394.0,
  2208. "averageWindSpeedDay": 4.698966026306152
  2209. },
  2210. {
  2211. "id": "QG01_832022520",
  2212. "windturbineid": "QG01_83",
  2213. "stationid": "QS_FDC",
  2214. "timestamp": 1653034618868,
  2215. "stophours": 0.0,
  2216. "onpowerhours": 0.0,
  2217. "standbyhours": 1.6769200000000002,
  2218. "starthours": 2.6348000000000003,
  2219. "onlinehours": 0.89656,
  2220. "faulthours": 0.0,
  2221. "maintainhours": 0.0,
  2222. "offlinehours": 0.0,
  2223. "powerfactor": -691.0,
  2224. "averageWindSpeedDay": 5.1530537605285645
  2225. },
  2226. {
  2227. "id": "MG01_332022520",
  2228. "windturbineid": "MG01_33",
  2229. "stationid": "MHS_FDC",
  2230. "timestamp": 1653034618868,
  2231. "stophours": 0.0,
  2232. "onpowerhours": 0.07056000000000001,
  2233. "standbyhours": 3.7088799999999993,
  2234. "starthours": 0.3276,
  2235. "onlinehours": 3.78756,
  2236. "faulthours": 0.0,
  2237. "maintainhours": 5.99732,
  2238. "offlinehours": 0.0,
  2239. "powerfactor": 1.0,
  2240. "averageWindSpeedDay": 2.924531936645508
  2241. },
  2242. {
  2243. "id": "NG01_272022520",
  2244. "windturbineid": "NG01_27",
  2245. "stationid": "NSS_FDC",
  2246. "timestamp": 1653034618868,
  2247. "stophours": 0.0,
  2248. "onpowerhours": 0.06524,
  2249. "standbyhours": 0.4634000000000001,
  2250. "starthours": 0.15344000000000002,
  2251. "onlinehours": 0.70308,
  2252. "faulthours": 0.0,
  2253. "maintainhours": 7.274400000000001,
  2254. "offlinehours": 0.0,
  2255. "powerfactor": 0.0,
  2256. "averageWindSpeedDay": 3.670577049255371
  2257. },
  2258. {
  2259. "id": "SG01_432022520",
  2260. "windturbineid": "SG01_43",
  2261. "stationid": "SBQ_FDC",
  2262. "timestamp": 1653034618868,
  2263. "stophours": 0.0,
  2264. "onpowerhours": 0.11760000000000001,
  2265. "standbyhours": 10.085880000000003,
  2266. "starthours": 0.5026,
  2267. "onlinehours": 5.01116,
  2268. "faulthours": 0.0,
  2269. "maintainhours": 0.0,
  2270. "offlinehours": 0.0,
  2271. "powerfactor": 1.0,
  2272. "averageWindSpeedDay": 2.2989730834960938
  2273. },
  2274. {
  2275. "id": "MG01_342022520",
  2276. "windturbineid": "MG01_34",
  2277. "stationid": "MHS_FDC",
  2278. "timestamp": 1653034618868,
  2279. "stophours": 0.0,
  2280. "onpowerhours": 0.01008,
  2281. "standbyhours": 2.62864,
  2282. "starthours": 1.4257600000000001,
  2283. "onlinehours": 0.9620799999999999,
  2284. "faulthours": 0.10332000000000001,
  2285. "maintainhours": 0.0,
  2286. "offlinehours": 0.0,
  2287. "powerfactor": 1.0,
  2288. "averageWindSpeedDay": 4.302604675292969
  2289. },
  2290. {
  2291. "id": "NG01_282022520",
  2292. "windturbineid": "NG01_28",
  2293. "stationid": "NSS_FDC",
  2294. "timestamp": 1653034618868,
  2295. "stophours": 0.0,
  2296. "onpowerhours": 0.046200000000000005,
  2297. "standbyhours": 5.700800000000001,
  2298. "starthours": 0.12852000000000002,
  2299. "onlinehours": 0.9830800000000001,
  2300. "faulthours": 0.0,
  2301. "maintainhours": 4.776800000000001,
  2302. "offlinehours": 0.0,
  2303. "powerfactor": -0.7633333206176758,
  2304. "averageWindSpeedDay": 3.1765286922454834
  2305. },
  2306. {
  2307. "id": "SG01_422022520",
  2308. "windturbineid": "SG01_42",
  2309. "stationid": "SBQ_FDC",
  2310. "timestamp": 1653034618868,
  2311. "stophours": 0.0,
  2312. "onpowerhours": 0.21728000000000003,
  2313. "standbyhours": 12.26596,
  2314. "starthours": 1.04328,
  2315. "onlinehours": 2.21956,
  2316. "faulthours": 0.0,
  2317. "maintainhours": 0.0,
  2318. "offlinehours": 0.0,
  2319. "powerfactor": 1.0,
  2320. "averageWindSpeedDay": 2.288898229598999
  2321. },
  2322. {
  2323. "id": "MG01_352022520",
  2324. "windturbineid": "MG01_35",
  2325. "stationid": "MHS_FDC",
  2326. "timestamp": 1653034618868,
  2327. "stophours": 0.0,
  2328. "onpowerhours": 0.013160000000000002,
  2329. "standbyhours": 3.7942800000000005,
  2330. "starthours": 1.0038,
  2331. "onlinehours": 0.19292000000000004,
  2332. "faulthours": 0.10443999999999999,
  2333. "maintainhours": 0.0,
  2334. "offlinehours": 0.0,
  2335. "powerfactor": 1.0,
  2336. "averageWindSpeedDay": 4.296142578125
  2337. },
  2338. {
  2339. "id": "NG01_252022520",
  2340. "windturbineid": "NG01_25",
  2341. "stationid": "NSS_FDC",
  2342. "timestamp": 1653034618868,
  2343. "stophours": 0.0,
  2344. "onpowerhours": 0.09856000000000001,
  2345. "standbyhours": 6.537439999999999,
  2346. "starthours": 0.09940000000000002,
  2347. "onlinehours": 2.3993200000000003,
  2348. "faulthours": 0.0,
  2349. "maintainhours": 2.12968,
  2350. "offlinehours": 0.0,
  2351. "powerfactor": -0.9133333563804626,
  2352. "averageWindSpeedDay": 3.569734811782837
  2353. },
  2354. {
  2355. "id": "SG01_452022520",
  2356. "windturbineid": "SG01_45",
  2357. "stationid": "SBQ_FDC",
  2358. "timestamp": 1653034618868,
  2359. "stophours": 0.0,
  2360. "onpowerhours": 0.08148000000000001,
  2361. "standbyhours": 10.81584,
  2362. "starthours": 0.8626800000000001,
  2363. "onlinehours": 1.0085600000000001,
  2364. "faulthours": 0.0,
  2365. "maintainhours": 0.0,
  2366. "offlinehours": 0.0,
  2367. "powerfactor": 1.0,
  2368. "averageWindSpeedDay": 1.9680871963500977
  2369. },
  2370. {
  2371. "id": "MG01_362022520",
  2372. "windturbineid": "MG01_36",
  2373. "stationid": "MHS_FDC",
  2374. "timestamp": 1653034618868,
  2375. "stophours": 0.0,
  2376. "onpowerhours": 0.00868,
  2377. "standbyhours": 3.4311200000000004,
  2378. "starthours": 1.155,
  2379. "onlinehours": 2.5362400000000003,
  2380. "faulthours": 0.09184,
  2381. "maintainhours": 0.0,
  2382. "offlinehours": 0.0,
  2383. "powerfactor": 1.0,
  2384. "averageWindSpeedDay": 4.241580009460449
  2385. },
  2386. {
  2387. "id": "NG01_262022520",
  2388. "windturbineid": "NG01_26",
  2389. "stationid": "NSS_FDC",
  2390. "timestamp": 1653034618868,
  2391. "stophours": 0.0,
  2392. "onpowerhours": 0.0952,
  2393. "standbyhours": 0.4695600000000001,
  2394. "starthours": 0.22288000000000002,
  2395. "onlinehours": 0.39676,
  2396. "faulthours": 0.0,
  2397. "maintainhours": 5.705,
  2398. "offlinehours": 1.60356,
  2399. "powerfactor": -0.21666665375232697,
  2400. "averageWindSpeedDay": 3.157200336456299
  2401. },
  2402. {
  2403. "id": "SG01_442022520",
  2404. "windturbineid": "SG01_44",
  2405. "stationid": "SBQ_FDC",
  2406. "timestamp": 1653034618868,
  2407. "stophours": 0.0,
  2408. "onpowerhours": 0.16296000000000002,
  2409. "standbyhours": 10.887240000000002,
  2410. "starthours": 0.25956,
  2411. "onlinehours": 4.506879999999999,
  2412. "faulthours": 0.0,
  2413. "maintainhours": 0.0,
  2414. "offlinehours": 0.0,
  2415. "powerfactor": 1.0,
  2416. "averageWindSpeedDay": 2.3501136302948
  2417. },
  2418. {
  2419. "id": "SG01_472022520",
  2420. "windturbineid": "SG01_47",
  2421. "stationid": "SBQ_FDC",
  2422. "timestamp": 1653034618868,
  2423. "stophours": 0.0,
  2424. "onpowerhours": 0.12852,
  2425. "standbyhours": 12.818960000000002,
  2426. "starthours": 0.9956800000000001,
  2427. "onlinehours": 1.02088,
  2428. "faulthours": 0.0,
  2429. "maintainhours": 0.0,
  2430. "offlinehours": 0.0,
  2431. "powerfactor": 1.0,
  2432. "averageWindSpeedDay": 2.269177198410034
  2433. },
  2434. {
  2435. "id": "MG01_302022520",
  2436. "windturbineid": "MG01_30",
  2437. "stationid": "MHS_FDC",
  2438. "timestamp": 1653034618868,
  2439. "stophours": 0.0,
  2440. "onpowerhours": 0.03332,
  2441. "standbyhours": 0.64932,
  2442. "starthours": 0.036680000000000004,
  2443. "onlinehours": 0.38416,
  2444. "faulthours": 0.0,
  2445. "maintainhours": 4.20476,
  2446. "offlinehours": 0.0,
  2447. "powerfactor": 1.0,
  2448. "averageWindSpeedDay": 4.294246196746826
  2449. },
  2450. {
  2451. "id": "SG01_462022520",
  2452. "windturbineid": "SG01_46",
  2453. "stationid": "SBQ_FDC",
  2454. "timestamp": 1653034618868,
  2455. "stophours": 0.0,
  2456. "onpowerhours": 0.06972,
  2457. "standbyhours": 9.555,
  2458. "starthours": 0.45668,
  2459. "onlinehours": 4.64688,
  2460. "faulthours": 0.0,
  2461. "maintainhours": 0.0,
  2462. "offlinehours": 0.0,
  2463. "powerfactor": 1.0,
  2464. "averageWindSpeedDay": 2.0487968921661377
  2465. },
  2466. {
  2467. "id": "MG01_312022520",
  2468. "windturbineid": "MG01_31",
  2469. "stationid": "MHS_FDC",
  2470. "timestamp": 1653034618868,
  2471. "stophours": 0.0,
  2472. "onpowerhours": 0.08960000000000001,
  2473. "standbyhours": 1.02592,
  2474. "starthours": 0.39844000000000007,
  2475. "onlinehours": 9.660840000000002,
  2476. "faulthours": 0.0,
  2477. "maintainhours": 2.8305200000000004,
  2478. "offlinehours": 0.0,
  2479. "powerfactor": 1.0,
  2480. "averageWindSpeedDay": 3.754671335220337
  2481. },
  2482. {
  2483. "id": "NG01_292022520",
  2484. "windturbineid": "NG01_29",
  2485. "stationid": "NSS_FDC",
  2486. "timestamp": 1653034618868,
  2487. "stophours": 0.0,
  2488. "onpowerhours": 0.014560000000000002,
  2489. "standbyhours": 8.069600000000001,
  2490. "starthours": 0.03276,
  2491. "onlinehours": 0.9385600000000001,
  2492. "faulthours": 0.0,
  2493. "maintainhours": 4.67712,
  2494. "offlinehours": 0.0,
  2495. "powerfactor": 0.0,
  2496. "averageWindSpeedDay": 3.4614176750183105
  2497. },
  2498. {
  2499. "id": "SG01_492022520",
  2500. "windturbineid": "SG01_49",
  2501. "stationid": "SBQ_FDC",
  2502. "timestamp": 1653034618868,
  2503. "stophours": 0.0,
  2504. "onpowerhours": 0.10248,
  2505. "standbyhours": 12.47848,
  2506. "starthours": 0.75488,
  2507. "onlinehours": 0.86688,
  2508. "faulthours": 0.0,
  2509. "maintainhours": 0.0,
  2510. "offlinehours": 0.0,
  2511. "powerfactor": 1.0,
  2512. "averageWindSpeedDay": 1.963371992111206
  2513. },
  2514. {
  2515. "id": "MG01_322022520",
  2516. "windturbineid": "MG01_32",
  2517. "stationid": "MHS_FDC",
  2518. "timestamp": 1653034618868,
  2519. "stophours": 0.0,
  2520. "onpowerhours": 0.0,
  2521. "standbyhours": 1.72004,
  2522. "starthours": 0.0,
  2523. "onlinehours": 0.0,
  2524. "faulthours": 0.0,
  2525. "maintainhours": 6.08664,
  2526. "offlinehours": 0.0,
  2527. "powerfactor": 1.0,
  2528. "averageWindSpeedDay": 3.1182332038879395
  2529. },
  2530. {
  2531. "id": "SG01_482022520",
  2532. "windturbineid": "SG01_48",
  2533. "stationid": "SBQ_FDC",
  2534. "timestamp": 1653034618868,
  2535. "stophours": 0.0,
  2536. "onpowerhours": 0.14868000000000003,
  2537. "standbyhours": 12.965399999999999,
  2538. "starthours": 0.7168,
  2539. "onlinehours": 1.31824,
  2540. "faulthours": 0.0,
  2541. "maintainhours": 0.0,
  2542. "offlinehours": 0.0,
  2543. "powerfactor": 1.0,
  2544. "averageWindSpeedDay": 2.1799492835998535
  2545. },
  2546. {
  2547. "id": "NG01_202022520",
  2548. "windturbineid": "NG01_20",
  2549. "stationid": "NSS_FDC",
  2550. "timestamp": 1653034618868,
  2551. "stophours": 0.0,
  2552. "onpowerhours": 0.09351999999999999,
  2553. "standbyhours": 3.15112,
  2554. "starthours": 0.09352,
  2555. "onlinehours": 0.09016000000000002,
  2556. "faulthours": 0.0,
  2557. "maintainhours": 12.18112,
  2558. "offlinehours": 0.0,
  2559. "powerfactor": -3.6666667461395264,
  2560. "averageWindSpeedDay": 2.806081771850586
  2561. },
  2562. {
  2563. "id": "MG01_372022520",
  2564. "windturbineid": "MG01_37",
  2565. "stationid": "MHS_FDC",
  2566. "timestamp": 1653034618868,
  2567. "stophours": 0.0,
  2568. "onpowerhours": 0.007,
  2569. "standbyhours": 3.699360000000001,
  2570. "starthours": 0.70588,
  2571. "onlinehours": 0.6249600000000001,
  2572. "faulthours": 0.0126,
  2573. "maintainhours": 0.0,
  2574. "offlinehours": 0.0,
  2575. "powerfactor": 1.0,
  2576. "averageWindSpeedDay": 4.365952014923096
  2577. },
  2578. {
  2579. "id": "NG01_232022520",
  2580. "windturbineid": "NG01_23",
  2581. "stationid": "NSS_FDC",
  2582. "timestamp": 1653034618868,
  2583. "stophours": 0.0,
  2584. "onpowerhours": 0.10808000000000001,
  2585. "standbyhours": 1.5786400000000003,
  2586. "starthours": 0.0966,
  2587. "onlinehours": 3.2513600000000005,
  2588. "faulthours": 0.0,
  2589. "maintainhours": 10.782520000000002,
  2590. "offlinehours": 0.0,
  2591. "powerfactor": -0.9733333587646484,
  2592. "averageWindSpeedDay": 3.419260025024414
  2593. },
  2594. {
  2595. "id": "MG01_382022520",
  2596. "windturbineid": "MG01_38",
  2597. "stationid": "MHS_FDC",
  2598. "timestamp": 1653034618868,
  2599. "stophours": 0.0,
  2600. "onpowerhours": 0.00364,
  2601. "standbyhours": 4.091640000000001,
  2602. "starthours": 0.43848000000000004,
  2603. "onlinehours": 2.2134,
  2604. "faulthours": 0.00392,
  2605. "maintainhours": 0.0,
  2606. "offlinehours": 0.0,
  2607. "powerfactor": 1.0,
  2608. "averageWindSpeedDay": 4.401882648468018
  2609. },
  2610. {
  2611. "id": "NG01_242022520",
  2612. "windturbineid": "NG01_24",
  2613. "stationid": "NSS_FDC",
  2614. "timestamp": 1653034618868,
  2615. "stophours": 0.0,
  2616. "onpowerhours": 0.01736,
  2617. "standbyhours": 1.7206000000000001,
  2618. "starthours": 0.03332,
  2619. "onlinehours": 2.3016,
  2620. "faulthours": 0.0,
  2621. "maintainhours": 9.683520000000001,
  2622. "offlinehours": 0.0,
  2623. "powerfactor": 0.0,
  2624. "averageWindSpeedDay": 3.321000099182129
  2625. },
  2626. {
  2627. "id": "MG01_392022520",
  2628. "windturbineid": "MG01_39",
  2629. "stationid": "MHS_FDC",
  2630. "timestamp": 1653034618868,
  2631. "stophours": 0.0,
  2632. "onpowerhours": 0.0112,
  2633. "standbyhours": 3.5896000000000003,
  2634. "starthours": 1.06344,
  2635. "onlinehours": 0.29652,
  2636. "faulthours": 0.09352000000000002,
  2637. "maintainhours": 0.0,
  2638. "offlinehours": 0.0,
  2639. "powerfactor": 1.0,
  2640. "averageWindSpeedDay": 4.733882904052734
  2641. },
  2642. {
  2643. "id": "NG01_212022520",
  2644. "windturbineid": "NG01_21",
  2645. "stationid": "NSS_FDC",
  2646. "timestamp": 1653034618868,
  2647. "stophours": 0.0,
  2648. "onpowerhours": 0.06244000000000001,
  2649. "standbyhours": 1.85192,
  2650. "starthours": 0.27328,
  2651. "onlinehours": 1.53692,
  2652. "faulthours": 0.0,
  2653. "maintainhours": 12.01228,
  2654. "offlinehours": 0.0,
  2655. "powerfactor": -0.3100000023841858,
  2656. "averageWindSpeedDay": 2.5898454189300537
  2657. },
  2658. {
  2659. "id": "SG01_412022520",
  2660. "windturbineid": "SG01_41",
  2661. "stationid": "SBQ_FDC",
  2662. "timestamp": 1653034618868,
  2663. "stophours": 0.0,
  2664. "onpowerhours": 0.08148000000000001,
  2665. "standbyhours": 13.572160000000002,
  2666. "starthours": 0.83076,
  2667. "onlinehours": 0.8360799999999999,
  2668. "faulthours": 0.0,
  2669. "maintainhours": 0.0,
  2670. "offlinehours": 0.0,
  2671. "powerfactor": 1.0,
  2672. "averageWindSpeedDay": 2.195152759552002
  2673. },
  2674. {
  2675. "id": "NG01_222022520",
  2676. "windturbineid": "NG01_22",
  2677. "stationid": "NSS_FDC",
  2678. "timestamp": 1653034618868,
  2679. "stophours": 0.0,
  2680. "onpowerhours": 0.04732,
  2681. "standbyhours": 2.2996400000000006,
  2682. "starthours": 0.37660000000000005,
  2683. "onlinehours": 1.29976,
  2684. "faulthours": 0.0,
  2685. "maintainhours": 11.8832,
  2686. "offlinehours": 0.0,
  2687. "powerfactor": -1.0,
  2688. "averageWindSpeedDay": 2.5977253913879395
  2689. },
  2690. {
  2691. "id": "SG01_402022520",
  2692. "windturbineid": "SG01_40",
  2693. "stationid": "SBQ_FDC",
  2694. "timestamp": 1653034618868,
  2695. "stophours": 0.0,
  2696. "onpowerhours": 0.08036000000000001,
  2697. "standbyhours": 2.0277600000000002,
  2698. "starthours": 0.19712000000000002,
  2699. "onlinehours": 0.09576,
  2700. "faulthours": 0.0,
  2701. "maintainhours": 0.0,
  2702. "offlinehours": 0.0,
  2703. "powerfactor": 1.0,
  2704. "averageWindSpeedDay": 1.9524654150009155
  2705. },
  2706. {
  2707. "id": "QG01_772022520",
  2708. "windturbineid": "QG01_77",
  2709. "stationid": "QS_FDC",
  2710. "timestamp": 1653034618868,
  2711. "stophours": 0.0,
  2712. "onpowerhours": 0.0,
  2713. "standbyhours": 1.6856000000000002,
  2714. "starthours": 2.1565600000000003,
  2715. "onlinehours": 4.405240000000001,
  2716. "faulthours": 0.0,
  2717. "maintainhours": 0.0,
  2718. "offlinehours": 0.0,
  2719. "powerfactor": -773.0,
  2720. "averageWindSpeedDay": 4.757399082183838
  2721. },
  2722. {
  2723. "id": "QG01_782022520",
  2724. "windturbineid": "QG01_78",
  2725. "stationid": "QS_FDC",
  2726. "timestamp": 1653034618868,
  2727. "stophours": 0.0,
  2728. "onpowerhours": 0.0,
  2729. "standbyhours": 1.78108,
  2730. "starthours": 2.77452,
  2731. "onlinehours": 4.0894,
  2732. "faulthours": 0.0,
  2733. "maintainhours": 0.0,
  2734. "offlinehours": 0.0,
  2735. "powerfactor": -695.0,
  2736. "averageWindSpeedDay": 4.984903812408447
  2737. },
  2738. {
  2739. "id": "QG01_792022520",
  2740. "windturbineid": "QG01_79",
  2741. "stationid": "QS_FDC",
  2742. "timestamp": 1653034618868,
  2743. "stophours": 0.0,
  2744. "onpowerhours": 0.0,
  2745. "standbyhours": 2.3548,
  2746. "starthours": 2.89716,
  2747. "onlinehours": 3.4524,
  2748. "faulthours": 0.0,
  2749. "maintainhours": 0.0,
  2750. "offlinehours": 0.0,
  2751. "powerfactor": -679.0,
  2752. "averageWindSpeedDay": 4.967324256896973
  2753. },
  2754. {
  2755. "id": "QG01_732022520",
  2756. "windturbineid": "QG01_73",
  2757. "stationid": "QS_FDC",
  2758. "timestamp": 1653034618868,
  2759. "stophours": 0.0,
  2760. "onpowerhours": 0.0,
  2761. "standbyhours": 1.4644,
  2762. "starthours": 2.3802800000000004,
  2763. "onlinehours": 3.4571599999999996,
  2764. "faulthours": 0.0,
  2765. "maintainhours": 0.0,
  2766. "offlinehours": 0.0,
  2767. "powerfactor": 1000.0,
  2768. "averageWindSpeedDay": 5.226108074188232
  2769. },
  2770. {
  2771. "id": "QG01_742022520",
  2772. "windturbineid": "QG01_74",
  2773. "stationid": "QS_FDC",
  2774. "timestamp": 1653034618868,
  2775. "stophours": 0.0,
  2776. "onpowerhours": 0.0,
  2777. "standbyhours": 2.76668,
  2778. "starthours": 1.4257600000000001,
  2779. "onlinehours": 3.0018799999999994,
  2780. "faulthours": 0.0,
  2781. "maintainhours": 0.0,
  2782. "offlinehours": 0.0,
  2783. "powerfactor": 1000.0,
  2784. "averageWindSpeedDay": 4.235281467437744
  2785. },
  2786. {
  2787. "id": "QG01_752022520",
  2788. "windturbineid": "QG01_75",
  2789. "stationid": "QS_FDC",
  2790. "timestamp": 1653034618868,
  2791. "stophours": 0.0,
  2792. "onpowerhours": 0.0,
  2793. "standbyhours": 1.6024400000000003,
  2794. "starthours": 2.543800000000001,
  2795. "onlinehours": 3.2398800000000003,
  2796. "faulthours": 0.0,
  2797. "maintainhours": 0.0,
  2798. "offlinehours": 0.0,
  2799. "powerfactor": -740.0,
  2800. "averageWindSpeedDay": 5.0338826179504395
  2801. },
  2802. {
  2803. "id": "QG01_762022520",
  2804. "windturbineid": "QG01_76",
  2805. "stationid": "QS_FDC",
  2806. "timestamp": 1653034618868,
  2807. "stophours": 0.0,
  2808. "onpowerhours": 0.0,
  2809. "standbyhours": 1.2269599999999996,
  2810. "starthours": 2.7098400000000002,
  2811. "onlinehours": 3.3446,
  2812. "faulthours": 0.0,
  2813. "maintainhours": 0.0,
  2814. "offlinehours": 0.0,
  2815. "powerfactor": -724.0,
  2816. "averageWindSpeedDay": 5.042107105255127
  2817. },
  2818. {
  2819. "id": "QG01_702022520",
  2820. "windturbineid": "QG01_70",
  2821. "stationid": "QS_FDC",
  2822. "timestamp": 1653034618868,
  2823. "stophours": 0.0,
  2824. "onpowerhours": 0.0,
  2825. "standbyhours": 2.22124,
  2826. "starthours": 1.5187200000000003,
  2827. "onlinehours": 1.3711600000000002,
  2828. "faulthours": 0.0,
  2829. "maintainhours": 0.0,
  2830. "offlinehours": 0.0,
  2831. "powerfactor": 1000.0,
  2832. "averageWindSpeedDay": 3.772280216217041
  2833. },
  2834. {
  2835. "id": "QG01_712022520",
  2836. "windturbineid": "QG01_71",
  2837. "stationid": "QS_FDC",
  2838. "timestamp": 1653034618868,
  2839. "stophours": 0.0,
  2840. "onpowerhours": 0.0,
  2841. "standbyhours": 2.359279999999999,
  2842. "starthours": 2.8977199999999996,
  2843. "onlinehours": 6.8910800000000005,
  2844. "faulthours": 0.0,
  2845. "maintainhours": 0.0,
  2846. "offlinehours": 0.0,
  2847. "powerfactor": -810.0,
  2848. "averageWindSpeedDay": 3.4907076358795166
  2849. },
  2850. {
  2851. "id": "QG01_722022520",
  2852. "windturbineid": "QG01_72",
  2853. "stationid": "QS_FDC",
  2854. "timestamp": 1653034618868,
  2855. "stophours": 0.0,
  2856. "onpowerhours": 0.0,
  2857. "standbyhours": 0.9553600000000001,
  2858. "starthours": 1.8846800000000001,
  2859. "onlinehours": 3.4078800000000005,
  2860. "faulthours": 0.0,
  2861. "maintainhours": 0.0,
  2862. "offlinehours": 0.0,
  2863. "powerfactor": 1000.0,
  2864. "averageWindSpeedDay": 5.194014072418213
  2865. },
  2866. {
  2867. "id": "NG01_382022520",
  2868. "windturbineid": "NG01_38",
  2869. "stationid": "NSS_FDC",
  2870. "timestamp": 1653034618868,
  2871. "stophours": 0.0,
  2872. "onpowerhours": 0.049,
  2873. "standbyhours": 6.40192,
  2874. "starthours": 0.11984,
  2875. "onlinehours": 0.6969200000000001,
  2876. "faulthours": 0.0,
  2877. "maintainhours": 5.14276,
  2878. "offlinehours": 0.0,
  2879. "powerfactor": -1.0,
  2880. "averageWindSpeedDay": 3.338357448577881
  2881. },
  2882. {
  2883. "id": "SG01_542022520",
  2884. "windturbineid": "SG01_54",
  2885. "stationid": "SBQ_FDC",
  2886. "timestamp": 1653034618868,
  2887. "stophours": 0.0,
  2888. "onpowerhours": 0.017920000000000002,
  2889. "standbyhours": 6.231680000000001,
  2890. "starthours": 0.019880000000000002,
  2891. "onlinehours": 0.06636,
  2892. "faulthours": 0.0,
  2893. "maintainhours": 0.0,
  2894. "offlinehours": 0.0,
  2895. "powerfactor": 1.0,
  2896. "averageWindSpeedDay": 1.9483308792114258
  2897. },
  2898. {
  2899. "id": "NG01_392022520",
  2900. "windturbineid": "NG01_39",
  2901. "stationid": "NSS_FDC",
  2902. "timestamp": 1653034618868,
  2903. "stophours": 0.0,
  2904. "onpowerhours": 0.05040000000000001,
  2905. "standbyhours": 0.22456000000000004,
  2906. "starthours": 0.13972,
  2907. "onlinehours": 0.44772,
  2908. "faulthours": 0.0,
  2909. "maintainhours": 6.69088,
  2910. "offlinehours": 0.4494,
  2911. "powerfactor": -1.0,
  2912. "averageWindSpeedDay": 3.3725974559783936
  2913. },
  2914. {
  2915. "id": "SG01_532022520",
  2916. "windturbineid": "SG01_53",
  2917. "stationid": "SBQ_FDC",
  2918. "timestamp": 1653034618868,
  2919. "stophours": 0.0,
  2920. "onpowerhours": 0.07308,
  2921. "standbyhours": 9.54128,
  2922. "starthours": 0.65324,
  2923. "onlinehours": 4.21708,
  2924. "faulthours": 0.0,
  2925. "maintainhours": 0.0,
  2926. "offlinehours": 0.0,
  2927. "powerfactor": 1.0,
  2928. "averageWindSpeedDay": 2.3764848709106445
  2929. },
  2930. {
  2931. "id": "NG01_362022520",
  2932. "windturbineid": "NG01_36",
  2933. "stationid": "NSS_FDC",
  2934. "timestamp": 1653034618868,
  2935. "stophours": 0.0,
  2936. "onpowerhours": 0.03612,
  2937. "standbyhours": 5.761840000000001,
  2938. "starthours": 0.07448000000000002,
  2939. "onlinehours": 0.86436,
  2940. "faulthours": 0.0,
  2941. "maintainhours": 2.65048,
  2942. "offlinehours": 0.0,
  2943. "powerfactor": 0.0,
  2944. "averageWindSpeedDay": 3.5725769996643066
  2945. },
  2946. {
  2947. "id": "SG01_562022520",
  2948. "windturbineid": "SG01_56",
  2949. "stationid": "SBQ_FDC",
  2950. "timestamp": 1653034618868,
  2951. "stophours": 0.0,
  2952. "onpowerhours": 0.01568,
  2953. "standbyhours": 6.2815199999999995,
  2954. "starthours": 1.00268,
  2955. "onlinehours": 0.39816,
  2956. "faulthours": 0.0,
  2957. "maintainhours": 0.0,
  2958. "offlinehours": 0.0,
  2959. "powerfactor": 1.0,
  2960. "averageWindSpeedDay": 2.980536460876465
  2961. },
  2962. {
  2963. "id": "NG01_372022520",
  2964. "windturbineid": "NG01_37",
  2965. "stationid": "NSS_FDC",
  2966. "timestamp": 1653034618868,
  2967. "stophours": 0.0,
  2968. "onpowerhours": 0.05852,
  2969. "standbyhours": 2.6986400000000006,
  2970. "starthours": 0.16296000000000002,
  2971. "onlinehours": 1.75924,
  2972. "faulthours": 0.0,
  2973. "maintainhours": 5.635000000000001,
  2974. "offlinehours": 0.0,
  2975. "powerfactor": -1.0,
  2976. "averageWindSpeedDay": 3.6040279865264893
  2977. },
  2978. {
  2979. "id": "SG01_552022520",
  2980. "windturbineid": "SG01_55",
  2981. "stationid": "SBQ_FDC",
  2982. "timestamp": 1653034618868,
  2983. "stophours": 0.0,
  2984. "onpowerhours": 0.19376000000000002,
  2985. "standbyhours": 9.14452,
  2986. "starthours": 0.86464,
  2987. "onlinehours": 0.31528,
  2988. "faulthours": 0.0,
  2989. "maintainhours": 0.0,
  2990. "offlinehours": 0.0,
  2991. "powerfactor": 1.0,
  2992. "averageWindSpeedDay": 2.6893868446350098
  2993. },
  2994. {
  2995. "id": "SG01_582022520",
  2996. "windturbineid": "SG01_58",
  2997. "stationid": "SBQ_FDC",
  2998. "timestamp": 1653034618868,
  2999. "stophours": 0.0,
  3000. "onpowerhours": 0.0616,
  3001. "standbyhours": 12.472320000000003,
  3002. "starthours": 2.32512,
  3003. "onlinehours": 0.10500000000000001,
  3004. "faulthours": 0.0,
  3005. "maintainhours": 0.0,
  3006. "offlinehours": 0.0,
  3007. "powerfactor": 1.0,
  3008. "averageWindSpeedDay": 2.1824822425842285
  3009. },
  3010. {
  3011. "id": "SG01_572022520",
  3012. "windturbineid": "SG01_57",
  3013. "stationid": "SBQ_FDC",
  3014. "timestamp": 1653034618868,
  3015. "stophours": 0.0,
  3016. "onpowerhours": 0.06132,
  3017. "standbyhours": 9.47996,
  3018. "starthours": 0.2898,
  3019. "onlinehours": 0.16436,
  3020. "faulthours": 0.0,
  3021. "maintainhours": 0.0,
  3022. "offlinehours": 0.0,
  3023. "powerfactor": 1.0,
  3024. "averageWindSpeedDay": 2.1727960109710693
  3025. },
  3026. {
  3027. "id": "SG01_592022520",
  3028. "windturbineid": "SG01_59",
  3029. "stationid": "SBQ_FDC",
  3030. "timestamp": 1653034618868,
  3031. "stophours": 0.0,
  3032. "onpowerhours": 0.0,
  3033. "standbyhours": 0.0,
  3034. "starthours": 0.0,
  3035. "onlinehours": 0.0,
  3036. "faulthours": 0.0,
  3037. "maintainhours": 0.0,
  3038. "offlinehours": 0.0,
  3039. "powerfactor": 1.0,
  3040. "averageWindSpeedDay": 1.9840726852416992
  3041. },
  3042. {
  3043. "id": "NG01_302022520",
  3044. "windturbineid": "NG01_30",
  3045. "stationid": "NSS_FDC",
  3046. "timestamp": 1653034618868,
  3047. "stophours": 0.0,
  3048. "onpowerhours": 0.022680000000000002,
  3049. "standbyhours": 6.4450400000000005,
  3050. "starthours": 0.010920000000000001,
  3051. "onlinehours": 0.22848000000000002,
  3052. "faulthours": 0.0,
  3053. "maintainhours": 5.356960000000001,
  3054. "offlinehours": 0.0,
  3055. "powerfactor": -1.0,
  3056. "averageWindSpeedDay": 2.9472053050994873
  3057. },
  3058. {
  3059. "id": "NG01_312022520",
  3060. "windturbineid": "NG01_31",
  3061. "stationid": "NSS_FDC",
  3062. "timestamp": 1653034618868,
  3063. "stophours": 0.0,
  3064. "onpowerhours": 0.13019999999999998,
  3065. "standbyhours": 7.89544,
  3066. "starthours": 0.17052,
  3067. "onlinehours": 1.6702000000000004,
  3068. "faulthours": 0.0,
  3069. "maintainhours": 5.62884,
  3070. "offlinehours": 0.0,
  3071. "powerfactor": 0.0,
  3072. "averageWindSpeedDay": 2.970374822616577
  3073. },
  3074. {
  3075. "id": "NG01_342022520",
  3076. "windturbineid": "NG01_34",
  3077. "stationid": "NSS_FDC",
  3078. "timestamp": 1653034618868,
  3079. "stophours": 0.0,
  3080. "onpowerhours": 0.07056000000000001,
  3081. "standbyhours": 5.76576,
  3082. "starthours": 0.2534,
  3083. "onlinehours": 1.0407600000000001,
  3084. "faulthours": 0.0,
  3085. "maintainhours": 1.50892,
  3086. "offlinehours": 0.0,
  3087. "powerfactor": 0.0,
  3088. "averageWindSpeedDay": 3.593714475631714
  3089. },
  3090. {
  3091. "id": "SG01_502022520",
  3092. "windturbineid": "SG01_50",
  3093. "stationid": "SBQ_FDC",
  3094. "timestamp": 1653034618868,
  3095. "stophours": 0.0,
  3096. "onpowerhours": 0.0224,
  3097. "standbyhours": 9.5536,
  3098. "starthours": 0.08120000000000001,
  3099. "onlinehours": 1.7634400000000001,
  3100. "faulthours": 0.11396,
  3101. "maintainhours": 0.0,
  3102. "offlinehours": 0.0,
  3103. "powerfactor": 1.0,
  3104. "averageWindSpeedDay": 2.132661819458008
  3105. },
  3106. {
  3107. "id": "NG01_352022520",
  3108. "windturbineid": "NG01_35",
  3109. "stationid": "NSS_FDC",
  3110. "timestamp": 1653034618868,
  3111. "stophours": 0.0,
  3112. "onpowerhours": 0.05376,
  3113. "standbyhours": 5.8265199999999995,
  3114. "starthours": 0.32004000000000005,
  3115. "onlinehours": 1.08892,
  3116. "faulthours": 0.0,
  3117. "maintainhours": 1.37816,
  3118. "offlinehours": 0.0,
  3119. "powerfactor": 0.0,
  3120. "averageWindSpeedDay": 3.633161783218384
  3121. },
  3122. {
  3123. "id": "NG01_322022520",
  3124. "windturbineid": "NG01_32",
  3125. "stationid": "NSS_FDC",
  3126. "timestamp": 1653034618868,
  3127. "stophours": 0.0,
  3128. "onpowerhours": 0.02968,
  3129. "standbyhours": 1.07044,
  3130. "starthours": 0.01904,
  3131. "onlinehours": 0.32704,
  3132. "faulthours": 0.0,
  3133. "maintainhours": 9.921800000000001,
  3134. "offlinehours": 0.0,
  3135. "powerfactor": -1.0,
  3136. "averageWindSpeedDay": 3.2789323329925537
  3137. },
  3138. {
  3139. "id": "SG01_522022520",
  3140. "windturbineid": "SG01_52",
  3141. "stationid": "SBQ_FDC",
  3142. "timestamp": 1653034618868,
  3143. "stophours": 0.0,
  3144. "onpowerhours": 0.08792000000000001,
  3145. "standbyhours": 10.008880000000001,
  3146. "starthours": 0.588,
  3147. "onlinehours": 0.32788,
  3148. "faulthours": 0.0,
  3149. "maintainhours": 0.0,
  3150. "offlinehours": 0.0,
  3151. "powerfactor": 1.0,
  3152. "averageWindSpeedDay": 2.13265323638916
  3153. },
  3154. {
  3155. "id": "NG01_332022520",
  3156. "windturbineid": "NG01_33",
  3157. "stationid": "NSS_FDC",
  3158. "timestamp": 1653034618868,
  3159. "stophours": 0.0,
  3160. "onpowerhours": 0.04172,
  3161. "standbyhours": 0.67956,
  3162. "starthours": 0.11088000000000002,
  3163. "onlinehours": 0.30996,
  3164. "faulthours": 0.0,
  3165. "maintainhours": 10.51064,
  3166. "offlinehours": 0.0,
  3167. "powerfactor": -1.0,
  3168. "averageWindSpeedDay": 3.1982948780059814
  3169. },
  3170. {
  3171. "id": "SG01_512022520",
  3172. "windturbineid": "SG01_51",
  3173. "stationid": "SBQ_FDC",
  3174. "timestamp": 1653034618868,
  3175. "stophours": 0.0,
  3176. "onpowerhours": 0.06496,
  3177. "standbyhours": 9.925160000000002,
  3178. "starthours": 0.7487199999999999,
  3179. "onlinehours": 4.53236,
  3180. "faulthours": 0.0,
  3181. "maintainhours": 0.0,
  3182. "offlinehours": 0.0,
  3183. "powerfactor": 1.0,
  3184. "averageWindSpeedDay": 2.162327527999878
  3185. },
  3186. {
  3187. "id": "NG01_492022520",
  3188. "windturbineid": "NG01_49",
  3189. "stationid": "NSS_FDC",
  3190. "timestamp": 1653034618868,
  3191. "stophours": 0.0,
  3192. "onpowerhours": 0.11144000000000001,
  3193. "standbyhours": 2.9783600000000003,
  3194. "starthours": 0.12460000000000002,
  3195. "onlinehours": 0.5527200000000001,
  3196. "faulthours": 0.0,
  3197. "maintainhours": 11.84848,
  3198. "offlinehours": 0.0,
  3199. "powerfactor": -0.9166666865348816,
  3200. "averageWindSpeedDay": 2.2533762454986572
  3201. },
  3202. {
  3203. "id": "SG01_652022520",
  3204. "windturbineid": "SG01_65",
  3205. "stationid": "SBQ_FDC",
  3206. "timestamp": 1653034618868,
  3207. "stophours": 0.0,
  3208. "onpowerhours": 0.07224,
  3209. "standbyhours": 9.30384,
  3210. "starthours": 0.48160000000000003,
  3211. "onlinehours": 4.56652,
  3212. "faulthours": 0.0,
  3213. "maintainhours": 0.0,
  3214. "offlinehours": 0.0,
  3215. "powerfactor": 1.0,
  3216. "averageWindSpeedDay": 2.02634859085083
  3217. },
  3218. {
  3219. "id": "SG01_642022520",
  3220. "windturbineid": "SG01_64",
  3221. "stationid": "SBQ_FDC",
  3222. "timestamp": 1653034618868,
  3223. "stophours": 0.0,
  3224. "onpowerhours": 0.0,
  3225. "standbyhours": 0.0,
  3226. "starthours": 0.0,
  3227. "onlinehours": 0.0,
  3228. "faulthours": 0.0,
  3229. "maintainhours": 0.0,
  3230. "offlinehours": 0.0,
  3231. "powerfactor": 1.0,
  3232. "averageWindSpeedDay": 1.1560086011886597
  3233. },
  3234. {
  3235. "id": "NG01_472022520",
  3236. "windturbineid": "NG01_47",
  3237. "stationid": "NSS_FDC",
  3238. "timestamp": 1653034618868,
  3239. "stophours": 0.0,
  3240. "onpowerhours": 0.18480000000000005,
  3241. "standbyhours": 0.9522800000000001,
  3242. "starthours": 0.17108,
  3243. "onlinehours": 3.3849200000000006,
  3244. "faulthours": 0.0,
  3245. "maintainhours": 11.27308,
  3246. "offlinehours": 0.0,
  3247. "powerfactor": -1.0,
  3248. "averageWindSpeedDay": 2.9913861751556396
  3249. },
  3250. {
  3251. "id": "SG01_672022520",
  3252. "windturbineid": "SG01_67",
  3253. "stationid": "SBQ_FDC",
  3254. "timestamp": 1653034618868,
  3255. "stophours": 0.0,
  3256. "onpowerhours": 0.02744,
  3257. "standbyhours": 6.045199999999999,
  3258. "starthours": 1.3972000000000002,
  3259. "onlinehours": 4.898320000000001,
  3260. "faulthours": 0.20944,
  3261. "maintainhours": 0.0,
  3262. "offlinehours": 0.0,
  3263. "powerfactor": 1.0,
  3264. "averageWindSpeedDay": 2.630127429962158
  3265. },
  3266. {
  3267. "id": "NG01_482022520",
  3268. "windturbineid": "NG01_48",
  3269. "stationid": "NSS_FDC",
  3270. "timestamp": 1653034618868,
  3271. "stophours": 0.0,
  3272. "onpowerhours": 0.16772,
  3273. "standbyhours": 2.08908,
  3274. "starthours": 0.043680000000000004,
  3275. "onlinehours": 2.00788,
  3276. "faulthours": 0.0,
  3277. "maintainhours": 11.537120000000002,
  3278. "offlinehours": 0.0,
  3279. "powerfactor": -1.0,
  3280. "averageWindSpeedDay": 2.68428373336792
  3281. },
  3282. {
  3283. "id": "SG01_662022520",
  3284. "windturbineid": "SG01_66",
  3285. "stationid": "SBQ_FDC",
  3286. "timestamp": 1653034618868,
  3287. "stophours": 0.0,
  3288. "onpowerhours": 0.06076000000000001,
  3289. "standbyhours": 10.32836,
  3290. "starthours": 0.21168000000000003,
  3291. "onlinehours": 0.035280000000000006,
  3292. "faulthours": 0.0,
  3293. "maintainhours": 0.0,
  3294. "offlinehours": 0.0,
  3295. "powerfactor": 1.0,
  3296. "averageWindSpeedDay": 2.0579745769500732
  3297. },
  3298. {
  3299. "id": "SG01_692022520",
  3300. "windturbineid": "SG01_69",
  3301. "stationid": "SBQ_FDC",
  3302. "timestamp": 1653034618868,
  3303. "stophours": 0.0,
  3304. "onpowerhours": 0.0154,
  3305. "standbyhours": 7.42616,
  3306. "starthours": 1.3991600000000002,
  3307. "onlinehours": 4.35624,
  3308. "faulthours": 0.13524,
  3309. "maintainhours": 0.0,
  3310. "offlinehours": 0.0,
  3311. "powerfactor": 1.0,
  3312. "averageWindSpeedDay": 2.51763653755188
  3313. },
  3314. {
  3315. "id": "SG01_682022520",
  3316. "windturbineid": "SG01_68",
  3317. "stationid": "SBQ_FDC",
  3318. "timestamp": 1653034618868,
  3319. "stophours": 0.0,
  3320. "onpowerhours": 0.00196,
  3321. "standbyhours": 2.01572,
  3322. "starthours": 0.05852,
  3323. "onlinehours": 1.37788,
  3324. "faulthours": 0.00476,
  3325. "maintainhours": 0.0,
  3326. "offlinehours": 0.0,
  3327. "powerfactor": 1.0,
  3328. "averageWindSpeedDay": 2.6177845001220703
  3329. },
  3330. {
  3331. "id": "NG01_412022520",
  3332. "windturbineid": "NG01_41",
  3333. "stationid": "NSS_FDC",
  3334. "timestamp": 1653034618868,
  3335. "stophours": 0.0,
  3336. "onpowerhours": 0.032760000000000004,
  3337. "standbyhours": 0.7162400000000001,
  3338. "starthours": 0.06440000000000001,
  3339. "onlinehours": 0.34832,
  3340. "faulthours": 0.0,
  3341. "maintainhours": 7.488040000000001,
  3342. "offlinehours": 0.0,
  3343. "powerfactor": 0.0,
  3344. "averageWindSpeedDay": 3.4679946899414062
  3345. },
  3346. {
  3347. "id": "NG01_422022520",
  3348. "windturbineid": "NG01_42",
  3349. "stationid": "NSS_FDC",
  3350. "timestamp": 1653034618868,
  3351. "stophours": 0.0,
  3352. "onpowerhours": 0.11116000000000001,
  3353. "standbyhours": 0.5644800000000001,
  3354. "starthours": 0.15512000000000004,
  3355. "onlinehours": 5.71424,
  3356. "faulthours": 0.0,
  3357. "maintainhours": 9.047360000000001,
  3358. "offlinehours": 0.0,
  3359. "powerfactor": -0.21666665375232697,
  3360. "averageWindSpeedDay": 3.150998115539551
  3361. },
  3362. {
  3363. "id": "NG01_402022520",
  3364. "windturbineid": "NG01_40",
  3365. "stationid": "NSS_FDC",
  3366. "timestamp": 1653034618868,
  3367. "stophours": 0.0,
  3368. "onpowerhours": 0.07672000000000001,
  3369. "standbyhours": 0.89908,
  3370. "starthours": 0.03388000000000001,
  3371. "onlinehours": 0.11536,
  3372. "faulthours": 0.0,
  3373. "maintainhours": 7.9847600000000005,
  3374. "offlinehours": 0.0,
  3375. "powerfactor": 0.0,
  3376. "averageWindSpeedDay": 3.4981133937835693
  3377. },
  3378. {
  3379. "id": "NG01_452022520",
  3380. "windturbineid": "NG01_45",
  3381. "stationid": "NSS_FDC",
  3382. "timestamp": 1653034618868,
  3383. "stophours": 0.0,
  3384. "onpowerhours": 0.0868,
  3385. "standbyhours": 0.5826800000000001,
  3386. "starthours": 0.08904000000000001,
  3387. "onlinehours": 0.55608,
  3388. "faulthours": 0.0,
  3389. "maintainhours": 10.10884,
  3390. "offlinehours": 0.0,
  3391. "powerfactor": 0.20666666328907013,
  3392. "averageWindSpeedDay": 3.188563108444214
  3393. },
  3394. {
  3395. "id": "SG01_612022520",
  3396. "windturbineid": "SG01_61",
  3397. "stationid": "SBQ_FDC",
  3398. "timestamp": 1653034618868,
  3399. "stophours": 0.0,
  3400. "onpowerhours": 0.06104000000000001,
  3401. "standbyhours": 10.46864,
  3402. "starthours": 0.18256,
  3403. "onlinehours": 0.029400000000000003,
  3404. "faulthours": 0.0,
  3405. "maintainhours": 0.0,
  3406. "offlinehours": 0.0,
  3407. "powerfactor": 1.0,
  3408. "averageWindSpeedDay": 2.208592414855957
  3409. },
  3410. {
  3411. "id": "NG01_462022520",
  3412. "windturbineid": "NG01_46",
  3413. "stationid": "NSS_FDC",
  3414. "timestamp": 1653034618868,
  3415. "stophours": 0.0,
  3416. "onpowerhours": 0.06804,
  3417. "standbyhours": 0.88256,
  3418. "starthours": 0.14756000000000002,
  3419. "onlinehours": 0.2786,
  3420. "faulthours": 0.0,
  3421. "maintainhours": 10.30372,
  3422. "offlinehours": 0.0,
  3423. "powerfactor": 0.949999988079071,
  3424. "averageWindSpeedDay": 3.0825624465942383
  3425. },
  3426. {
  3427. "id": "SG01_602022520",
  3428. "windturbineid": "SG01_60",
  3429. "stationid": "SBQ_FDC",
  3430. "timestamp": 1653034618868,
  3431. "stophours": 0.0,
  3432. "onpowerhours": 0.050960000000000005,
  3433. "standbyhours": 8.68644,
  3434. "starthours": 0.77504,
  3435. "onlinehours": 5.029360000000001,
  3436. "faulthours": 0.0,
  3437. "maintainhours": 0.0,
  3438. "offlinehours": 0.0,
  3439. "powerfactor": 1.0,
  3440. "averageWindSpeedDay": 2.2106573581695557
  3441. },
  3442. {
  3443. "id": "NG01_432022520",
  3444. "windturbineid": "NG01_43",
  3445. "stationid": "NSS_FDC",
  3446. "timestamp": 1653034618868,
  3447. "stophours": 0.0,
  3448. "onpowerhours": 0.045360000000000004,
  3449. "standbyhours": 1.1748800000000001,
  3450. "starthours": 0.013160000000000002,
  3451. "onlinehours": 0.0,
  3452. "faulthours": 0.0,
  3453. "maintainhours": 10.388560000000002,
  3454. "offlinehours": 0.0,
  3455. "powerfactor": 0.9233333468437195,
  3456. "averageWindSpeedDay": 3.2502098083496094
  3457. },
  3458. {
  3459. "id": "SG01_632022520",
  3460. "windturbineid": "SG01_63",
  3461. "stationid": "SBQ_FDC",
  3462. "timestamp": 1653034618868,
  3463. "stophours": 0.0,
  3464. "onpowerhours": 0.019600000000000003,
  3465. "standbyhours": 5.102720000000001,
  3466. "starthours": 0.71848,
  3467. "onlinehours": 0.05516,
  3468. "faulthours": 0.0,
  3469. "maintainhours": 0.0,
  3470. "offlinehours": 0.0,
  3471. "powerfactor": 1.0,
  3472. "averageWindSpeedDay": 2.8369972705841064
  3473. },
  3474. {
  3475. "id": "NG01_442022520",
  3476. "windturbineid": "NG01_44",
  3477. "stationid": "NSS_FDC",
  3478. "timestamp": 1653034618868,
  3479. "stophours": 0.0,
  3480. "onpowerhours": 0.41244000000000003,
  3481. "standbyhours": 4.198600000000001,
  3482. "starthours": 0.5894,
  3483. "onlinehours": 2.1630000000000007,
  3484. "faulthours": 0.0,
  3485. "maintainhours": 4.753,
  3486. "offlinehours": 0.0,
  3487. "powerfactor": 0.0,
  3488. "averageWindSpeedDay": 3.409169912338257
  3489. },
  3490. {
  3491. "id": "SG01_622022520",
  3492. "windturbineid": "SG01_62",
  3493. "stationid": "SBQ_FDC",
  3494. "timestamp": 1653034618868,
  3495. "stophours": 0.0,
  3496. "onpowerhours": 0.22988,
  3497. "standbyhours": 7.041160000000001,
  3498. "starthours": 0.8064,
  3499. "onlinehours": 1.3193600000000003,
  3500. "faulthours": 0.0,
  3501. "maintainhours": 0.0,
  3502. "offlinehours": 0.0,
  3503. "powerfactor": 1.0,
  3504. "averageWindSpeedDay": 3.0731778144836426
  3505. },
  3506. {
  3507. "id": "QG01_912022520",
  3508. "windturbineid": "QG01_91",
  3509. "stationid": "QS_FDC",
  3510. "timestamp": 1653034618868,
  3511. "stophours": 0.0,
  3512. "onpowerhours": 0.0,
  3513. "standbyhours": 2.1812,
  3514. "starthours": 2.33352,
  3515. "onlinehours": 11.754960000000004,
  3516. "faulthours": 0.0,
  3517. "maintainhours": 0.0,
  3518. "offlinehours": 0.0,
  3519. "powerfactor": -734.0,
  3520. "averageWindSpeedDay": 4.568209171295166
  3521. },
  3522. {
  3523. "id": "NG01_582022520",
  3524. "windturbineid": "NG01_58",
  3525. "stationid": "NSS_FDC",
  3526. "timestamp": 1653034618868,
  3527. "stophours": 0.0,
  3528. "onpowerhours": 0.12824000000000002,
  3529. "standbyhours": 1.31348,
  3530. "starthours": 0.11256000000000001,
  3531. "onlinehours": 3.1001600000000002,
  3532. "faulthours": 0.0,
  3533. "maintainhours": 11.119080000000002,
  3534. "offlinehours": 0.0,
  3535. "powerfactor": -1.0,
  3536. "averageWindSpeedDay": 2.6420857906341553
  3537. },
  3538. {
  3539. "id": "NG01_592022520",
  3540. "windturbineid": "NG01_59",
  3541. "stationid": "NSS_FDC",
  3542. "timestamp": 1653034618868,
  3543. "stophours": 0.0,
  3544. "onpowerhours": 0.05684,
  3545. "standbyhours": 1.8085200000000001,
  3546. "starthours": 0.11620000000000003,
  3547. "onlinehours": 2.27332,
  3548. "faulthours": 0.0,
  3549. "maintainhours": 11.3442,
  3550. "offlinehours": 0.0,
  3551. "powerfactor": -1.0,
  3552. "averageWindSpeedDay": 2.5792412757873535
  3553. },
  3554. {
  3555. "id": "NG01_522022520",
  3556. "windturbineid": "NG01_52",
  3557. "stationid": "NSS_FDC",
  3558. "timestamp": 1653034618868,
  3559. "stophours": 0.0,
  3560. "onpowerhours": 0.06496,
  3561. "standbyhours": 2.46204,
  3562. "starthours": 0.06944,
  3563. "onlinehours": 1.69316,
  3564. "faulthours": 0.0,
  3565. "maintainhours": 11.975040000000002,
  3566. "offlinehours": 0.0,
  3567. "powerfactor": -0.9033333659172058,
  3568. "averageWindSpeedDay": 2.3534271717071533
  3569. },
  3570. {
  3571. "id": "NG01_532022520",
  3572. "windturbineid": "NG01_53",
  3573. "stationid": "NSS_FDC",
  3574. "timestamp": 1653034618868,
  3575. "stophours": 0.0,
  3576. "onpowerhours": 0.10696,
  3577. "standbyhours": 0.9360400000000002,
  3578. "starthours": 0.5107200000000001,
  3579. "onlinehours": 3.3485200000000006,
  3580. "faulthours": 0.0,
  3581. "maintainhours": 11.482520000000001,
  3582. "offlinehours": 0.0,
  3583. "powerfactor": 0.32333335280418396,
  3584. "averageWindSpeedDay": 2.8533098697662354
  3585. },
  3586. {
  3587. "id": "NG01_502022520",
  3588. "windturbineid": "NG01_50",
  3589. "stationid": "NSS_FDC",
  3590. "timestamp": 1653034618868,
  3591. "stophours": 0.0,
  3592. "onpowerhours": 0.12768000000000002,
  3593. "standbyhours": 0.5703600000000001,
  3594. "starthours": 0.25256,
  3595. "onlinehours": 3.4067600000000002,
  3596. "faulthours": 0.0,
  3597. "maintainhours": 11.465160000000001,
  3598. "offlinehours": 0.0,
  3599. "powerfactor": 0.1966666579246521,
  3600. "averageWindSpeedDay": 2.750074863433838
  3601. },
  3602. {
  3603. "id": "NG01_512022520",
  3604. "windturbineid": "NG01_51",
  3605. "stationid": "NSS_FDC",
  3606. "timestamp": 1653034618868,
  3607. "stophours": 0.0,
  3608. "onpowerhours": 0.10500000000000001,
  3609. "standbyhours": 0.301,
  3610. "starthours": 0.13076000000000002,
  3611. "onlinehours": 3.5056000000000003,
  3612. "faulthours": 0.0,
  3613. "maintainhours": 11.60656,
  3614. "offlinehours": 0.0,
  3615. "powerfactor": -0.23999999463558197,
  3616. "averageWindSpeedDay": 2.4977080821990967
  3617. },
  3618. {
  3619. "id": "NG01_562022520",
  3620. "windturbineid": "NG01_56",
  3621. "stationid": "NSS_FDC",
  3622. "timestamp": 1653034618868,
  3623. "stophours": 0.0,
  3624. "onpowerhours": 0.0742,
  3625. "standbyhours": 0.7792399999999999,
  3626. "starthours": 0.09044,
  3627. "onlinehours": 3.8304,
  3628. "faulthours": 0.0,
  3629. "maintainhours": 10.47732,
  3630. "offlinehours": 0.0,
  3631. "powerfactor": -1.0,
  3632. "averageWindSpeedDay": 3.24678635597229
  3633. },
  3634. {
  3635. "id": "NG01_572022520",
  3636. "windturbineid": "NG01_57",
  3637. "stationid": "NSS_FDC",
  3638. "timestamp": 1653034618868,
  3639. "stophours": 0.0,
  3640. "onpowerhours": 0.0658,
  3641. "standbyhours": 1.0407600000000001,
  3642. "starthours": 0.039760000000000004,
  3643. "onlinehours": 3.1144400000000005,
  3644. "faulthours": 0.0,
  3645. "maintainhours": 11.61608,
  3646. "offlinehours": 0.0,
  3647. "powerfactor": -0.9233333468437195,
  3648. "averageWindSpeedDay": 2.603098154067993
  3649. },
  3650. {
  3651. "id": "NG01_542022520",
  3652. "windturbineid": "NG01_54",
  3653. "stationid": "NSS_FDC",
  3654. "timestamp": 1653034618868,
  3655. "stophours": 0.0,
  3656. "onpowerhours": 0.21980000000000002,
  3657. "standbyhours": 11.379480000000001,
  3658. "starthours": 0.48776,
  3659. "onlinehours": 2.9055599999999995,
  3660. "faulthours": 0.0,
  3661. "maintainhours": 0.0,
  3662. "offlinehours": 0.0,
  3663. "powerfactor": 0.17999999225139618,
  3664. "averageWindSpeedDay": 2.392134428024292
  3665. },
  3666. {
  3667. "id": "NG01_552022520",
  3668. "windturbineid": "NG01_55",
  3669. "stationid": "NSS_FDC",
  3670. "timestamp": 1653034618868,
  3671. "stophours": 0.0,
  3672. "onpowerhours": 0.10724,
  3673. "standbyhours": 1.09004,
  3674. "starthours": 0.24500000000000005,
  3675. "onlinehours": 0.48356000000000005,
  3676. "faulthours": 0.0,
  3677. "maintainhours": 13.734280000000002,
  3678. "offlinehours": 0.0,
  3679. "powerfactor": 0.31333333253860474,
  3680. "averageWindSpeedDay": 2.3084821701049805
  3681. },
  3682. {
  3683. "id": "QG01_482022520",
  3684. "windturbineid": "QG01_48",
  3685. "stationid": "QS_FDC",
  3686. "timestamp": 1653034618868,
  3687. "stophours": 0.02016,
  3688. "onpowerhours": 0.0,
  3689. "standbyhours": 0.6871200000000001,
  3690. "starthours": 2.8705600000000007,
  3691. "onlinehours": 1.18608,
  3692. "faulthours": 0.7518,
  3693. "maintainhours": 0.0,
  3694. "offlinehours": 0.0,
  3695. "powerfactor": -0.699999988079071,
  3696. "averageWindSpeedDay": 4.278681755065918
  3697. },
  3698. {
  3699. "id": "QG01_492022520",
  3700. "windturbineid": "QG01_49",
  3701. "stationid": "QS_FDC",
  3702. "timestamp": 1653034618868,
  3703. "stophours": 0.056,
  3704. "onpowerhours": 0.0,
  3705. "standbyhours": 0.098,
  3706. "starthours": 3.6198400000000004,
  3707. "onlinehours": 5.483520000000001,
  3708. "faulthours": 0.0,
  3709. "maintainhours": 0.0,
  3710. "offlinehours": 0.0,
  3711. "powerfactor": -0.6000000238418579,
  3712. "averageWindSpeedDay": 3.865396499633789
  3713. },
  3714. {
  3715. "id": "QG01_442022520",
  3716. "windturbineid": "QG01_44",
  3717. "stationid": "QS_FDC",
  3718. "timestamp": 1653034618868,
  3719. "stophours": 0.0,
  3720. "onpowerhours": 0.0,
  3721. "standbyhours": 0.61852,
  3722. "starthours": 2.3758000000000004,
  3723. "onlinehours": 1.76344,
  3724. "faulthours": 0.36036,
  3725. "maintainhours": 0.0,
  3726. "offlinehours": 0.0,
  3727. "powerfactor": -0.6000000238418579,
  3728. "averageWindSpeedDay": 4.126879692077637
  3729. },
  3730. {
  3731. "id": "NG01_602022520",
  3732. "windturbineid": "NG01_60",
  3733. "stationid": "NSS_FDC",
  3734. "timestamp": 1653034618868,
  3735. "stophours": 0.0,
  3736. "onpowerhours": 0.06552,
  3737. "standbyhours": 1.9166000000000003,
  3738. "starthours": 0.0616,
  3739. "onlinehours": 0.7285600000000001,
  3740. "faulthours": 0.0,
  3741. "maintainhours": 12.77584,
  3742. "offlinehours": 0.0,
  3743. "powerfactor": -1.0,
  3744. "averageWindSpeedDay": 2.266169786453247
  3745. },
  3746. {
  3747. "id": "QG01_452022520",
  3748. "windturbineid": "QG01_45",
  3749. "stationid": "QS_FDC",
  3750. "timestamp": 1653034618868,
  3751. "stophours": 0.11284000000000002,
  3752. "onpowerhours": 0.0,
  3753. "standbyhours": 1.19196,
  3754. "starthours": 5.285840000000001,
  3755. "onlinehours": 9.541559999999999,
  3756. "faulthours": 0.0,
  3757. "maintainhours": 0.0,
  3758. "offlinehours": 0.0,
  3759. "powerfactor": -0.699999988079071,
  3760. "averageWindSpeedDay": 3.8214211463928223
  3761. },
  3762. {
  3763. "id": "QG01_462022520",
  3764. "windturbineid": "QG01_46",
  3765. "stationid": "QS_FDC",
  3766. "timestamp": 1653034618868,
  3767. "stophours": 0.056560000000000006,
  3768. "onpowerhours": 0.0,
  3769. "standbyhours": 0.28308,
  3770. "starthours": 4.43128,
  3771. "onlinehours": 4.740400000000001,
  3772. "faulthours": 0.0,
  3773. "maintainhours": 0.0,
  3774. "offlinehours": 0.0,
  3775. "powerfactor": -0.8999999761581421,
  3776. "averageWindSpeedDay": 3.898146152496338
  3777. },
  3778. {
  3779. "id": "QG01_472022520",
  3780. "windturbineid": "QG01_47",
  3781. "stationid": "QS_FDC",
  3782. "timestamp": 1653034618868,
  3783. "stophours": 0.0061600000000000005,
  3784. "onpowerhours": 0.0,
  3785. "standbyhours": 0.0378,
  3786. "starthours": 3.2575199999999995,
  3787. "onlinehours": 6.037639999999999,
  3788. "faulthours": 0.0,
  3789. "maintainhours": 0.0,
  3790. "offlinehours": 0.0,
  3791. "powerfactor": -0.8999999761581421,
  3792. "averageWindSpeedDay": 4.214829921722412
  3793. },
  3794. {
  3795. "id": "QG01_402022520",
  3796. "windturbineid": "QG01_40",
  3797. "stationid": "QS_FDC",
  3798. "timestamp": 1653034618868,
  3799. "stophours": 0.050120000000000005,
  3800. "onpowerhours": 0.0,
  3801. "standbyhours": 0.27636000000000005,
  3802. "starthours": 3.12564,
  3803. "onlinehours": 1.9210800000000006,
  3804. "faulthours": 0.07728,
  3805. "maintainhours": 0.0,
  3806. "offlinehours": 0.0,
  3807. "powerfactor": -0.699999988079071,
  3808. "averageWindSpeedDay": 4.662203788757324
  3809. },
  3810. {
  3811. "id": "QG01_412022520",
  3812. "windturbineid": "QG01_41",
  3813. "stationid": "QS_FDC",
  3814. "timestamp": 1653034618868,
  3815. "stophours": 0.0,
  3816. "onpowerhours": 0.0,
  3817. "standbyhours": 0.0,
  3818. "starthours": 3.11052,
  3819. "onlinehours": 2.2766799999999994,
  3820. "faulthours": 0.0,
  3821. "maintainhours": 0.0,
  3822. "offlinehours": 0.0,
  3823. "powerfactor": -0.699999988079071,
  3824. "averageWindSpeedDay": 4.525025844573975
  3825. },
  3826. {
  3827. "id": "QG01_422022520",
  3828. "windturbineid": "QG01_42",
  3829. "stationid": "QS_FDC",
  3830. "timestamp": 1653034618868,
  3831. "stophours": 0.05068,
  3832. "onpowerhours": 0.0,
  3833. "standbyhours": 0.57764,
  3834. "starthours": 2.1641199999999996,
  3835. "onlinehours": 2.3422000000000005,
  3836. "faulthours": 0.41048,
  3837. "maintainhours": 0.0,
  3838. "offlinehours": 0.0,
  3839. "powerfactor": -0.6000000238418579,
  3840. "averageWindSpeedDay": 4.114933013916016
  3841. },
  3842. {
  3843. "id": "QG01_432022520",
  3844. "windturbineid": "QG01_43",
  3845. "stationid": "QS_FDC",
  3846. "timestamp": 1653034618868,
  3847. "stophours": 0.043680000000000004,
  3848. "onpowerhours": 0.0,
  3849. "standbyhours": 0.38780000000000003,
  3850. "starthours": 3.449599999999999,
  3851. "onlinehours": 6.210959999999999,
  3852. "faulthours": 0.0,
  3853. "maintainhours": 0.0,
  3854. "offlinehours": 0.0,
  3855. "powerfactor": -0.699999988079071,
  3856. "averageWindSpeedDay": 3.7677652835845947
  3857. },
  3858. {
  3859. "id": "NG01_692022520",
  3860. "windturbineid": "NG01_69",
  3861. "stationid": "NSS_FDC",
  3862. "timestamp": 1653034618868,
  3863. "stophours": 0.0,
  3864. "onpowerhours": 0.12404000000000001,
  3865. "standbyhours": 0.34020000000000006,
  3866. "starthours": 0.21084000000000003,
  3867. "onlinehours": 3.2720800000000003,
  3868. "faulthours": 0.0,
  3869. "maintainhours": 11.3806,
  3870. "offlinehours": 0.0,
  3871. "powerfactor": 0.1966666579246521,
  3872. "averageWindSpeedDay": 2.981783628463745
  3873. },
  3874. {
  3875. "id": "SG01_012022520",
  3876. "windturbineid": "SG01_01",
  3877. "stationid": "SBQ_FDC",
  3878. "timestamp": 1653034618868,
  3879. "stophours": 0.0,
  3880. "onpowerhours": 0.05068,
  3881. "standbyhours": 10.21468,
  3882. "starthours": 0.15736,
  3883. "onlinehours": 1.9451600000000002,
  3884. "faulthours": 0.0,
  3885. "maintainhours": 0.0,
  3886. "offlinehours": 0.0,
  3887. "powerfactor": 0.7500000596046448,
  3888. "averageWindSpeedDay": 2.0011367797851562
  3889. },
  3890. {
  3891. "id": "SG01_032022520",
  3892. "windturbineid": "SG01_03",
  3893. "stationid": "SBQ_FDC",
  3894. "timestamp": 1653034618868,
  3895. "stophours": 0.0,
  3896. "onpowerhours": 0.0742,
  3897. "standbyhours": 9.649080000000001,
  3898. "starthours": 0.22064,
  3899. "onlinehours": 0.66612,
  3900. "faulthours": 0.0,
  3901. "maintainhours": 0.0,
  3902. "offlinehours": 0.0,
  3903. "powerfactor": 0.6670000553131104,
  3904. "averageWindSpeedDay": 1.8750858306884766
  3905. },
  3906. {
  3907. "id": "SG01_022022520",
  3908. "windturbineid": "SG01_02",
  3909. "stationid": "SBQ_FDC",
  3910. "timestamp": 1653034618868,
  3911. "stophours": 0.0,
  3912. "onpowerhours": 0.059359999999999996,
  3913. "standbyhours": 9.30664,
  3914. "starthours": 0.43148000000000003,
  3915. "onlinehours": 0.60228,
  3916. "faulthours": 0.0,
  3917. "maintainhours": 0.0,
  3918. "offlinehours": 0.0,
  3919. "powerfactor": 1.0,
  3920. "averageWindSpeedDay": 1.7584201097488403
  3921. },
  3922. {
  3923. "id": "SG01_052022520",
  3924. "windturbineid": "SG01_05",
  3925. "stationid": "SBQ_FDC",
  3926. "timestamp": 1653034618868,
  3927. "stophours": 0.0,
  3928. "onpowerhours": 0.04564,
  3929. "standbyhours": 9.608480000000002,
  3930. "starthours": 0.09436,
  3931. "onlinehours": 0.9489200000000001,
  3932. "faulthours": 0.0,
  3933. "maintainhours": 0.0,
  3934. "offlinehours": 0.0,
  3935. "powerfactor": 0.6000000238418579,
  3936. "averageWindSpeedDay": 1.7954822778701782
  3937. },
  3938. {
  3939. "id": "SG01_042022520",
  3940. "windturbineid": "SG01_04",
  3941. "stationid": "SBQ_FDC",
  3942. "timestamp": 1653034618868,
  3943. "stophours": 0.0,
  3944. "onpowerhours": 0.12096000000000001,
  3945. "standbyhours": 9.755200000000002,
  3946. "starthours": 1.04244,
  3947. "onlinehours": 2.7582800000000005,
  3948. "faulthours": 0.0,
  3949. "maintainhours": 0.0,
  3950. "offlinehours": 0.0,
  3951. "powerfactor": 1.0,
  3952. "averageWindSpeedDay": 2.087806463241577
  3953. },
  3954. {
  3955. "id": "NG01_632022520",
  3956. "windturbineid": "NG01_63",
  3957. "stationid": "NSS_FDC",
  3958. "timestamp": 1653034618868,
  3959. "stophours": 0.0,
  3960. "onpowerhours": 0.17808000000000002,
  3961. "standbyhours": 1.74132,
  3962. "starthours": 0.18620000000000003,
  3963. "onlinehours": 2.4570000000000003,
  3964. "faulthours": 0.0,
  3965. "maintainhours": 11.39208,
  3966. "offlinehours": 0.0,
  3967. "powerfactor": -1.0,
  3968. "averageWindSpeedDay": 2.743060350418091
  3969. },
  3970. {
  3971. "id": "NG01_642022520",
  3972. "windturbineid": "NG01_64",
  3973. "stationid": "NSS_FDC",
  3974. "timestamp": 1653034618868,
  3975. "stophours": 0.0,
  3976. "onpowerhours": 0.057120000000000004,
  3977. "standbyhours": 0.73024,
  3978. "starthours": 0.07672000000000001,
  3979. "onlinehours": 0.50204,
  3980. "faulthours": 0.0,
  3981. "maintainhours": 10.218320000000002,
  3982. "offlinehours": 0.0,
  3983. "powerfactor": -1.0,
  3984. "averageWindSpeedDay": 3.1504807472229004
  3985. },
  3986. {
  3987. "id": "NG01_612022520",
  3988. "windturbineid": "NG01_61",
  3989. "stationid": "NSS_FDC",
  3990. "timestamp": 1653034618868,
  3991. "stophours": 0.0,
  3992. "onpowerhours": 0.08372000000000002,
  3993. "standbyhours": 1.9446000000000006,
  3994. "starthours": 0.12152,
  3995. "onlinehours": 2.0062,
  3996. "faulthours": 0.0,
  3997. "maintainhours": 11.43772,
  3998. "offlinehours": 0.0,
  3999. "powerfactor": -0.429999977350235,
  4000. "averageWindSpeedDay": 2.6894149780273438
  4001. },
  4002. {
  4003. "id": "NG01_622022520",
  4004. "windturbineid": "NG01_62",
  4005. "stationid": "NSS_FDC",
  4006. "timestamp": 1653034618868,
  4007. "stophours": 0.0,
  4008. "onpowerhours": 0.13272,
  4009. "standbyhours": 1.87404,
  4010. "starthours": 0.16100000000000003,
  4011. "onlinehours": 2.4189199999999995,
  4012. "faulthours": 0.0,
  4013. "maintainhours": 11.36016,
  4014. "offlinehours": 0.0,
  4015. "powerfactor": -1.0,
  4016. "averageWindSpeedDay": 2.6282401084899902
  4017. },
  4018. {
  4019. "id": "NG01_672022520",
  4020. "windturbineid": "NG01_67",
  4021. "stationid": "NSS_FDC",
  4022. "timestamp": 1653034618868,
  4023. "stophours": 0.0,
  4024. "onpowerhours": 0.03724,
  4025. "standbyhours": 0.6501600000000001,
  4026. "starthours": 0.31920000000000004,
  4027. "onlinehours": 3.33872,
  4028. "faulthours": 0.0,
  4029. "maintainhours": 11.320120000000001,
  4030. "offlinehours": 0.0,
  4031. "powerfactor": -0.7633333206176758,
  4032. "averageWindSpeedDay": 2.8896758556365967
  4033. },
  4034. {
  4035. "id": "NG01_682022520",
  4036. "windturbineid": "NG01_68",
  4037. "stationid": "NSS_FDC",
  4038. "timestamp": 1653034618868,
  4039. "stophours": 0.0,
  4040. "onpowerhours": 0.07756,
  4041. "standbyhours": 1.1824400000000002,
  4042. "starthours": 0.04648,
  4043. "onlinehours": 0.0,
  4044. "faulthours": 0.0,
  4045. "maintainhours": 10.953600000000002,
  4046. "offlinehours": 0.0,
  4047. "powerfactor": 0.3233333230018616,
  4048. "averageWindSpeedDay": 2.8014633655548096
  4049. },
  4050. {
  4051. "id": "NG01_652022520",
  4052. "windturbineid": "NG01_65",
  4053. "stationid": "NSS_FDC",
  4054. "timestamp": 1653034618868,
  4055. "stophours": 0.0,
  4056. "onpowerhours": 0.07056000000000001,
  4057. "standbyhours": 0.8528800000000001,
  4058. "starthours": 0.12432,
  4059. "onlinehours": 4.0936,
  4060. "faulthours": 0.0,
  4061. "maintainhours": 10.5112,
  4062. "offlinehours": 0.0,
  4063. "powerfactor": -0.7633333206176758,
  4064. "averageWindSpeedDay": 3.110764980316162
  4065. },
  4066. {
  4067. "id": "NG01_662022520",
  4068. "windturbineid": "NG01_66",
  4069. "stationid": "NSS_FDC",
  4070. "timestamp": 1653034618868,
  4071. "stophours": 0.0,
  4072. "onpowerhours": 0.10276000000000002,
  4073. "standbyhours": 1.2011999999999998,
  4074. "starthours": 0.32872,
  4075. "onlinehours": 3.81836,
  4076. "faulthours": 0.0,
  4077. "maintainhours": 10.60668,
  4078. "offlinehours": 0.0,
  4079. "powerfactor": 0.95333331823349,
  4080. "averageWindSpeedDay": 2.9776971340179443
  4081. },
  4082. {
  4083. "id": "QG01_372022520",
  4084. "windturbineid": "QG01_37",
  4085. "stationid": "QS_FDC",
  4086. "timestamp": 1653034618868,
  4087. "stophours": 0.04732,
  4088. "onpowerhours": 0.0,
  4089. "standbyhours": 0.30856000000000006,
  4090. "starthours": 1.8874800000000003,
  4091. "onlinehours": 2.16076,
  4092. "faulthours": 3.6344000000000003,
  4093. "maintainhours": 0.0,
  4094. "offlinehours": 0.0,
  4095. "powerfactor": -0.6000000238418579,
  4096. "averageWindSpeedDay": 4.465705394744873
  4097. },
  4098. {
  4099. "id": "QG01_382022520",
  4100. "windturbineid": "QG01_38",
  4101. "stationid": "QS_FDC",
  4102. "timestamp": 1653034618868,
  4103. "stophours": 0.24052000000000004,
  4104. "onpowerhours": 0.0,
  4105. "standbyhours": 0.17668,
  4106. "starthours": 3.0629200000000005,
  4107. "onlinehours": 11.688319999999997,
  4108. "faulthours": 0.0,
  4109. "maintainhours": 0.0,
  4110. "offlinehours": 0.0,
  4111. "powerfactor": 0.20000000298023224,
  4112. "averageWindSpeedDay": 4.481565475463867
  4113. },
  4114. {
  4115. "id": "QG01_392022520",
  4116. "windturbineid": "QG01_39",
  4117. "stationid": "QS_FDC",
  4118. "timestamp": 1653034618868,
  4119. "stophours": 0.0061600000000000005,
  4120. "onpowerhours": 0.0,
  4121. "standbyhours": 0.07980000000000001,
  4122. "starthours": 3.394720000000001,
  4123. "onlinehours": 1.8639600000000005,
  4124. "faulthours": 0.09884000000000001,
  4125. "maintainhours": 0.0,
  4126. "offlinehours": 0.0,
  4127. "powerfactor": -0.699999988079071,
  4128. "averageWindSpeedDay": 4.521112442016602
  4129. },
  4130. {
  4131. "id": "NG01_702022520",
  4132. "windturbineid": "NG01_70",
  4133. "stationid": "NSS_FDC",
  4134. "timestamp": 1653034618868,
  4135. "stophours": 0.0,
  4136. "onpowerhours": 0.11760000000000001,
  4137. "standbyhours": 1.41232,
  4138. "starthours": 0.17164000000000001,
  4139. "onlinehours": 2.6695200000000003,
  4140. "faulthours": 0.0,
  4141. "maintainhours": 11.62672,
  4142. "offlinehours": 0.0,
  4143. "powerfactor": -0.07666667550802231,
  4144. "averageWindSpeedDay": 2.7146995067596436
  4145. },
  4146. {
  4147. "id": "QG01_332022520",
  4148. "windturbineid": "QG01_33",
  4149. "stationid": "QS_FDC",
  4150. "timestamp": 1653034618868,
  4151. "stophours": 0.0,
  4152. "onpowerhours": 0.0,
  4153. "standbyhours": 0.5611200000000001,
  4154. "starthours": 2.0364400000000002,
  4155. "onlinehours": 8.02984,
  4156. "faulthours": 1.50388,
  4157. "maintainhours": 0.0,
  4158. "offlinehours": 0.0,
  4159. "powerfactor": -0.6000000238418579,
  4160. "averageWindSpeedDay": 3.479196786880493
  4161. },
  4162. {
  4163. "id": "NG01_712022520",
  4164. "windturbineid": "NG01_71",
  4165. "stationid": "NSS_FDC",
  4166. "timestamp": 1653034618868,
  4167. "stophours": 0.0,
  4168. "onpowerhours": 0.1344,
  4169. "standbyhours": 1.1323200000000002,
  4170. "starthours": 0.17444,
  4171. "onlinehours": 3.7870000000000004,
  4172. "faulthours": 0.0,
  4173. "maintainhours": 10.94688,
  4174. "offlinehours": 0.0,
  4175. "powerfactor": -0.9066666960716248,
  4176. "averageWindSpeedDay": 3.3406527042388916
  4177. },
  4178. {
  4179. "id": "QG01_342022520",
  4180. "windturbineid": "QG01_34",
  4181. "stationid": "QS_FDC",
  4182. "timestamp": 1653034618868,
  4183. "stophours": 0.04564,
  4184. "onpowerhours": 0.0,
  4185. "standbyhours": 0.0504,
  4186. "starthours": 3.1987200000000002,
  4187. "onlinehours": 5.349400000000001,
  4188. "faulthours": 0.0,
  4189. "maintainhours": 0.0,
  4190. "offlinehours": 0.0,
  4191. "powerfactor": -0.699999988079071,
  4192. "averageWindSpeedDay": 4.233676433563232
  4193. },
  4194. {
  4195. "id": "QG01_352022520",
  4196. "windturbineid": "QG01_35",
  4197. "stationid": "QS_FDC",
  4198. "timestamp": 1653034618868,
  4199. "stophours": 0.04676000000000001,
  4200. "onpowerhours": 0.0,
  4201. "standbyhours": 0.11844,
  4202. "starthours": 3.7424800000000005,
  4203. "onlinehours": 1.8855200000000003,
  4204. "faulthours": 0.0,
  4205. "maintainhours": 0.0,
  4206. "offlinehours": 0.0,
  4207. "powerfactor": 1.0,
  4208. "averageWindSpeedDay": 4.6150360107421875
  4209. },
  4210. {
  4211. "id": "QG01_362022520",
  4212. "windturbineid": "QG01_36",
  4213. "stationid": "QS_FDC",
  4214. "timestamp": 1653034618868,
  4215. "stophours": 0.0,
  4216. "onpowerhours": 0.0,
  4217. "standbyhours": 0.0,
  4218. "starthours": 3.105479999999999,
  4219. "onlinehours": 2.1406000000000005,
  4220. "faulthours": 0.0,
  4221. "maintainhours": 0.0,
  4222. "offlinehours": 0.0,
  4223. "powerfactor": -0.699999988079071,
  4224. "averageWindSpeedDay": 4.544078350067139
  4225. },
  4226. {
  4227. "id": "SG01_072022520",
  4228. "windturbineid": "SG01_07",
  4229. "stationid": "SBQ_FDC",
  4230. "timestamp": 1653034618868,
  4231. "stophours": 0.0,
  4232. "onpowerhours": 0.17416,
  4233. "standbyhours": 9.997399999999999,
  4234. "starthours": 0.9528400000000001,
  4235. "onlinehours": 2.9500800000000003,
  4236. "faulthours": 0.0,
  4237. "maintainhours": 0.0,
  4238. "offlinehours": 0.0,
  4239. "powerfactor": 0.6000000238418579,
  4240. "averageWindSpeedDay": 2.216890811920166
  4241. },
  4242. {
  4243. "id": "QG01_302022520",
  4244. "windturbineid": "QG01_30",
  4245. "stationid": "QS_FDC",
  4246. "timestamp": 1653034618868,
  4247. "stophours": 0.052640000000000006,
  4248. "onpowerhours": 0.0,
  4249. "standbyhours": 0.07252,
  4250. "starthours": 2.83304,
  4251. "onlinehours": 2.4906000000000006,
  4252. "faulthours": 0.0,
  4253. "maintainhours": 0.0,
  4254. "offlinehours": 0.0,
  4255. "powerfactor": -0.699999988079071,
  4256. "averageWindSpeedDay": 4.1644697189331055
  4257. },
  4258. {
  4259. "id": "SG01_062022520",
  4260. "windturbineid": "SG01_06",
  4261. "stationid": "SBQ_FDC",
  4262. "timestamp": 1653034618868,
  4263. "stophours": 0.0,
  4264. "onpowerhours": 0.03864,
  4265. "standbyhours": 11.37668,
  4266. "starthours": 0.9158800000000001,
  4267. "onlinehours": 2.9890000000000003,
  4268. "faulthours": 0.0,
  4269. "maintainhours": 0.0,
  4270. "offlinehours": 0.0,
  4271. "powerfactor": 0.5,
  4272. "averageWindSpeedDay": 1.813393473625183
  4273. },
  4274. {
  4275. "id": "QG01_312022520",
  4276. "windturbineid": "QG01_31",
  4277. "stationid": "QS_FDC",
  4278. "timestamp": 1653034618868,
  4279. "stophours": 0.0,
  4280. "onpowerhours": 0.0,
  4281. "standbyhours": 0.0,
  4282. "starthours": 3.42328,
  4283. "onlinehours": 2.13192,
  4284. "faulthours": 0.0,
  4285. "maintainhours": 0.0,
  4286. "offlinehours": 0.0,
  4287. "powerfactor": -0.6000000238418579,
  4288. "averageWindSpeedDay": 3.492893934249878
  4289. },
  4290. {
  4291. "id": "SG01_092022520",
  4292. "windturbineid": "SG01_09",
  4293. "stationid": "SBQ_FDC",
  4294. "timestamp": 1653034618868,
  4295. "stophours": 0.0,
  4296. "onpowerhours": 0.20300000000000004,
  4297. "standbyhours": 10.657079999999999,
  4298. "starthours": 0.4242000000000001,
  4299. "onlinehours": 1.79004,
  4300. "faulthours": 0.0,
  4301. "maintainhours": 0.0,
  4302. "offlinehours": 0.0,
  4303. "powerfactor": 1.0,
  4304. "averageWindSpeedDay": 2.1282124519348145
  4305. },
  4306. {
  4307. "id": "QG01_322022520",
  4308. "windturbineid": "QG01_32",
  4309. "stationid": "QS_FDC",
  4310. "timestamp": 1653034618868,
  4311. "stophours": 0.04424,
  4312. "onpowerhours": 0.0,
  4313. "standbyhours": 0.01708,
  4314. "starthours": 3.3406800000000003,
  4315. "onlinehours": 4.944240000000001,
  4316. "faulthours": 0.0,
  4317. "maintainhours": 0.0,
  4318. "offlinehours": 0.0,
  4319. "powerfactor": 0.8999999761581421,
  4320. "averageWindSpeedDay": 3.271575689315796
  4321. },
  4322. {
  4323. "id": "SG01_082022520",
  4324. "windturbineid": "SG01_08",
  4325. "stationid": "SBQ_FDC",
  4326. "timestamp": 1653034618868,
  4327. "stophours": 0.0,
  4328. "onpowerhours": 0.091,
  4329. "standbyhours": 10.59492,
  4330. "starthours": 0.2268,
  4331. "onlinehours": 1.8970000000000002,
  4332. "faulthours": 0.0,
  4333. "maintainhours": 0.0,
  4334. "offlinehours": 0.0,
  4335. "powerfactor": 0.7500000596046448,
  4336. "averageWindSpeedDay": 1.8072967529296875
  4337. },
  4338. {
  4339. "id": "SG01_102022520",
  4340. "windturbineid": "SG01_10",
  4341. "stationid": "SBQ_FDC",
  4342. "timestamp": 1653034618868,
  4343. "stophours": 0.0,
  4344. "onpowerhours": 0.07252,
  4345. "standbyhours": 11.4814,
  4346. "starthours": 0.8321600000000001,
  4347. "onlinehours": 1.8796400000000002,
  4348. "faulthours": 0.0,
  4349. "maintainhours": 0.0,
  4350. "offlinehours": 0.0,
  4351. "powerfactor": 0.0,
  4352. "averageWindSpeedDay": 2.1498560905456543
  4353. },
  4354. {
  4355. "id": "SG01_122022520",
  4356. "windturbineid": "SG01_12",
  4357. "stationid": "SBQ_FDC",
  4358. "timestamp": 1653034618868,
  4359. "stophours": 0.0,
  4360. "onpowerhours": 0.02408,
  4361. "standbyhours": 1.41008,
  4362. "starthours": 0.19348,
  4363. "onlinehours": 0.028000000000000004,
  4364. "faulthours": 0.0,
  4365. "maintainhours": 0.0,
  4366. "offlinehours": 0.0,
  4367. "powerfactor": 0.7500000596046448,
  4368. "averageWindSpeedDay": 1.9881892204284668
  4369. },
  4370. {
  4371. "id": "SG01_112022520",
  4372. "windturbineid": "SG01_11",
  4373. "stationid": "SBQ_FDC",
  4374. "timestamp": 1653034618868,
  4375. "stophours": 0.0,
  4376. "onpowerhours": 0.16828,
  4377. "standbyhours": 11.739840000000003,
  4378. "starthours": 1.0001600000000002,
  4379. "onlinehours": 2.4430000000000005,
  4380. "faulthours": 0.0,
  4381. "maintainhours": 0.0,
  4382. "offlinehours": 0.0,
  4383. "powerfactor": 0.7500000596046448,
  4384. "averageWindSpeedDay": 1.9962599277496338
  4385. },
  4386. {
  4387. "id": "SG01_142022520",
  4388. "windturbineid": "SG01_14",
  4389. "stationid": "SBQ_FDC",
  4390. "timestamp": 1653034618868,
  4391. "stophours": 0.0,
  4392. "onpowerhours": 0.37884,
  4393. "standbyhours": 9.19576,
  4394. "starthours": 1.96028,
  4395. "onlinehours": 2.25176,
  4396. "faulthours": 0.0,
  4397. "maintainhours": 0.0,
  4398. "offlinehours": 0.0,
  4399. "powerfactor": 0.7500000596046448,
  4400. "averageWindSpeedDay": 2.1189730167388916
  4401. },
  4402. {
  4403. "id": "SG01_132022520",
  4404. "windturbineid": "SG01_13",
  4405. "stationid": "SBQ_FDC",
  4406. "timestamp": 1653034618868,
  4407. "stophours": 0.0,
  4408. "onpowerhours": 0.07364000000000001,
  4409. "standbyhours": 10.86988,
  4410. "starthours": 0.21616000000000002,
  4411. "onlinehours": 1.30928,
  4412. "faulthours": 0.0,
  4413. "maintainhours": 0.0,
  4414. "offlinehours": 0.0,
  4415. "powerfactor": 1.0,
  4416. "averageWindSpeedDay": 1.9510968923568726
  4417. },
  4418. {
  4419. "id": "SG01_162022520",
  4420. "windturbineid": "SG01_16",
  4421. "stationid": "SBQ_FDC",
  4422. "timestamp": 1653034618868,
  4423. "stophours": 0.0,
  4424. "onpowerhours": 0.09324,
  4425. "standbyhours": 7.264880000000001,
  4426. "starthours": 1.21184,
  4427. "onlinehours": 2.5482800000000005,
  4428. "faulthours": 0.0,
  4429. "maintainhours": 0.0,
  4430. "offlinehours": 0.0,
  4431. "powerfactor": 0.7500000596046448,
  4432. "averageWindSpeedDay": 2.116687059402466
  4433. },
  4434. {
  4435. "id": "SG01_152022520",
  4436. "windturbineid": "SG01_15",
  4437. "stationid": "SBQ_FDC",
  4438. "timestamp": 1653034618868,
  4439. "stophours": 0.0,
  4440. "onpowerhours": 0.11368,
  4441. "standbyhours": 10.814160000000001,
  4442. "starthours": 0.8044399999999999,
  4443. "onlinehours": 2.1238000000000006,
  4444. "faulthours": 0.0,
  4445. "maintainhours": 0.0,
  4446. "offlinehours": 0.0,
  4447. "powerfactor": 1.0,
  4448. "averageWindSpeedDay": 2.0487208366394043
  4449. },
  4450. {
  4451. "id": "NG01_742022520",
  4452. "windturbineid": "NG01_74",
  4453. "stationid": "NSS_FDC",
  4454. "timestamp": 1653034618868,
  4455. "stophours": 0.0,
  4456. "onpowerhours": 0.06496,
  4457. "standbyhours": 0.60004,
  4458. "starthours": 0.16772000000000004,
  4459. "onlinehours": 0.52556,
  4460. "faulthours": 0.0,
  4461. "maintainhours": 10.180240000000001,
  4462. "offlinehours": 0.0,
  4463. "powerfactor": -0.9233333468437195,
  4464. "averageWindSpeedDay": 3.302039384841919
  4465. },
  4466. {
  4467. "id": "NG01_752022520",
  4468. "windturbineid": "NG01_75",
  4469. "stationid": "NSS_FDC",
  4470. "timestamp": 1653034618868,
  4471. "stophours": 0.0,
  4472. "onpowerhours": 0.06552,
  4473. "standbyhours": 0.7562800000000001,
  4474. "starthours": 0.14307999999999998,
  4475. "onlinehours": 0.15148,
  4476. "faulthours": 0.0,
  4477. "maintainhours": 10.8458,
  4478. "offlinehours": 0.0,
  4479. "powerfactor": -0.9533333778381348,
  4480. "averageWindSpeedDay": 3.358893632888794
  4481. },
  4482. {
  4483. "id": "NG01_722022520",
  4484. "windturbineid": "NG01_72",
  4485. "stationid": "NSS_FDC",
  4486. "timestamp": 1653034618868,
  4487. "stophours": 0.0,
  4488. "onpowerhours": 0.10948000000000001,
  4489. "standbyhours": 1.28576,
  4490. "starthours": 0.15932000000000002,
  4491. "onlinehours": 3.3628,
  4492. "faulthours": 0.0,
  4493. "maintainhours": 10.710560000000001,
  4494. "offlinehours": 0.0,
  4495. "powerfactor": -0.6666666865348816,
  4496. "averageWindSpeedDay": 2.9287729263305664
  4497. },
  4498. {
  4499. "id": "NG01_732022520",
  4500. "windturbineid": "NG01_73",
  4501. "stationid": "NSS_FDC",
  4502. "timestamp": 1653034618868,
  4503. "stophours": 0.0,
  4504. "onpowerhours": 0.09996000000000002,
  4505. "standbyhours": 2.2428,
  4506. "starthours": 0.16296000000000002,
  4507. "onlinehours": 2.5466,
  4508. "faulthours": 0.0,
  4509. "maintainhours": 11.212880000000002,
  4510. "offlinehours": 0.0,
  4511. "powerfactor": -0.8033332824707031,
  4512. "averageWindSpeedDay": 3.0350522994995117
  4513. },
  4514. {
  4515. "id": "NG01_782022520",
  4516. "windturbineid": "NG01_78",
  4517. "stationid": "NSS_FDC",
  4518. "timestamp": 1653034618868,
  4519. "stophours": 0.0,
  4520. "onpowerhours": 0.061040000000000004,
  4521. "standbyhours": 1.4352800000000001,
  4522. "starthours": 0.10640000000000001,
  4523. "onlinehours": 3.9622800000000002,
  4524. "faulthours": 0.0,
  4525. "maintainhours": 10.58568,
  4526. "offlinehours": 0.0,
  4527. "powerfactor": 0.30666667222976685,
  4528. "averageWindSpeedDay": 3.2703092098236084
  4529. },
  4530. {
  4531. "id": "NG01_792022520",
  4532. "windturbineid": "NG01_79",
  4533. "stationid": "NSS_FDC",
  4534. "timestamp": 1653034618868,
  4535. "stophours": 0.0,
  4536. "onpowerhours": 0.08008000000000001,
  4537. "standbyhours": 0.80304,
  4538. "starthours": 0.20384000000000002,
  4539. "onlinehours": 3.44148,
  4540. "faulthours": 0.0,
  4541. "maintainhours": 11.12888,
  4542. "offlinehours": 0.0,
  4543. "powerfactor": -0.3166666626930237,
  4544. "averageWindSpeedDay": 2.8665621280670166
  4545. },
  4546. {
  4547. "id": "NG01_762022520",
  4548. "windturbineid": "NG01_76",
  4549. "stationid": "NSS_FDC",
  4550. "timestamp": 1653034618868,
  4551. "stophours": 0.0,
  4552. "onpowerhours": 0.01736,
  4553. "standbyhours": 3.6450400000000003,
  4554. "starthours": 0.057120000000000004,
  4555. "onlinehours": 0.052640000000000006,
  4556. "faulthours": 3.1925600000000003,
  4557. "maintainhours": 4.88152,
  4558. "offlinehours": 0.0,
  4559. "powerfactor": -1.0,
  4560. "averageWindSpeedDay": 3.686993360519409
  4561. },
  4562. {
  4563. "id": "NG01_772022520",
  4564. "windturbineid": "NG01_77",
  4565. "stationid": "NSS_FDC",
  4566. "timestamp": 1653034618868,
  4567. "stophours": 0.0,
  4568. "onpowerhours": 0.031920000000000004,
  4569. "standbyhours": 0.6171200000000001,
  4570. "starthours": 0.06384000000000001,
  4571. "onlinehours": 0.59164,
  4572. "faulthours": 0.0,
  4573. "maintainhours": 10.2508,
  4574. "offlinehours": 0.0,
  4575. "powerfactor": 0.2566666603088379,
  4576. "averageWindSpeedDay": 3.4053637981414795
  4577. },
  4578. {
  4579. "id": "NG01_812022520",
  4580. "windturbineid": "NG01_81",
  4581. "stationid": "NSS_FDC",
  4582. "timestamp": 1653034618868,
  4583. "stophours": 0.0,
  4584. "onpowerhours": 0.08708,
  4585. "standbyhours": 0.6958,
  4586. "starthours": 0.31584,
  4587. "onlinehours": 0.0966,
  4588. "faulthours": 0.0,
  4589. "maintainhours": 11.5444,
  4590. "offlinehours": 0.0,
  4591. "powerfactor": -1.0,
  4592. "averageWindSpeedDay": 2.9972898960113525
  4593. },
  4594. {
  4595. "id": "QG01_662022520",
  4596. "windturbineid": "QG01_66",
  4597. "stationid": "QS_FDC",
  4598. "timestamp": 1653034618868,
  4599. "stophours": 0.050960000000000005,
  4600. "onpowerhours": 0.0,
  4601. "standbyhours": 0.40936,
  4602. "starthours": 5.162920000000001,
  4603. "onlinehours": 3.255000000000001,
  4604. "faulthours": 6.901160000000001,
  4605. "maintainhours": 0.0,
  4606. "offlinehours": 0.0,
  4607. "powerfactor": -1.0,
  4608. "averageWindSpeedDay": 3.527909278869629
  4609. },
  4610. {
  4611. "id": "NG01_822022520",
  4612. "windturbineid": "NG01_82",
  4613. "stationid": "NSS_FDC",
  4614. "timestamp": 1653034618868,
  4615. "stophours": 0.0,
  4616. "onpowerhours": 0.016800000000000002,
  4617. "standbyhours": 0.0966,
  4618. "starthours": 0.00952,
  4619. "onlinehours": 0.0,
  4620. "faulthours": 0.0,
  4621. "maintainhours": 11.585,
  4622. "offlinehours": 0.0,
  4623. "powerfactor": 0.8633334040641785,
  4624. "averageWindSpeedDay": 2.935952663421631
  4625. },
  4626. {
  4627. "id": "QG01_672022520",
  4628. "windturbineid": "QG01_67",
  4629. "stationid": "QS_FDC",
  4630. "timestamp": 1653034618868,
  4631. "stophours": 0.0,
  4632. "onpowerhours": 0.0,
  4633. "standbyhours": 2.23664,
  4634. "starthours": 2.3814,
  4635. "onlinehours": 3.4409200000000006,
  4636. "faulthours": 0.0,
  4637. "maintainhours": 0.0,
  4638. "offlinehours": 0.0,
  4639. "powerfactor": 697.0,
  4640. "averageWindSpeedDay": 4.706727504730225
  4641. },
  4642. {
  4643. "id": "QG01_682022520",
  4644. "windturbineid": "QG01_68",
  4645. "stationid": "QS_FDC",
  4646. "timestamp": 1653034618868,
  4647. "stophours": 0.0,
  4648. "onpowerhours": 0.0,
  4649. "standbyhours": 1.45684,
  4650. "starthours": 2.4558800000000005,
  4651. "onlinehours": 1.3829200000000004,
  4652. "faulthours": 0.0,
  4653. "maintainhours": 0.0,
  4654. "offlinehours": 0.0,
  4655. "powerfactor": -673.0,
  4656. "averageWindSpeedDay": 4.896540641784668
  4657. },
  4658. {
  4659. "id": "NG01_802022520",
  4660. "windturbineid": "NG01_80",
  4661. "stationid": "NSS_FDC",
  4662. "timestamp": 1653034618868,
  4663. "stophours": 0.0,
  4664. "onpowerhours": 0.013160000000000002,
  4665. "standbyhours": 0.37996,
  4666. "starthours": 0.01344,
  4667. "onlinehours": 0.28784000000000004,
  4668. "faulthours": 0.0,
  4669. "maintainhours": 11.155480000000003,
  4670. "offlinehours": 0.0,
  4671. "powerfactor": -0.8166666626930237,
  4672. "averageWindSpeedDay": 3.2814576625823975
  4673. },
  4674. {
  4675. "id": "QG01_692022520",
  4676. "windturbineid": "QG01_69",
  4677. "stationid": "QS_FDC",
  4678. "timestamp": 1653034618868,
  4679. "stophours": 0.0,
  4680. "onpowerhours": 0.0,
  4681. "standbyhours": 0.7876400000000001,
  4682. "starthours": 2.31756,
  4683. "onlinehours": 2.0585600000000004,
  4684. "faulthours": 0.0,
  4685. "maintainhours": 0.0,
  4686. "offlinehours": 0.0,
  4687. "powerfactor": -799.0,
  4688. "averageWindSpeedDay": 5.330904483795166
  4689. },
  4690. {
  4691. "id": "QG01_622022520",
  4692. "windturbineid": "QG01_62",
  4693. "stationid": "QS_FDC",
  4694. "timestamp": 1653034618868,
  4695. "stophours": 0.14028,
  4696. "onpowerhours": 0.0,
  4697. "standbyhours": 3.38912,
  4698. "starthours": 3.6792000000000007,
  4699. "onlinehours": 4.654160000000002,
  4700. "faulthours": 0.0,
  4701. "maintainhours": 0.0,
  4702. "offlinehours": 0.0,
  4703. "powerfactor": -0.699999988079071,
  4704. "averageWindSpeedDay": 3.534397602081299
  4705. },
  4706. {
  4707. "id": "SG01_182022520",
  4708. "windturbineid": "SG01_18",
  4709. "stationid": "SBQ_FDC",
  4710. "timestamp": 1653034618868,
  4711. "stophours": 0.0,
  4712. "onpowerhours": 0.09968,
  4713. "standbyhours": 10.8626,
  4714. "starthours": 0.13384000000000001,
  4715. "onlinehours": 2.4634400000000003,
  4716. "faulthours": 0.0,
  4717. "maintainhours": 0.0,
  4718. "offlinehours": 0.0,
  4719. "powerfactor": 1.0,
  4720. "averageWindSpeedDay": 2.0134730339050293
  4721. },
  4722. {
  4723. "id": "QG01_632022520",
  4724. "windturbineid": "QG01_63",
  4725. "stationid": "QS_FDC",
  4726. "timestamp": 1653034618868,
  4727. "stophours": 0.014280000000000001,
  4728. "onpowerhours": 0.0,
  4729. "standbyhours": 1.03208,
  4730. "starthours": 5.867679999999999,
  4731. "onlinehours": 4.7972399999999995,
  4732. "faulthours": 0.04592,
  4733. "maintainhours": 0.0,
  4734. "offlinehours": 0.0,
  4735. "powerfactor": -0.5,
  4736. "averageWindSpeedDay": 3.6127703189849854
  4737. },
  4738. {
  4739. "id": "SG01_172022520",
  4740. "windturbineid": "SG01_17",
  4741. "stationid": "SBQ_FDC",
  4742. "timestamp": 1653034648145,
  4743. "stophours": 0.0,
  4744. "onpowerhours": 0.3318,
  4745. "standbyhours": 15.315160000000002,
  4746. "starthours": 0.23919755999999998,
  4747. "onlinehours": 0.20076000000000002,
  4748. "faulthours": 0.0,
  4749. "maintainhours": 0.0,
  4750. "offlinehours": 0.0,
  4751. "powerfactor": 1.0,
  4752. "averageWindSpeedDay": 2.099813222885132
  4753. },
  4754. {
  4755. "id": "QG01_642022520",
  4756. "windturbineid": "QG01_64",
  4757. "stationid": "QS_FDC",
  4758. "timestamp": 1653034618868,
  4759. "stophours": 0.00784,
  4760. "onpowerhours": 0.0,
  4761. "standbyhours": 0.47684000000000004,
  4762. "starthours": 5.177200000000001,
  4763. "onlinehours": 5.645919999999999,
  4764. "faulthours": 0.0,
  4765. "maintainhours": 0.0,
  4766. "offlinehours": 0.0,
  4767. "powerfactor": -0.699999988079071,
  4768. "averageWindSpeedDay": 4.032955646514893
  4769. },
  4770. {
  4771. "id": "QG01_652022520",
  4772. "windturbineid": "QG01_65",
  4773. "stationid": "QS_FDC",
  4774. "timestamp": 1653034618868,
  4775. "stophours": 0.03696,
  4776. "onpowerhours": 0.0,
  4777. "standbyhours": 1.8622800000000002,
  4778. "starthours": 4.71604,
  4779. "onlinehours": 4.8456800000000015,
  4780. "faulthours": 0.0,
  4781. "maintainhours": 0.0,
  4782. "offlinehours": 0.0,
  4783. "powerfactor": -0.699999988079071,
  4784. "averageWindSpeedDay": 3.660865068435669
  4785. },
  4786. {
  4787. "id": "SG01_192022520",
  4788. "windturbineid": "SG01_19",
  4789. "stationid": "SBQ_FDC",
  4790. "timestamp": 1653034618868,
  4791. "stophours": 0.0,
  4792. "onpowerhours": 0.12208000000000001,
  4793. "standbyhours": 10.57252,
  4794. "starthours": 0.8730400000000001,
  4795. "onlinehours": 1.6895200000000004,
  4796. "faulthours": 0.0,
  4797. "maintainhours": 0.0,
  4798. "offlinehours": 0.0,
  4799. "powerfactor": 0.9890000224113464,
  4800. "averageWindSpeedDay": 1.9751999378204346
  4801. },
  4802. {
  4803. "id": "QG01_602022520",
  4804. "windturbineid": "QG01_60",
  4805. "stationid": "QS_FDC",
  4806. "timestamp": 1653034618868,
  4807. "stophours": 0.01456,
  4808. "onpowerhours": 0.0,
  4809. "standbyhours": 0.69244,
  4810. "starthours": 4.417,
  4811. "onlinehours": 5.942160000000002,
  4812. "faulthours": 0.0,
  4813. "maintainhours": 0.0,
  4814. "offlinehours": 0.0,
  4815. "powerfactor": -0.6000000238418579,
  4816. "averageWindSpeedDay": 3.6446962356567383
  4817. },
  4818. {
  4819. "id": "QG01_612022520",
  4820. "windturbineid": "QG01_61",
  4821. "stationid": "QS_FDC",
  4822. "timestamp": 1653034618868,
  4823. "stophours": 0.054599999999999996,
  4824. "onpowerhours": 0.0,
  4825. "standbyhours": 1.38684,
  4826. "starthours": 4.02752,
  4827. "onlinehours": 5.988360000000002,
  4828. "faulthours": 0.0,
  4829. "maintainhours": 0.0,
  4830. "offlinehours": 0.0,
  4831. "powerfactor": -0.6000000238418579,
  4832. "averageWindSpeedDay": 3.595571517944336
  4833. },
  4834. {
  4835. "id": "SG01_212022520",
  4836. "windturbineid": "SG01_21",
  4837. "stationid": "SBQ_FDC",
  4838. "timestamp": 1653034618868,
  4839. "stophours": 0.0,
  4840. "onpowerhours": 0.07028000000000001,
  4841. "standbyhours": 9.798599999999999,
  4842. "starthours": 0.7946400000000002,
  4843. "onlinehours": 2.22712,
  4844. "faulthours": 0.0,
  4845. "maintainhours": 0.0,
  4846. "offlinehours": 0.0,
  4847. "powerfactor": 1.0,
  4848. "averageWindSpeedDay": 2.0471229553222656
  4849. },
  4850. {
  4851. "id": "SG01_202022520",
  4852. "windturbineid": "SG01_20",
  4853. "stationid": "SBQ_FDC",
  4854. "timestamp": 1653034618868,
  4855. "stophours": 0.0,
  4856. "onpowerhours": 0.0616,
  4857. "standbyhours": 11.51332,
  4858. "starthours": 0.13244,
  4859. "onlinehours": 4.373600000000001,
  4860. "faulthours": 0.0,
  4861. "maintainhours": 0.0,
  4862. "offlinehours": 0.0,
  4863. "powerfactor": 0.7500000596046448,
  4864. "averageWindSpeedDay": 2.0252997875213623
  4865. },
  4866. {
  4867. "id": "SG01_232022520",
  4868. "windturbineid": "SG01_23",
  4869. "stationid": "SBQ_FDC",
  4870. "timestamp": 1653034618868,
  4871. "stophours": 0.0,
  4872. "onpowerhours": 0.0,
  4873. "standbyhours": 0.0,
  4874. "starthours": 0.0,
  4875. "onlinehours": 0.0,
  4876. "faulthours": 0.0,
  4877. "maintainhours": 0.0,
  4878. "offlinehours": 0.0,
  4879. "powerfactor": 1.0,
  4880. "averageWindSpeedDay": 1.9908177852630615
  4881. },
  4882. {
  4883. "id": "SG01_222022520",
  4884. "windturbineid": "SG01_22",
  4885. "stationid": "SBQ_FDC",
  4886. "timestamp": 1653034618868,
  4887. "stophours": 0.0,
  4888. "onpowerhours": 0.06412000000000001,
  4889. "standbyhours": 7.948080000000001,
  4890. "starthours": 0.1232,
  4891. "onlinehours": 2.53596,
  4892. "faulthours": 0.0,
  4893. "maintainhours": 0.0,
  4894. "offlinehours": 0.0,
  4895. "powerfactor": 0.7500000596046448,
  4896. "averageWindSpeedDay": 2.17972993850708
  4897. },
  4898. {
  4899. "id": "SG01_252022520",
  4900. "windturbineid": "SG01_25",
  4901. "stationid": "SBQ_FDC",
  4902. "timestamp": 1653034618868,
  4903. "stophours": 0.0,
  4904. "onpowerhours": 0.05348,
  4905. "standbyhours": 9.604840000000001,
  4906. "starthours": 0.19432,
  4907. "onlinehours": 1.7234,
  4908. "faulthours": 0.0,
  4909. "maintainhours": 0.0,
  4910. "offlinehours": 0.0,
  4911. "powerfactor": 0.7500000596046448,
  4912. "averageWindSpeedDay": 1.8875921964645386
  4913. },
  4914. {
  4915. "id": "SG01_242022520",
  4916. "windturbineid": "SG01_24",
  4917. "stationid": "SBQ_FDC",
  4918. "timestamp": 1653034618868,
  4919. "stophours": 0.0,
  4920. "onpowerhours": 0.18339999999999998,
  4921. "standbyhours": 9.53736,
  4922. "starthours": 0.25284,
  4923. "onlinehours": 4.0684,
  4924. "faulthours": 0.0,
  4925. "maintainhours": 0.0,
  4926. "offlinehours": 0.0,
  4927. "powerfactor": 0.7500000596046448,
  4928. "averageWindSpeedDay": 2.0950214862823486
  4929. },
  4930. {
  4931. "id": "SG01_272022520",
  4932. "windturbineid": "SG01_27",
  4933. "stationid": "SBQ_FDC",
  4934. "timestamp": 1653034618868,
  4935. "stophours": 0.0,
  4936. "onpowerhours": 0.035840000000000004,
  4937. "standbyhours": 8.8788,
  4938. "starthours": 0.32424000000000003,
  4939. "onlinehours": 1.77772,
  4940. "faulthours": 0.0,
  4941. "maintainhours": 0.0,
  4942. "offlinehours": 0.0,
  4943. "powerfactor": 1.0,
  4944. "averageWindSpeedDay": 2.059142827987671
  4945. },
  4946. {
  4947. "id": "SG01_262022520",
  4948. "windturbineid": "SG01_26",
  4949. "stationid": "SBQ_FDC",
  4950. "timestamp": 1653034618868,
  4951. "stophours": 0.0,
  4952. "onpowerhours": 0.17024,
  4953. "standbyhours": 8.87964,
  4954. "starthours": 0.7999600000000001,
  4955. "onlinehours": 1.3215999999999999,
  4956. "faulthours": 0.0,
  4957. "maintainhours": 0.0,
  4958. "offlinehours": 0.0,
  4959. "powerfactor": 0.17900000512599945,
  4960. "averageWindSpeedDay": 1.9421675205230713
  4961. },
  4962. {
  4963. "id": "NG01_852022520",
  4964. "windturbineid": "NG01_85",
  4965. "stationid": "NSS_FDC",
  4966. "timestamp": 1653034618868,
  4967. "stophours": 0.0,
  4968. "onpowerhours": 0.0,
  4969. "standbyhours": 5.881960000000001,
  4970. "starthours": 0.0,
  4971. "onlinehours": 0.0,
  4972. "faulthours": 0.02828,
  4973. "maintainhours": 6.261080000000001,
  4974. "offlinehours": 0.0,
  4975. "powerfactor": 0.0,
  4976. "averageWindSpeedDay": 3.1487631797790527
  4977. },
  4978. {
  4979. "id": "NG01_862022520",
  4980. "windturbineid": "NG01_86",
  4981. "stationid": "NSS_FDC",
  4982. "timestamp": 1653034618868,
  4983. "stophours": 0.0,
  4984. "onpowerhours": 0.0,
  4985. "standbyhours": 6.43916,
  4986. "starthours": 0.0,
  4987. "onlinehours": 0.0,
  4988. "faulthours": 0.06328,
  4989. "maintainhours": 5.61848,
  4990. "offlinehours": 0.0,
  4991. "powerfactor": 0.0,
  4992. "averageWindSpeedDay": 2.789384365081787
  4993. },
  4994. {
  4995. "id": "NG01_832022520",
  4996. "windturbineid": "NG01_83",
  4997. "stationid": "NSS_FDC",
  4998. "timestamp": 1653034618868,
  4999. "stophours": 0.0,
  5000. "onpowerhours": 0.01708,
  5001. "standbyhours": 6.21516,
  5002. "starthours": 0.05544,
  5003. "onlinehours": 0.0,
  5004. "faulthours": 0.0,
  5005. "maintainhours": 6.05416,
  5006. "offlinehours": 0.0,
  5007. "powerfactor": 0.33666667342185974,
  5008. "averageWindSpeedDay": 2.798171043395996
  5009. },
  5010. {
  5011. "id": "NG01_842022520",
  5012. "windturbineid": "NG01_84",
  5013. "stationid": "NSS_FDC",
  5014. "timestamp": 1653034618868,
  5015. "stophours": 0.0,
  5016. "onpowerhours": 0.016800000000000002,
  5017. "standbyhours": 5.81448,
  5018. "starthours": 0.01204,
  5019. "onlinehours": 0.0,
  5020. "faulthours": 0.028840000000000005,
  5021. "maintainhours": 5.565840000000001,
  5022. "offlinehours": 0.0,
  5023. "powerfactor": -0.030000001192092896,
  5024. "averageWindSpeedDay": 3.2133007049560547
  5025. },
  5026. {
  5027. "id": "NG01_892022520",
  5028. "windturbineid": "NG01_89",
  5029. "stationid": "NSS_FDC",
  5030. "timestamp": 1653034618868,
  5031. "stophours": 0.0,
  5032. "onpowerhours": 0.08372,
  5033. "standbyhours": 7.29148,
  5034. "starthours": 0.0826,
  5035. "onlinehours": 0.09240000000000001,
  5036. "faulthours": 0.06524,
  5037. "maintainhours": 5.876080000000001,
  5038. "offlinehours": 0.0,
  5039. "powerfactor": 0.0,
  5040. "averageWindSpeedDay": 2.737128496170044
  5041. },
  5042. {
  5043. "id": "NG01_872022520",
  5044. "windturbineid": "NG01_87",
  5045. "stationid": "NSS_FDC",
  5046. "timestamp": 1653034618868,
  5047. "stophours": 0.0,
  5048. "onpowerhours": 0.0658,
  5049. "standbyhours": 0.7912800000000001,
  5050. "starthours": 0.3318,
  5051. "onlinehours": 0.10668,
  5052. "faulthours": 0.0,
  5053. "maintainhours": 10.81192,
  5054. "offlinehours": 0.0,
  5055. "powerfactor": 0.0,
  5056. "averageWindSpeedDay": 2.719242811203003
  5057. },
  5058. {
  5059. "id": "NG01_882022520",
  5060. "windturbineid": "NG01_88",
  5061. "stationid": "NSS_FDC",
  5062. "timestamp": 1653034618868,
  5063. "stophours": 0.0,
  5064. "onpowerhours": 0.0,
  5065. "standbyhours": 6.25044,
  5066. "starthours": 0.0,
  5067. "onlinehours": 0.0,
  5068. "faulthours": 0.06412000000000001,
  5069. "maintainhours": 5.4488,
  5070. "offlinehours": 0.0,
  5071. "powerfactor": 0.0,
  5072. "averageWindSpeedDay": 2.9889492988586426
  5073. },
  5074. {
  5075. "id": "QG01_592022520",
  5076. "windturbineid": "QG01_59",
  5077. "stationid": "QS_FDC",
  5078. "timestamp": 1653034618868,
  5079. "stophours": 0.04816,
  5080. "onpowerhours": 0.0,
  5081. "standbyhours": 0.9466800000000002,
  5082. "starthours": 4.5234,
  5083. "onlinehours": 5.495559999999999,
  5084. "faulthours": 0.0,
  5085. "maintainhours": 0.0,
  5086. "offlinehours": 0.70308,
  5087. "powerfactor": -0.800000011920929,
  5088. "averageWindSpeedDay": 3.550875425338745
  5089. },
  5090. {
  5091. "id": "NG01_922022520",
  5092. "windturbineid": "NG01_92",
  5093. "stationid": "NSS_FDC",
  5094. "timestamp": 1653034634111,
  5095. "stophours": 0.0,
  5096. "onpowerhours": 0.021840000000000002,
  5097. "standbyhours": 5.986400000000001,
  5098. "starthours": 0.059640000000000006,
  5099. "onlinehours": 0.004268040000000001,
  5100. "faulthours": 0.028840000000000005,
  5101. "maintainhours": 6.19108,
  5102. "offlinehours": 0.0,
  5103. "powerfactor": -0.18333333730697632,
  5104. "averageWindSpeedDay": 2.6677324771881104
  5105. },
  5106. {
  5107. "id": "QG01_552022520",
  5108. "windturbineid": "QG01_55",
  5109. "stationid": "QS_FDC",
  5110. "timestamp": 1653034618868,
  5111. "stophours": 0.09492,
  5112. "onpowerhours": 0.0,
  5113. "standbyhours": 0.13356,
  5114. "starthours": 4.174800000000001,
  5115. "onlinehours": 7.136079999999998,
  5116. "faulthours": 0.0,
  5117. "maintainhours": 0.0,
  5118. "offlinehours": 0.0,
  5119. "powerfactor": -0.5,
  5120. "averageWindSpeedDay": 3.7199792861938477
  5121. },
  5122. {
  5123. "id": "NG01_932022520",
  5124. "windturbineid": "NG01_93",
  5125. "stationid": "NSS_FDC",
  5126. "timestamp": 1653034628075,
  5127. "stophours": 0.0,
  5128. "onpowerhours": 0.01904,
  5129. "standbyhours": 6.17797796,
  5130. "starthours": 0.05600000000000001,
  5131. "onlinehours": 0.0,
  5132. "faulthours": 0.06636,
  5133. "maintainhours": 5.996200000000001,
  5134. "offlinehours": 0.0,
  5135. "powerfactor": 0.0,
  5136. "averageWindSpeedDay": 2.9283154010772705
  5137. },
  5138. {
  5139. "id": "QG01_562022520",
  5140. "windturbineid": "QG01_56",
  5141. "stationid": "QS_FDC",
  5142. "timestamp": 1653034618868,
  5143. "stophours": 0.0,
  5144. "onpowerhours": 0.0,
  5145. "standbyhours": 0.030240000000000003,
  5146. "starthours": 0.056560000000000006,
  5147. "onlinehours": 0.0014000000000000002,
  5148. "faulthours": 5.3494,
  5149. "maintainhours": 0.0,
  5150. "offlinehours": 0.9293200000000001,
  5151. "powerfactor": -0.6000000238418579,
  5152. "averageWindSpeedDay": 4.092482089996338
  5153. },
  5154. {
  5155. "id": "NG01_902022520",
  5156. "windturbineid": "NG01_90",
  5157. "stationid": "NSS_FDC",
  5158. "timestamp": 1653034618868,
  5159. "stophours": 0.0,
  5160. "onpowerhours": 0.0,
  5161. "standbyhours": 5.6982800000000005,
  5162. "starthours": 0.0,
  5163. "onlinehours": 0.0,
  5164. "faulthours": 0.03416,
  5165. "maintainhours": 6.309240000000001,
  5166. "offlinehours": 0.0,
  5167. "powerfactor": -3.0,
  5168. "averageWindSpeedDay": 2.5427405834198
  5169. },
  5170. {
  5171. "id": "QG01_572022520",
  5172. "windturbineid": "QG01_57",
  5173. "stationid": "QS_FDC",
  5174. "timestamp": 1653034618868,
  5175. "stophours": 0.011760000000000001,
  5176. "onpowerhours": 0.0,
  5177. "standbyhours": 1.1549999999999998,
  5178. "starthours": 4.2126,
  5179. "onlinehours": 4.327960000000001,
  5180. "faulthours": 0.48468000000000006,
  5181. "maintainhours": 0.0,
  5182. "offlinehours": 0.70224,
  5183. "powerfactor": -0.699999988079071,
  5184. "averageWindSpeedDay": 3.811225652694702
  5185. },
  5186. {
  5187. "id": "NG01_912022520",
  5188. "windturbineid": "NG01_91",
  5189. "stationid": "NSS_FDC",
  5190. "timestamp": 1653034628075,
  5191. "stophours": 0.0,
  5192. "onpowerhours": 0.0,
  5193. "standbyhours": 5.890977960000001,
  5194. "starthours": 0.0,
  5195. "onlinehours": 0.0,
  5196. "faulthours": 0.06440000000000001,
  5197. "maintainhours": 6.35292,
  5198. "offlinehours": 0.0,
  5199. "powerfactor": -1.0,
  5200. "averageWindSpeedDay": 2.6625478267669678
  5201. },
  5202. {
  5203. "id": "QG01_582022520",
  5204. "windturbineid": "QG01_58",
  5205. "stationid": "QS_FDC",
  5206. "timestamp": 1653034618868,
  5207. "stophours": 0.02212,
  5208. "onpowerhours": 0.0,
  5209. "standbyhours": 1.3599600000000003,
  5210. "starthours": 4.66256,
  5211. "onlinehours": 4.99324,
  5212. "faulthours": 0.0,
  5213. "maintainhours": 0.0,
  5214. "offlinehours": 0.70224,
  5215. "powerfactor": -0.6000000238418579,
  5216. "averageWindSpeedDay": 3.8603501319885254
  5217. },
  5218. {
  5219. "id": "QG01_512022520",
  5220. "windturbineid": "QG01_51",
  5221. "stationid": "QS_FDC",
  5222. "timestamp": 1653034618868,
  5223. "stophours": 0.007280000000000001,
  5224. "onpowerhours": 0.0,
  5225. "standbyhours": 0.16548000000000002,
  5226. "starthours": 3.5313599999999994,
  5227. "onlinehours": 4.03088,
  5228. "faulthours": 0.0,
  5229. "maintainhours": 0.0,
  5230. "offlinehours": 0.0,
  5231. "powerfactor": -0.699999988079071,
  5232. "averageWindSpeedDay": 3.9390318393707275
  5233. },
  5234. {
  5235. "id": "SG01_292022520",
  5236. "windturbineid": "SG01_29",
  5237. "stationid": "SBQ_FDC",
  5238. "timestamp": 1653034618868,
  5239. "stophours": 0.0,
  5240. "onpowerhours": 0.06888000000000001,
  5241. "standbyhours": 8.62372,
  5242. "starthours": 0.4046,
  5243. "onlinehours": 2.7202,
  5244. "faulthours": 0.59192,
  5245. "maintainhours": 0.0,
  5246. "offlinehours": 0.0,
  5247. "powerfactor": 0.7500000596046448,
  5248. "averageWindSpeedDay": 2.143625020980835
  5249. },
  5250. {
  5251. "id": "QG01_522022520",
  5252. "windturbineid": "QG01_52",
  5253. "stationid": "QS_FDC",
  5254. "timestamp": 1653034618868,
  5255. "stophours": 0.05684,
  5256. "onpowerhours": 0.0,
  5257. "standbyhours": 0.79912,
  5258. "starthours": 2.0972,
  5259. "onlinehours": 1.02116,
  5260. "faulthours": 0.27384000000000003,
  5261. "maintainhours": 0.0,
  5262. "offlinehours": 0.0,
  5263. "powerfactor": -0.6000000238418579,
  5264. "averageWindSpeedDay": 3.662409782409668
  5265. },
  5266. {
  5267. "id": "SG01_282022520",
  5268. "windturbineid": "SG01_28",
  5269. "stationid": "SBQ_FDC",
  5270. "timestamp": 1653034618868,
  5271. "stophours": 0.0,
  5272. "onpowerhours": 0.19012,
  5273. "standbyhours": 9.77648,
  5274. "starthours": 1.29668,
  5275. "onlinehours": 2.49284,
  5276. "faulthours": 0.0,
  5277. "maintainhours": 0.0,
  5278. "offlinehours": 0.0,
  5279. "powerfactor": 1.0,
  5280. "averageWindSpeedDay": 2.0364277362823486
  5281. },
  5282. {
  5283. "id": "QG01_532022520",
  5284. "windturbineid": "QG01_53",
  5285. "stationid": "QS_FDC",
  5286. "timestamp": 1653034618868,
  5287. "stophours": 0.05264000000000001,
  5288. "onpowerhours": 0.0,
  5289. "standbyhours": 0.15036,
  5290. "starthours": 3.6153600000000004,
  5291. "onlinehours": 1.6326799999999997,
  5292. "faulthours": 0.0,
  5293. "maintainhours": 0.0,
  5294. "offlinehours": 0.0,
  5295. "powerfactor": 0.20000000298023224,
  5296. "averageWindSpeedDay": 3.8111226558685303
  5297. },
  5298. {
  5299. "id": "QG01_542022520",
  5300. "windturbineid": "QG01_54",
  5301. "stationid": "QS_FDC",
  5302. "timestamp": 1653034618868,
  5303. "stophours": 0.0061600000000000005,
  5304. "onpowerhours": 0.0,
  5305. "standbyhours": 0.23492000000000002,
  5306. "starthours": 2.10336,
  5307. "onlinehours": 1.7371200000000002,
  5308. "faulthours": 1.5302,
  5309. "maintainhours": 0.0,
  5310. "offlinehours": 0.0,
  5311. "powerfactor": -0.699999988079071,
  5312. "averageWindSpeedDay": 3.757054567337036
  5313. },
  5314. {
  5315. "id": "QG01_502022520",
  5316. "windturbineid": "QG01_50",
  5317. "stationid": "QS_FDC",
  5318. "timestamp": 1653034618868,
  5319. "stophours": 0.0,
  5320. "onpowerhours": 0.0,
  5321. "standbyhours": 0.0,
  5322. "starthours": 3.5991199999999997,
  5323. "onlinehours": 3.77048,
  5324. "faulthours": 0.0,
  5325. "maintainhours": 0.0,
  5326. "offlinehours": 0.0,
  5327. "powerfactor": -0.800000011920929,
  5328. "averageWindSpeedDay": 4.102986812591553
  5329. },
  5330. {
  5331. "id": "NG01_962022520",
  5332. "windturbineid": "NG01_96",
  5333. "stationid": "NSS_FDC",
  5334. "timestamp": 1653034618868,
  5335. "stophours": 0.0,
  5336. "onpowerhours": 0.017920000000000002,
  5337. "standbyhours": 6.23308,
  5338. "starthours": 0.014,
  5339. "onlinehours": 0.36736,
  5340. "faulthours": 0.02828,
  5341. "maintainhours": 6.223560000000001,
  5342. "offlinehours": 0.0,
  5343. "powerfactor": 0.0,
  5344. "averageWindSpeedDay": 2.694425582885742
  5345. },
  5346. {
  5347. "id": "NG01_972022520",
  5348. "windturbineid": "NG01_97",
  5349. "stationid": "NSS_FDC",
  5350. "timestamp": 1653034618868,
  5351. "stophours": 0.0,
  5352. "onpowerhours": 0.0,
  5353. "standbyhours": 6.66288,
  5354. "starthours": 0.0,
  5355. "onlinehours": 2.8000000000000003E-4,
  5356. "faulthours": 0.02828,
  5357. "maintainhours": 6.338080000000001,
  5358. "offlinehours": 0.0,
  5359. "powerfactor": 0.0,
  5360. "averageWindSpeedDay": 2.2799034118652344
  5361. },
  5362. {
  5363. "id": "NG01_942022520",
  5364. "windturbineid": "NG01_94",
  5365. "stationid": "NSS_FDC",
  5366. "timestamp": 1653034618868,
  5367. "stophours": 0.0,
  5368. "onpowerhours": 0.0,
  5369. "standbyhours": 7.0882000000000005,
  5370. "starthours": 0.0,
  5371. "onlinehours": 2.8000000000000003E-4,
  5372. "faulthours": 0.06692000000000001,
  5373. "maintainhours": 6.3238,
  5374. "offlinehours": 0.0,
  5375. "powerfactor": 0.0,
  5376. "averageWindSpeedDay": 2.2916743755340576
  5377. },
  5378. {
  5379. "id": "NG01_952022520",
  5380. "windturbineid": "NG01_95",
  5381. "stationid": "NSS_FDC",
  5382. "timestamp": 1653034618868,
  5383. "stophours": 0.0,
  5384. "onpowerhours": 0.0,
  5385. "standbyhours": 6.21936,
  5386. "starthours": 0.0,
  5387. "onlinehours": 0.0,
  5388. "faulthours": 0.07056,
  5389. "maintainhours": 6.432720000000001,
  5390. "offlinehours": 0.0,
  5391. "powerfactor": 0.0,
  5392. "averageWindSpeedDay": 2.8082613945007324
  5393. },
  5394. {
  5395. "id": "NG01_982022520",
  5396. "windturbineid": "NG01_98",
  5397. "stationid": "NSS_FDC",
  5398. "timestamp": 1653034618868,
  5399. "stophours": 0.0,
  5400. "onpowerhours": 0.02996,
  5401. "standbyhours": 2.4491599999999996,
  5402. "starthours": 0.06328,
  5403. "onlinehours": 0.04592,
  5404. "faulthours": 3.4972000000000003,
  5405. "maintainhours": 6.266960000000001,
  5406. "offlinehours": 0.0,
  5407. "powerfactor": 0.0,
  5408. "averageWindSpeedDay": 2.2783279418945312
  5409. },
  5410. {
  5411. "id": "NG01_992022520",
  5412. "windturbineid": "NG01_99",
  5413. "stationid": "NSS_FDC",
  5414. "timestamp": 1653034618868,
  5415. "stophours": 0.0,
  5416. "onpowerhours": 0.0,
  5417. "standbyhours": 6.932240000000001,
  5418. "starthours": 0.0,
  5419. "onlinehours": 0.0,
  5420. "faulthours": 0.028560000000000002,
  5421. "maintainhours": 6.590360000000001,
  5422. "offlinehours": 0.0,
  5423. "powerfactor": 0.0,
  5424. "averageWindSpeedDay": 2.3528740406036377
  5425. },
  5426. {
  5427. "id": "SG01_762022520",
  5428. "windturbineid": "SG01_76",
  5429. "stationid": "SBQ_FDC",
  5430. "timestamp": 1653034618868,
  5431. "stophours": 0.0,
  5432. "onpowerhours": 0.01736,
  5433. "standbyhours": 5.73916,
  5434. "starthours": 1.28772,
  5435. "onlinehours": 2.7692000000000005,
  5436. "faulthours": 0.15036000000000002,
  5437. "maintainhours": 0.0,
  5438. "offlinehours": 0.0,
  5439. "powerfactor": 1.0,
  5440. "averageWindSpeedDay": 2.783228635787964
  5441. },
  5442. {
  5443. "id": "SG01_752022520",
  5444. "windturbineid": "SG01_75",
  5445. "stationid": "SBQ_FDC",
  5446. "timestamp": 1653034618868,
  5447. "stophours": 0.0,
  5448. "onpowerhours": 0.025759999999999998,
  5449. "standbyhours": 7.193199999999999,
  5450. "starthours": 1.8597600000000003,
  5451. "onlinehours": 4.16416,
  5452. "faulthours": 0.11004000000000003,
  5453. "maintainhours": 0.0,
  5454. "offlinehours": 0.0,
  5455. "powerfactor": 1.0,
  5456. "averageWindSpeedDay": 2.781965732574463
  5457. },
  5458. {
  5459. "id": "SG01_782022520",
  5460. "windturbineid": "SG01_78",
  5461. "stationid": "SBQ_FDC",
  5462. "timestamp": 1653034618868,
  5463. "stophours": 0.0,
  5464. "onpowerhours": 0.02352,
  5465. "standbyhours": 5.488559999999997,
  5466. "starthours": 1.3210400000000002,
  5467. "onlinehours": 5.95616,
  5468. "faulthours": 0.26432000000000005,
  5469. "maintainhours": 0.0,
  5470. "offlinehours": 0.0,
  5471. "powerfactor": 1.0,
  5472. "averageWindSpeedDay": 2.930718183517456
  5473. },
  5474. {
  5475. "id": "SG01_772022520",
  5476. "windturbineid": "SG01_77",
  5477. "stationid": "SBQ_FDC",
  5478. "timestamp": 1653034618868,
  5479. "stophours": 0.0,
  5480. "onpowerhours": 0.02436,
  5481. "standbyhours": 5.301799999999999,
  5482. "starthours": 2.1859599999999997,
  5483. "onlinehours": 2.70732,
  5484. "faulthours": 0.11144000000000001,
  5485. "maintainhours": 0.0,
  5486. "offlinehours": 0.0,
  5487. "powerfactor": 1.0,
  5488. "averageWindSpeedDay": 2.7747128009796143
  5489. },
  5490. {
  5491. "id": "MG01_032022520",
  5492. "windturbineid": "MG01_03",
  5493. "stationid": "MHS_FDC",
  5494. "timestamp": 1653034618868,
  5495. "stophours": 0.0,
  5496. "onpowerhours": 0.03724,
  5497. "standbyhours": 2.73476,
  5498. "starthours": 0.09492,
  5499. "onlinehours": 0.32788000000000006,
  5500. "faulthours": 0.0,
  5501. "maintainhours": 1.05616,
  5502. "offlinehours": 0.0,
  5503. "powerfactor": 1.0,
  5504. "averageWindSpeedDay": 3.4450857639312744
  5505. },
  5506. {
  5507. "id": "MG01_022022520",
  5508. "windturbineid": "MG01_02",
  5509. "stationid": "MHS_FDC",
  5510. "timestamp": 1653034618868,
  5511. "stophours": 0.0,
  5512. "onpowerhours": 0.04648000000000001,
  5513. "standbyhours": 2.20164,
  5514. "starthours": 0.07196000000000001,
  5515. "onlinehours": 5.16964,
  5516. "faulthours": 0.0,
  5517. "maintainhours": 6.60436,
  5518. "offlinehours": 0.0,
  5519. "powerfactor": 1.0,
  5520. "averageWindSpeedDay": 3.04079532623291
  5521. },
  5522. {
  5523. "id": "SG01_792022520",
  5524. "windturbineid": "SG01_79",
  5525. "stationid": "SBQ_FDC",
  5526. "timestamp": 1653034618868,
  5527. "stophours": 0.0,
  5528. "onpowerhours": 0.01932,
  5529. "standbyhours": 6.9426,
  5530. "starthours": 1.6682400000000004,
  5531. "onlinehours": 6.60156,
  5532. "faulthours": 0.14728000000000005,
  5533. "maintainhours": 0.0,
  5534. "offlinehours": 0.0,
  5535. "powerfactor": 1.0,
  5536. "averageWindSpeedDay": 2.758068323135376
  5537. },
  5538. {
  5539. "id": "MG01_012022520",
  5540. "windturbineid": "MG01_01",
  5541. "stationid": "MHS_FDC",
  5542. "timestamp": 1653034618868,
  5543. "stophours": 0.0,
  5544. "onpowerhours": 0.056,
  5545. "standbyhours": 1.8580800000000004,
  5546. "starthours": 0.032200000000000006,
  5547. "onlinehours": 5.67168,
  5548. "faulthours": 0.0,
  5549. "maintainhours": 6.361320000000001,
  5550. "offlinehours": 0.0,
  5551. "powerfactor": 1.0,
  5552. "averageWindSpeedDay": 2.9125120639801025
  5553. },
  5554. {
  5555. "id": "MG01_072022520",
  5556. "windturbineid": "MG01_07",
  5557. "stationid": "MHS_FDC",
  5558. "timestamp": 1653034618868,
  5559. "stophours": 0.0,
  5560. "onpowerhours": 0.05936,
  5561. "standbyhours": 0.9276399999999999,
  5562. "starthours": 0.0854,
  5563. "onlinehours": 2.8532,
  5564. "faulthours": 2.8949200000000004,
  5565. "maintainhours": 0.7742,
  5566. "offlinehours": 0.0,
  5567. "powerfactor": 1.0,
  5568. "averageWindSpeedDay": 3.749851942062378
  5569. },
  5570. {
  5571. "id": "MG01_062022520",
  5572. "windturbineid": "MG01_06",
  5573. "stationid": "MHS_FDC",
  5574. "timestamp": 1653034618868,
  5575. "stophours": 0.0,
  5576. "onpowerhours": 0.0,
  5577. "standbyhours": 1.9300400000000002,
  5578. "starthours": 0.0,
  5579. "onlinehours": 0.00168,
  5580. "faulthours": 0.0,
  5581. "maintainhours": 1.0892,
  5582. "offlinehours": 0.0,
  5583. "powerfactor": 1.0,
  5584. "averageWindSpeedDay": 3.8992044925689697
  5585. },
  5586. {
  5587. "id": "MG01_052022520",
  5588. "windturbineid": "MG01_05",
  5589. "stationid": "MHS_FDC",
  5590. "timestamp": 1653034618868,
  5591. "stophours": 0.0,
  5592. "onpowerhours": 0.0,
  5593. "standbyhours": 1.7959200000000002,
  5594. "starthours": 0.0,
  5595. "onlinehours": 0.0,
  5596. "faulthours": 0.0,
  5597. "maintainhours": 3.19704,
  5598. "offlinehours": 0.0,
  5599. "powerfactor": 1.0,
  5600. "averageWindSpeedDay": 3.4205682277679443
  5601. },
  5602. {
  5603. "id": "SG01_702022520",
  5604. "windturbineid": "SG01_70",
  5605. "stationid": "SBQ_FDC",
  5606. "timestamp": 1653034618868,
  5607. "stophours": 0.0,
  5608. "onpowerhours": 0.023520000000000006,
  5609. "standbyhours": 5.73328,
  5610. "starthours": 2.0776,
  5611. "onlinehours": 5.094040000000001,
  5612. "faulthours": 0.11788000000000001,
  5613. "maintainhours": 0.0,
  5614. "offlinehours": 0.0,
  5615. "powerfactor": 1.0,
  5616. "averageWindSpeedDay": 2.774764060974121
  5617. },
  5618. {
  5619. "id": "MG01_042022520",
  5620. "windturbineid": "MG01_04",
  5621. "stationid": "MHS_FDC",
  5622. "timestamp": 1653034618868,
  5623. "stophours": 0.0,
  5624. "onpowerhours": 0.033600000000000005,
  5625. "standbyhours": 1.11524,
  5626. "starthours": 0.0322,
  5627. "onlinehours": 0.21196,
  5628. "faulthours": 0.0,
  5629. "maintainhours": 2.05324,
  5630. "offlinehours": 0.0,
  5631. "powerfactor": 1.0,
  5632. "averageWindSpeedDay": 3.2234976291656494
  5633. },
  5634. {
  5635. "id": "SG01_722022520",
  5636. "windturbineid": "SG01_72",
  5637. "stationid": "SBQ_FDC",
  5638. "timestamp": 1653034618868,
  5639. "stophours": 0.0,
  5640. "onpowerhours": 0.015960000000000002,
  5641. "standbyhours": 6.421520000000001,
  5642. "starthours": 2.2425200000000003,
  5643. "onlinehours": 7.234640000000001,
  5644. "faulthours": 0.10556,
  5645. "maintainhours": 0.0,
  5646. "offlinehours": 0.0,
  5647. "powerfactor": 1.0,
  5648. "averageWindSpeedDay": 2.5523695945739746
  5649. },
  5650. {
  5651. "id": "SG01_712022520",
  5652. "windturbineid": "SG01_71",
  5653. "stationid": "SBQ_FDC",
  5654. "timestamp": 1653034618868,
  5655. "stophours": 0.0,
  5656. "onpowerhours": 0.022400000000000003,
  5657. "standbyhours": 6.233639999999999,
  5658. "starthours": 2.367120000000001,
  5659. "onlinehours": 4.446399999999999,
  5660. "faulthours": 0.21140000000000006,
  5661. "maintainhours": 0.0,
  5662. "offlinehours": 0.0,
  5663. "powerfactor": 1.0,
  5664. "averageWindSpeedDay": 2.512899875640869
  5665. },
  5666. {
  5667. "id": "MG01_092022520",
  5668. "windturbineid": "MG01_09",
  5669. "stationid": "MHS_FDC",
  5670. "timestamp": 1653034618868,
  5671. "stophours": 0.0,
  5672. "onpowerhours": 0.0,
  5673. "standbyhours": 0.69552,
  5674. "starthours": 0.0,
  5675. "onlinehours": 0.0011200000000000001,
  5676. "faulthours": 0.0,
  5677. "maintainhours": 1.8956,
  5678. "offlinehours": 0.0,
  5679. "powerfactor": 1.0,
  5680. "averageWindSpeedDay": 3.826345920562744
  5681. },
  5682. {
  5683. "id": "SG01_742022520",
  5684. "windturbineid": "SG01_74",
  5685. "stationid": "SBQ_FDC",
  5686. "timestamp": 1653034618868,
  5687. "stophours": 0.0,
  5688. "onpowerhours": 0.026879999999999998,
  5689. "standbyhours": 8.842680000000001,
  5690. "starthours": 1.9695200000000002,
  5691. "onlinehours": 5.048680000000001,
  5692. "faulthours": 0.22512000000000004,
  5693. "maintainhours": 0.0,
  5694. "offlinehours": 0.0,
  5695. "powerfactor": 1.0,
  5696. "averageWindSpeedDay": 2.5369246006011963
  5697. },
  5698. {
  5699. "id": "MG01_082022520",
  5700. "windturbineid": "MG01_08",
  5701. "stationid": "MHS_FDC",
  5702. "timestamp": 1653034618868,
  5703. "stophours": 0.0,
  5704. "onpowerhours": 0.026600000000000002,
  5705. "standbyhours": 0.38780000000000003,
  5706. "starthours": 0.04508,
  5707. "onlinehours": 0.033600000000000005,
  5708. "faulthours": 0.0,
  5709. "maintainhours": 0.038360000000000005,
  5710. "offlinehours": 0.0,
  5711. "powerfactor": 1.0,
  5712. "averageWindSpeedDay": 4.08697509765625
  5713. },
  5714. {
  5715. "id": "SG01_732022520",
  5716. "windturbineid": "SG01_73",
  5717. "stationid": "SBQ_FDC",
  5718. "timestamp": 1653034618868,
  5719. "stophours": 0.0,
  5720. "onpowerhours": 0.025200000000000004,
  5721. "standbyhours": 7.497839999999999,
  5722. "starthours": 2.16048,
  5723. "onlinehours": 5.9816400000000005,
  5724. "faulthours": 0.1232,
  5725. "maintainhours": 0.0,
  5726. "offlinehours": 0.0,
  5727. "powerfactor": 1.0,
  5728. "averageWindSpeedDay": 2.6303255558013916
  5729. },
  5730. {
  5731. "id": "SG01_872022520",
  5732. "windturbineid": "SG01_87",
  5733. "stationid": "SBQ_FDC",
  5734. "timestamp": 1653034618868,
  5735. "stophours": 0.0,
  5736. "onpowerhours": 0.021840000000000005,
  5737. "standbyhours": 5.881120000000002,
  5738. "starthours": 2.1546000000000003,
  5739. "onlinehours": 7.52948,
  5740. "faulthours": 0.21224,
  5741. "maintainhours": 0.0,
  5742. "offlinehours": 0.0,
  5743. "powerfactor": 1.0,
  5744. "averageWindSpeedDay": 2.7651710510253906
  5745. },
  5746. {
  5747. "id": "SG01_862022520",
  5748. "windturbineid": "SG01_86",
  5749. "stationid": "SBQ_FDC",
  5750. "timestamp": 1653034618868,
  5751. "stophours": 0.0,
  5752. "onpowerhours": 0.018480000000000003,
  5753. "standbyhours": 6.347599999999999,
  5754. "starthours": 1.8628400000000003,
  5755. "onlinehours": 4.80312,
  5756. "faulthours": 0.11872000000000002,
  5757. "maintainhours": 0.0,
  5758. "offlinehours": 0.0,
  5759. "powerfactor": 1.0,
  5760. "averageWindSpeedDay": 2.6032729148864746
  5761. },
  5762. {
  5763. "id": "SG01_892022520",
  5764. "windturbineid": "SG01_89",
  5765. "stationid": "SBQ_FDC",
  5766. "timestamp": 1653034618868,
  5767. "stophours": 0.0,
  5768. "onpowerhours": 0.024080000000000004,
  5769. "standbyhours": 7.853159999999998,
  5770. "starthours": 1.7539200000000004,
  5771. "onlinehours": 2.8274399999999997,
  5772. "faulthours": 0.21308000000000002,
  5773. "maintainhours": 0.0,
  5774. "offlinehours": 0.0,
  5775. "powerfactor": 0.75,
  5776. "averageWindSpeedDay": 2.693890333175659
  5777. },
  5778. {
  5779. "id": "SG01_882022520",
  5780. "windturbineid": "SG01_88",
  5781. "stationid": "SBQ_FDC",
  5782. "timestamp": 1653034618868,
  5783. "stophours": 0.0,
  5784. "onpowerhours": 0.01876,
  5785. "standbyhours": 4.267200000000001,
  5786. "starthours": 1.7623199999999999,
  5787. "onlinehours": 3.5414400000000006,
  5788. "faulthours": 0.098,
  5789. "maintainhours": 0.0,
  5790. "offlinehours": 0.0,
  5791. "powerfactor": 1.0,
  5792. "averageWindSpeedDay": 2.71332049369812
  5793. },
  5794. {
  5795. "id": "SG01_812022520",
  5796. "windturbineid": "SG01_81",
  5797. "stationid": "SBQ_FDC",
  5798. "timestamp": 1653034644130,
  5799. "stophours": 0.0,
  5800. "onpowerhours": 0.02863336,
  5801. "standbyhours": 6.2838286,
  5802. "starthours": 2.359,
  5803. "onlinehours": 7.1736,
  5804. "faulthours": 0.20076,
  5805. "maintainhours": 0.0,
  5806. "offlinehours": 0.0,
  5807. "powerfactor": 1.0,
  5808. "averageWindSpeedDay": 2.5105245113372803
  5809. },
  5810. {
  5811. "id": "SG01_802022520",
  5812. "windturbineid": "SG01_80",
  5813. "stationid": "SBQ_FDC",
  5814. "timestamp": 1653034644130,
  5815. "stophours": 0.0,
  5816. "onpowerhours": 0.020720000000000002,
  5817. "standbyhours": 6.521273359999997,
  5818. "starthours": 1.74188,
  5819. "onlinehours": 4.785760000000001,
  5820. "faulthours": 0.15511999999999998,
  5821. "maintainhours": 0.0,
  5822. "offlinehours": 0.0,
  5823. "powerfactor": 1.0,
  5824. "averageWindSpeedDay": 2.661785840988159
  5825. },
  5826. {
  5827. "id": "SG01_832022520",
  5828. "windturbineid": "SG01_83",
  5829. "stationid": "SBQ_FDC",
  5830. "timestamp": 1653034618868,
  5831. "stophours": 0.0,
  5832. "onpowerhours": 0.021560000000000003,
  5833. "standbyhours": 7.16548,
  5834. "starthours": 1.6517200000000005,
  5835. "onlinehours": 7.0537600000000005,
  5836. "faulthours": 0.26236000000000004,
  5837. "maintainhours": 0.0,
  5838. "offlinehours": 0.0,
  5839. "powerfactor": 1.0,
  5840. "averageWindSpeedDay": 2.5565288066864014
  5841. },
  5842. {
  5843. "id": "SG01_822022520",
  5844. "windturbineid": "SG01_82",
  5845. "stationid": "SBQ_FDC",
  5846. "timestamp": 1653034618868,
  5847. "stophours": 0.0,
  5848. "onpowerhours": 0.0126,
  5849. "standbyhours": 7.69608,
  5850. "starthours": 1.2104400000000002,
  5851. "onlinehours": 4.33188,
  5852. "faulthours": 0.05768000000000001,
  5853. "maintainhours": 0.0,
  5854. "offlinehours": 0.0,
  5855. "powerfactor": 1.0,
  5856. "averageWindSpeedDay": 2.696660280227661
  5857. },
  5858. {
  5859. "id": "SG01_852022520",
  5860. "windturbineid": "SG01_85",
  5861. "stationid": "SBQ_FDC",
  5862. "timestamp": 1653034618868,
  5863. "stophours": 0.0,
  5864. "onpowerhours": 0.026040000000000008,
  5865. "standbyhours": 5.15004,
  5866. "starthours": 2.1607600000000002,
  5867. "onlinehours": 1.79928,
  5868. "faulthours": 0.03724,
  5869. "maintainhours": 0.0,
  5870. "offlinehours": 0.0,
  5871. "powerfactor": 0.8259999752044678,
  5872. "averageWindSpeedDay": 2.894385576248169
  5873. },
  5874. {
  5875. "id": "SG01_842022520",
  5876. "windturbineid": "SG01_84",
  5877. "stationid": "SBQ_FDC",
  5878. "timestamp": 1653034618868,
  5879. "stophours": 0.0,
  5880. "onpowerhours": 0.01848,
  5881. "standbyhours": 7.452480000000001,
  5882. "starthours": 1.5134000000000003,
  5883. "onlinehours": 3.735480000000001,
  5884. "faulthours": 0.06916000000000001,
  5885. "maintainhours": 0.0,
  5886. "offlinehours": 0.0,
  5887. "powerfactor": 1.0,
  5888. "averageWindSpeedDay": 2.7466328144073486
  5889. },
  5890. {
  5891. "id": "MG01_212022520",
  5892. "windturbineid": "MG01_21",
  5893. "stationid": "MHS_FDC",
  5894. "timestamp": 1653034618868,
  5895. "stophours": 0.0,
  5896. "onpowerhours": 0.0,
  5897. "standbyhours": 0.5726,
  5898. "starthours": 0.0,
  5899. "onlinehours": 0.0,
  5900. "faulthours": 0.0,
  5901. "maintainhours": 3.6596,
  5902. "offlinehours": 0.0,
  5903. "powerfactor": 1.0,
  5904. "averageWindSpeedDay": 3.739781618118286
  5905. },
  5906. {
  5907. "id": "SG01_982022520",
  5908. "windturbineid": "SG01_98",
  5909. "stationid": "SBQ_FDC",
  5910. "timestamp": 1653034618868,
  5911. "stophours": 0.0,
  5912. "onpowerhours": 0.01904,
  5913. "standbyhours": 3.26144,
  5914. "starthours": 1.20148,
  5915. "onlinehours": 5.07696,
  5916. "faulthours": 0.14196000000000003,
  5917. "maintainhours": 0.0,
  5918. "offlinehours": 0.0,
  5919. "powerfactor": 1.0,
  5920. "averageWindSpeedDay": 2.824509382247925
  5921. },
  5922. {
  5923. "id": "MG01_202022520",
  5924. "windturbineid": "MG01_20",
  5925. "stationid": "MHS_FDC",
  5926. "timestamp": 1653034618868,
  5927. "stophours": 0.0,
  5928. "onpowerhours": 0.0,
  5929. "standbyhours": 0.46284000000000003,
  5930. "starthours": 0.0,
  5931. "onlinehours": 0.0,
  5932. "faulthours": 0.0,
  5933. "maintainhours": 1.9653200000000002,
  5934. "offlinehours": 0.0,
  5935. "powerfactor": 1.0,
  5936. "averageWindSpeedDay": 3.2698307037353516
  5937. },
  5938. {
  5939. "id": "SG01_972022520",
  5940. "windturbineid": "SG01_97",
  5941. "stationid": "SBQ_FDC",
  5942. "timestamp": 1653034618868,
  5943. "stophours": 0.0,
  5944. "onpowerhours": 0.01568,
  5945. "standbyhours": 3.4440000000000004,
  5946. "starthours": 1.3599600000000003,
  5947. "onlinehours": 2.0258,
  5948. "faulthours": 0.10248000000000002,
  5949. "maintainhours": 0.0,
  5950. "offlinehours": 0.0,
  5951. "powerfactor": 1.0,
  5952. "averageWindSpeedDay": 2.840766191482544
  5953. },
  5954. {
  5955. "id": "SG01_992022520",
  5956. "windturbineid": "SG01_99",
  5957. "stationid": "SBQ_FDC",
  5958. "timestamp": 1653034618868,
  5959. "stophours": 0.0,
  5960. "onpowerhours": 0.0,
  5961. "standbyhours": 0.0,
  5962. "starthours": 0.0,
  5963. "onlinehours": 0.0,
  5964. "faulthours": 0.0,
  5965. "maintainhours": 0.0,
  5966. "offlinehours": 0.0,
  5967. "powerfactor": 1.0,
  5968. "averageWindSpeedDay": 3.096409797668457
  5969. },
  5970. {
  5971. "id": "MG01_252022520",
  5972. "windturbineid": "MG01_25",
  5973. "stationid": "MHS_FDC",
  5974. "timestamp": 1653034618868,
  5975. "stophours": 0.0,
  5976. "onpowerhours": 1.01136,
  5977. "standbyhours": 2.807560000000001,
  5978. "starthours": 1.1300800000000002,
  5979. "onlinehours": 3.1306800000000004,
  5980. "faulthours": 0.0,
  5981. "maintainhours": 2.2724800000000003,
  5982. "offlinehours": 0.0,
  5983. "powerfactor": 1.0,
  5984. "averageWindSpeedDay": 4.225146770477295
  5985. },
  5986. {
  5987. "id": "MG01_242022520",
  5988. "windturbineid": "MG01_24",
  5989. "stationid": "MHS_FDC",
  5990. "timestamp": 1653034618868,
  5991. "stophours": 0.0,
  5992. "onpowerhours": 0.10472000000000001,
  5993. "standbyhours": 1.97652,
  5994. "starthours": 0.10976000000000001,
  5995. "onlinehours": 5.2609200000000005,
  5996. "faulthours": 0.0,
  5997. "maintainhours": 6.48648,
  5998. "offlinehours": 0.0,
  5999. "powerfactor": 1.0,
  6000. "averageWindSpeedDay": 2.7520174980163574
  6001. },
  6002. {
  6003. "id": "MG01_232022520",
  6004. "windturbineid": "MG01_23",
  6005. "stationid": "MHS_FDC",
  6006. "timestamp": 1653034618868,
  6007. "stophours": 0.0,
  6008. "onpowerhours": 0.022400000000000003,
  6009. "standbyhours": 1.7320800000000003,
  6010. "starthours": 0.05432000000000001,
  6011. "onlinehours": 0.29008,
  6012. "faulthours": 0.0,
  6013. "maintainhours": 5.795160000000001,
  6014. "offlinehours": 0.0,
  6015. "powerfactor": 1.0,
  6016. "averageWindSpeedDay": 2.952486276626587
  6017. },
  6018. {
  6019. "id": "MG01_222022520",
  6020. "windturbineid": "MG01_22",
  6021. "stationid": "MHS_FDC",
  6022. "timestamp": 1653034618868,
  6023. "stophours": 0.0,
  6024. "onpowerhours": 0.0,
  6025. "standbyhours": 0.14168000000000003,
  6026. "starthours": 0.0,
  6027. "onlinehours": 0.0025200000000000005,
  6028. "faulthours": 0.0,
  6029. "maintainhours": 0.09156,
  6030. "offlinehours": 0.0,
  6031. "powerfactor": 1.0,
  6032. "averageWindSpeedDay": 3.6913022994995117
  6033. },
  6034. {
  6035. "id": "MG01_292022520",
  6036. "windturbineid": "MG01_29",
  6037. "stationid": "MHS_FDC",
  6038. "timestamp": 1653034618868,
  6039. "stophours": 0.0,
  6040. "onpowerhours": 0.026320000000000003,
  6041. "standbyhours": 1.69148,
  6042. "starthours": 0.063,
  6043. "onlinehours": 0.9032800000000001,
  6044. "faulthours": 0.0,
  6045. "maintainhours": 4.31844,
  6046. "offlinehours": 0.0,
  6047. "powerfactor": 1.0,
  6048. "averageWindSpeedDay": 3.763774871826172
  6049. },
  6050. {
  6051. "id": "SG01_902022520",
  6052. "windturbineid": "SG01_90",
  6053. "stationid": "SBQ_FDC",
  6054. "timestamp": 1653034618868,
  6055. "stophours": 0.0,
  6056. "onpowerhours": 0.04228000000000001,
  6057. "standbyhours": 4.680480000000001,
  6058. "starthours": 2.6854799999999996,
  6059. "onlinehours": 5.2108,
  6060. "faulthours": 0.43624000000000007,
  6061. "maintainhours": 0.0,
  6062. "offlinehours": 0.0,
  6063. "powerfactor": 1.0,
  6064. "averageWindSpeedDay": 2.8535244464874268
  6065. },
  6066. {
  6067. "id": "MG01_282022520",
  6068. "windturbineid": "MG01_28",
  6069. "stationid": "MHS_FDC",
  6070. "timestamp": 1653034618868,
  6071. "stophours": 0.0,
  6072. "onpowerhours": 0.19768000000000002,
  6073. "standbyhours": 1.50136,
  6074. "starthours": 0.05600000000000001,
  6075. "onlinehours": 0.39956,
  6076. "faulthours": 0.0,
  6077. "maintainhours": 4.25124,
  6078. "offlinehours": 0.0,
  6079. "powerfactor": 1.0,
  6080. "averageWindSpeedDay": 3.703643321990967
  6081. },
  6082. {
  6083. "id": "MG01_272022520",
  6084. "windturbineid": "MG01_27",
  6085. "stationid": "MHS_FDC",
  6086. "timestamp": 1653034618868,
  6087. "stophours": 0.0,
  6088. "onpowerhours": 0.0518,
  6089. "standbyhours": 3.5915600000000003,
  6090. "starthours": 0.05152,
  6091. "onlinehours": 4.17536,
  6092. "faulthours": 0.0,
  6093. "maintainhours": 6.17428,
  6094. "offlinehours": 0.0,
  6095. "powerfactor": 1.0,
  6096. "averageWindSpeedDay": 2.6806044578552246
  6097. },
  6098. {
  6099. "id": "SG01_922022520",
  6100. "windturbineid": "SG01_92",
  6101. "stationid": "SBQ_FDC",
  6102. "timestamp": 1653034618868,
  6103. "stophours": 0.0,
  6104. "onpowerhours": 0.019320000000000004,
  6105. "standbyhours": 5.70528,
  6106. "starthours": 1.51452,
  6107. "onlinehours": 8.42128,
  6108. "faulthours": 0.03640000000000001,
  6109. "maintainhours": 0.0,
  6110. "offlinehours": 0.0,
  6111. "powerfactor": 1.0,
  6112. "averageWindSpeedDay": 2.8483126163482666
  6113. },
  6114. {
  6115. "id": "MG01_262022520",
  6116. "windturbineid": "MG01_26",
  6117. "stationid": "MHS_FDC",
  6118. "timestamp": 1653034618868,
  6119. "stophours": 0.0,
  6120. "onpowerhours": 0.032760000000000004,
  6121. "standbyhours": 3.7226000000000004,
  6122. "starthours": 0.03136,
  6123. "onlinehours": 3.57952,
  6124. "faulthours": 0.0,
  6125. "maintainhours": 6.53688,
  6126. "offlinehours": 0.0,
  6127. "powerfactor": 1.0,
  6128. "averageWindSpeedDay": 2.647257089614868
  6129. },
  6130. {
  6131. "id": "SG01_912022520",
  6132. "windturbineid": "SG01_91",
  6133. "stationid": "SBQ_FDC",
  6134. "timestamp": 1653034618868,
  6135. "stophours": 0.0,
  6136. "onpowerhours": 0.0238,
  6137. "standbyhours": 5.776959999999998,
  6138. "starthours": 1.8057200000000004,
  6139. "onlinehours": 7.539560000000002,
  6140. "faulthours": 0.20272,
  6141. "maintainhours": 0.0,
  6142. "offlinehours": 0.0,
  6143. "powerfactor": 1.0,
  6144. "averageWindSpeedDay": 2.7424378395080566
  6145. },
  6146. {
  6147. "id": "SG01_942022520",
  6148. "windturbineid": "SG01_94",
  6149. "stationid": "SBQ_FDC",
  6150. "timestamp": 1653034618868,
  6151. "stophours": 0.0,
  6152. "onpowerhours": 0.028280000000000007,
  6153. "standbyhours": 4.854360000000001,
  6154. "starthours": 1.5528799999999998,
  6155. "onlinehours": 6.3196,
  6156. "faulthours": 0.24808000000000002,
  6157. "maintainhours": 0.0,
  6158. "offlinehours": 0.0,
  6159. "powerfactor": 0.7360000014305115,
  6160. "averageWindSpeedDay": 2.8086094856262207
  6161. },
  6162. {
  6163. "id": "SG01_932022520",
  6164. "windturbineid": "SG01_93",
  6165. "stationid": "SBQ_FDC",
  6166. "timestamp": 1653034618868,
  6167. "stophours": 0.0,
  6168. "onpowerhours": 0.017920000000000002,
  6169. "standbyhours": 6.5601199999999995,
  6170. "starthours": 1.5946000000000002,
  6171. "onlinehours": 4.478320000000001,
  6172. "faulthours": 0.112,
  6173. "maintainhours": 0.0,
  6174. "offlinehours": 0.0,
  6175. "powerfactor": -0.9520000219345093,
  6176. "averageWindSpeedDay": 2.634643793106079
  6177. },
  6178. {
  6179. "id": "SG01_962022520",
  6180. "windturbineid": "SG01_96",
  6181. "stationid": "SBQ_FDC",
  6182. "timestamp": 1653034618868,
  6183. "stophours": 0.0,
  6184. "onpowerhours": 0.0238,
  6185. "standbyhours": 3.8418799999999997,
  6186. "starthours": 1.7234000000000005,
  6187. "onlinehours": 10.279079999999999,
  6188. "faulthours": 0.11704,
  6189. "maintainhours": 0.0,
  6190. "offlinehours": 0.0,
  6191. "powerfactor": 1.0,
  6192. "averageWindSpeedDay": 2.785358190536499
  6193. },
  6194. {
  6195. "id": "SG01_952022520",
  6196. "windturbineid": "SG01_95",
  6197. "stationid": "SBQ_FDC",
  6198. "timestamp": 1653034618868,
  6199. "stophours": 0.0,
  6200. "onpowerhours": 0.021560000000000003,
  6201. "standbyhours": 6.10316,
  6202. "starthours": 1.1656399999999998,
  6203. "onlinehours": 1.5075200000000002,
  6204. "faulthours": 0.23212000000000005,
  6205. "maintainhours": 0.0,
  6206. "offlinehours": 0.0,
  6207. "powerfactor": 1.0,
  6208. "averageWindSpeedDay": 2.825875759124756
  6209. },
  6210. {
  6211. "id": "MG01_102022520",
  6212. "windturbineid": "MG01_10",
  6213. "stationid": "MHS_FDC",
  6214. "timestamp": 1653034618868,
  6215. "stophours": 0.0,
  6216. "onpowerhours": 0.7627200000000001,
  6217. "standbyhours": 2.2912399999999997,
  6218. "starthours": 0.33572,
  6219. "onlinehours": 2.29768,
  6220. "faulthours": 0.0,
  6221. "maintainhours": 3.19592,
  6222. "offlinehours": 0.0,
  6223. "powerfactor": 1.0,
  6224. "averageWindSpeedDay": 3.7853546142578125
  6225. },
  6226. {
  6227. "id": "MG01_142022520",
  6228. "windturbineid": "MG01_14",
  6229. "stationid": "MHS_FDC",
  6230. "timestamp": 1653034618868,
  6231. "stophours": 0.0,
  6232. "onpowerhours": 0.025480000000000003,
  6233. "standbyhours": 0.6599600000000001,
  6234. "starthours": 0.07504,
  6235. "onlinehours": 0.3108,
  6236. "faulthours": 0.0,
  6237. "maintainhours": 1.3636000000000001,
  6238. "offlinehours": 0.0,
  6239. "powerfactor": 1.0,
  6240. "averageWindSpeedDay": 3.480306386947632
  6241. },
  6242. {
  6243. "id": "MG01_132022520",
  6244. "windturbineid": "MG01_13",
  6245. "stationid": "MHS_FDC",
  6246. "timestamp": 1653034618868,
  6247. "stophours": 0.0,
  6248. "onpowerhours": 1.5276800000000001,
  6249. "standbyhours": 2.4105200000000004,
  6250. "starthours": 0.32844000000000007,
  6251. "onlinehours": 1.1326,
  6252. "faulthours": 0.0,
  6253. "maintainhours": 1.58088,
  6254. "offlinehours": 0.0,
  6255. "powerfactor": 1.0,
  6256. "averageWindSpeedDay": 3.4640846252441406
  6257. },
  6258. {
  6259. "id": "MG01_122022520",
  6260. "windturbineid": "MG01_12",
  6261. "stationid": "MHS_FDC",
  6262. "timestamp": 1653034618868,
  6263. "stophours": 0.0,
  6264. "onpowerhours": 0.04956,
  6265. "standbyhours": 2.12828,
  6266. "starthours": 0.30128,
  6267. "onlinehours": 0.38948000000000005,
  6268. "faulthours": 0.0,
  6269. "maintainhours": 4.86528,
  6270. "offlinehours": 0.0,
  6271. "powerfactor": 1.0,
  6272. "averageWindSpeedDay": 3.3274474143981934
  6273. },
  6274. {
  6275. "id": "MG01_112022520",
  6276. "windturbineid": "MG01_11",
  6277. "stationid": "MHS_FDC",
  6278. "timestamp": 1653034618868,
  6279. "stophours": 0.0,
  6280. "onpowerhours": 0.0,
  6281. "standbyhours": 0.07028000000000001,
  6282. "starthours": 0.0,
  6283. "onlinehours": 0.0,
  6284. "faulthours": 0.0,
  6285. "maintainhours": 0.0,
  6286. "offlinehours": 0.0,
  6287. "powerfactor": 1.0,
  6288. "averageWindSpeedDay": 4.304229259490967
  6289. },
  6290. {
  6291. "id": "MG01_182022520",
  6292. "windturbineid": "MG01_18",
  6293. "stationid": "MHS_FDC",
  6294. "timestamp": 1653034618868,
  6295. "stophours": 0.0,
  6296. "onpowerhours": 0.0,
  6297. "standbyhours": 0.26068,
  6298. "starthours": 0.0,
  6299. "onlinehours": 0.0,
  6300. "faulthours": 0.0,
  6301. "maintainhours": 0.0378,
  6302. "offlinehours": 0.0,
  6303. "powerfactor": 1.0,
  6304. "averageWindSpeedDay": 4.036048889160156
  6305. },
  6306. {
  6307. "id": "MG01_172022520",
  6308. "windturbineid": "MG01_17",
  6309. "stationid": "MHS_FDC",
  6310. "timestamp": 1653034618868,
  6311. "stophours": 0.0,
  6312. "onpowerhours": 0.09268000000000001,
  6313. "standbyhours": 0.16436000000000003,
  6314. "starthours": 0.1792,
  6315. "onlinehours": 0.17752,
  6316. "faulthours": 0.0,
  6317. "maintainhours": 0.0,
  6318. "offlinehours": 0.0,
  6319. "powerfactor": 1.0,
  6320. "averageWindSpeedDay": 4.463776111602783
  6321. },
  6322. {
  6323. "id": "MG01_162022520",
  6324. "windturbineid": "MG01_16",
  6325. "stationid": "MHS_FDC",
  6326. "timestamp": 1653034618868,
  6327. "stophours": 0.0,
  6328. "onpowerhours": 0.0,
  6329. "standbyhours": 0.04956,
  6330. "starthours": 0.0,
  6331. "onlinehours": 0.0,
  6332. "faulthours": 0.0,
  6333. "maintainhours": 0.0,
  6334. "offlinehours": 0.0,
  6335. "powerfactor": 1.0,
  6336. "averageWindSpeedDay": 3.5175235271453857
  6337. },
  6338. {
  6339. "id": "MG01_152022520",
  6340. "windturbineid": "MG01_15",
  6341. "stationid": "MHS_FDC",
  6342. "timestamp": 1653034618868,
  6343. "stophours": 0.0,
  6344. "onpowerhours": 0.0,
  6345. "standbyhours": 0.20916,
  6346. "starthours": 0.0,
  6347. "onlinehours": 0.0,
  6348. "faulthours": 0.0,
  6349. "maintainhours": 0.6787200000000001,
  6350. "offlinehours": 0.0,
  6351. "powerfactor": 1.0,
  6352. "averageWindSpeedDay": 3.6730384826660156
  6353. },
  6354. {
  6355. "id": "MG01_192022520",
  6356. "windturbineid": "MG01_19",
  6357. "stationid": "MHS_FDC",
  6358. "timestamp": 1653034618868,
  6359. "stophours": 0.0,
  6360. "onpowerhours": 0.0,
  6361. "standbyhours": 0.44604,
  6362. "starthours": 0.0,
  6363. "onlinehours": 0.0,
  6364. "faulthours": 0.0,
  6365. "maintainhours": 3.8819200000000005,
  6366. "offlinehours": 0.0,
  6367. "powerfactor": 1.0,
  6368. "averageWindSpeedDay": 4.041071891784668
  6369. },
  6370. {
  6371. "id": "XG01_502022520",
  6372. "windturbineid": "XG01_50",
  6373. "stationid": "XS_FDC",
  6374. "timestamp": 1653034618868,
  6375. "stophours": 0.0,
  6376. "onpowerhours": 0.25648,
  6377. "standbyhours": 1.6234399999999998,
  6378. "starthours": 0.6118,
  6379. "onlinehours": 1.8869200000000004,
  6380. "faulthours": 0.0,
  6381. "maintainhours": 4.301080000000001,
  6382. "offlinehours": 0.0,
  6383. "powerfactor": 1.0,
  6384. "averageWindSpeedDay": 3.2955665588378906
  6385. },
  6386. {
  6387. "id": "XG01_512022520",
  6388. "windturbineid": "XG01_51",
  6389. "stationid": "XS_FDC",
  6390. "timestamp": 1653034618868,
  6391. "stophours": 0.0,
  6392. "onpowerhours": 0.13328,
  6393. "standbyhours": 1.2325600000000003,
  6394. "starthours": 0.73696,
  6395. "onlinehours": 2.0798400000000004,
  6396. "faulthours": 0.0,
  6397. "maintainhours": 4.6090800000000005,
  6398. "offlinehours": 0.0,
  6399. "powerfactor": 1.0,
  6400. "averageWindSpeedDay": 3.529977321624756
  6401. },
  6402. {
  6403. "id": "XG01_522022520",
  6404. "windturbineid": "XG01_52",
  6405. "stationid": "XS_FDC",
  6406. "timestamp": 1653034618868,
  6407. "stophours": 0.0,
  6408. "onpowerhours": 0.17444000000000004,
  6409. "standbyhours": 1.78864,
  6410. "starthours": 0.48188000000000014,
  6411. "onlinehours": 1.6125200000000002,
  6412. "faulthours": 0.0,
  6413. "maintainhours": 4.19524,
  6414. "offlinehours": 0.0,
  6415. "powerfactor": 1.0,
  6416. "averageWindSpeedDay": 3.653686761856079
  6417. },
  6418. {
  6419. "id": "XG01_532022520",
  6420. "windturbineid": "XG01_53",
  6421. "stationid": "XS_FDC",
  6422. "timestamp": 1653034618868,
  6423. "stophours": 0.0,
  6424. "onpowerhours": 0.30576000000000003,
  6425. "standbyhours": 1.4977200000000002,
  6426. "starthours": 0.48272000000000004,
  6427. "onlinehours": 1.6366000000000003,
  6428. "faulthours": 0.0,
  6429. "maintainhours": 4.6382,
  6430. "offlinehours": 0.0,
  6431. "powerfactor": 1.0,
  6432. "averageWindSpeedDay": 3.5613367557525635
  6433. },
  6434. {
  6435. "id": "XG01_542022520",
  6436. "windturbineid": "XG01_54",
  6437. "stationid": "XS_FDC",
  6438. "timestamp": 1653034618868,
  6439. "stophours": 0.0,
  6440. "onpowerhours": 0.12068000000000001,
  6441. "standbyhours": 2.4794000000000005,
  6442. "starthours": 0.1428,
  6443. "onlinehours": 0.74816,
  6444. "faulthours": 0.0,
  6445. "maintainhours": 5.43872,
  6446. "offlinehours": 0.0,
  6447. "powerfactor": 1.0,
  6448. "averageWindSpeedDay": 3.5129544734954834
  6449. },
  6450. {
  6451. "id": "XG01_552022520",
  6452. "windturbineid": "XG01_55",
  6453. "stationid": "XS_FDC",
  6454. "timestamp": 1653034618868,
  6455. "stophours": 0.0,
  6456. "onpowerhours": 0.15288000000000002,
  6457. "standbyhours": 1.6903600000000003,
  6458. "starthours": 0.6397999999999999,
  6459. "onlinehours": 2.4346,
  6460. "faulthours": 0.0,
  6461. "maintainhours": 2.67652,
  6462. "offlinehours": 0.0,
  6463. "powerfactor": 1.0,
  6464. "averageWindSpeedDay": 3.479175090789795
  6465. },
  6466. {
  6467. "id": "XG01_562022520",
  6468. "windturbineid": "XG01_56",
  6469. "stationid": "XS_FDC",
  6470. "timestamp": 1653034618868,
  6471. "stophours": 0.0,
  6472. "onpowerhours": 0.10836000000000001,
  6473. "standbyhours": 1.9028800000000003,
  6474. "starthours": 0.7803600000000002,
  6475. "onlinehours": 1.18916,
  6476. "faulthours": 0.0,
  6477. "maintainhours": 3.27544,
  6478. "offlinehours": 0.0,
  6479. "powerfactor": 1.0,
  6480. "averageWindSpeedDay": 3.4612083435058594
  6481. },
  6482. {
  6483. "id": "XG01_572022520",
  6484. "windturbineid": "XG01_57",
  6485. "stationid": "XS_FDC",
  6486. "timestamp": 1653034618868,
  6487. "stophours": 0.0,
  6488. "onpowerhours": 0.26796000000000003,
  6489. "standbyhours": 1.56604,
  6490. "starthours": 0.4118800000000001,
  6491. "onlinehours": 4.2924,
  6492. "faulthours": 0.0,
  6493. "maintainhours": 3.9306400000000004,
  6494. "offlinehours": 0.0,
  6495. "powerfactor": 1.0,
  6496. "averageWindSpeedDay": 3.5005533695220947
  6497. },
  6498. {
  6499. "id": "XG01_582022520",
  6500. "windturbineid": "XG01_58",
  6501. "stationid": "XS_FDC",
  6502. "timestamp": 1653034618868,
  6503. "stophours": 0.0,
  6504. "onpowerhours": 0.13608,
  6505. "standbyhours": 2.3464,
  6506. "starthours": 0.29596000000000006,
  6507. "onlinehours": 2.534,
  6508. "faulthours": 0.0,
  6509. "maintainhours": 2.6068000000000002,
  6510. "offlinehours": 0.0,
  6511. "powerfactor": 1.0,
  6512. "averageWindSpeedDay": 3.674334764480591
  6513. }
  6514. ]