Ignore:
Timestamp:
06/17/07 14:31:44 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Cosy/tpoint
Files:
24 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/tpoint/gui.C

    r8184 r8570  
    3838class Set : public TObject
    3939{
    40     friend ifstream &operator>>(ifstream &fin, Set &set);
     40    friend istream &operator>>(istream &fin,  Set &set);
     41    friend ostream &operator<<(ostream &fout, Set &set);
    4142private:
    4243    Double_t fStarAz;
     
    148149ClassImp(Set);
    149150
    150 ifstream &operator>>(ifstream &fin, Set &set)
     151istream &operator>>(istream &fin, Set &set)
    151152{
    152153    TString str;
     
    181182
    182183    return fin;
     184}
     185
     186ostream &operator<<(ostream &out, Set &set)
     187{
     188    out << Form("%8.3f", set.fStarAz*TMath::RadToDeg()) << " ";
     189    out << Form("%8.3f", set.fStarEl*TMath::RadToDeg()) << " ";
     190    out << Form("%8.3f", set.fRawAz*TMath::RadToDeg()) << " ";
     191    out << Form("%8.1f", set.fRawEl*TMath::RadToDeg()) << " ";
     192    out << set.fMag;
     193
     194    return out;
    183195}
    184196
     
    192204        kTbLoadStars,
    193205        kTbReset,
    194         kTbResetStars
     206        kTbResetStars,
     207        kTbReloadStars
    195208    };
    196209
     
    203216    MPointing fBending;
    204217
     218    TString fFileNameStars;
     219
    205220    FontStruct_t fFont;
    206221
    207     void Fcn(Int_t &npar, Double_t *gin, Double_t &f, Double_t *par, Int_t iflag)
     222    void Fcn(Int_t &/*npar*/, Double_t */*gin*/, Double_t &f, Double_t *par, Int_t /*iflag*/)
    208223    {
    209224        f = 0;
     
    381396        }
    382397
    383         ifstream fin("horizon.dat");
     398        ifstream fin(fname);
    384399        if (!fin)
    385400        {
    386             cout << "ERROR - horizon.dat not found." << endl;
     401            cout << "ERROR - " << fname << " not found." << endl;
    387402            return;
    388403        }
     
    509524        fBending.GetMinuitParameters(minuit);
    510525        fBending.PrintMinuitParameters(minuit);
     526        cout << endl;
    511527        //fBending.Save("bending_magic.txt");
    512528   
     
    530546        MPointing b2;
    531547        b2.SetParameters(par);
    532    
     548
     549        cout << "Sets with Residual exceeding 0.13deg:" << endl;
     550
    533551        //
    534552        // Calculate correction and residuals
     
    536554        for (int i=0; i<fCoordinates.GetSize(); i++)
    537555        {
     556            Set orig = *(Set*)fCoordinates.At(i);
     557
    538558            Set &set0 = *(Set*)fCoordinates.At(i);
    539559   
     
    557577
    558578            Double_t err;
     579            Double_t resi = set0.GetResidual(&err);
    559580   
    560581            gdzd.SetPoint(i, za.Az(), set0.GetDZd());
    561582            gdaz.SetPoint(i, za.Zd(), dz);
    562             graz.SetPoint(i, za.Az(), set0.GetResidual(&err));
     583            graz.SetPoint(i, za.Az(), resi);
    563584            graz.SetPointError(i, 0, err);
    564             grzd.SetPoint(i, za.Zd(), set0.GetResidual(&err));
     585            grzd.SetPoint(i, za.Zd(), resi);
    565586            grzd.SetPointError(i, 0, err);
     587
     588            if (resi>0.13)//orig.GetStarAz()>0 && orig.GetStarAz()<50 && set0.GetDZd()<-0.032 && orig.GetStarEl()<80) // 0.13
     589                cout << " " << orig << "  <" << resi << ">" << endl;
    566590
    567591            proaz.Fill(za.Az(), set0.GetResidual(&err));
     
    949973    }
    950974
     975    void LoadCollection(TString fname)
     976    {
     977        ifstream fin(fname);
     978        if (!fin)
     979        {
     980            cout << "Collection '" << fname << "' not found!" << endl;
     981            return;
     982        }
     983
     984        while (1)
     985        {
     986            TString line;
     987            line.ReadLine(fin);
     988            if (!fin)
     989                break;
     990
     991            line = line.Strip(TString::kBoth);
     992            if (line[0]=='#')
     993                continue;
     994            if (line.Length()==0)
     995                continue;
     996
     997            if (!line.EndsWith(".txt"))
     998            {
     999                cout << "WARNING: " << line << endl;
     1000                continue;
     1001            }
     1002
     1003            LoadStars(line);
     1004        }
     1005    }
     1006
     1007
    9511008    void LoadStars(TString fname="tpoint.txt")
    9521009    {
     1010        if (fname.EndsWith(".col"))
     1011        {
     1012            LoadCollection(fname);
     1013            fFileNameStars = fname;
     1014            return;
     1015        }
     1016
    9531017        const Int_t size = fOriginal.GetSize();
    9541018
     
    9751039        }
    9761040
    977         cout << "Found " << fOriginal.GetSize()-size << " sets of coordinates ";
    978         cout << "(Total=" << fOriginal.GetSize() << ")" << endl;
     1041        cout << "Found " << fOriginal.GetSize()-size;
     1042        cout << " sets of coordinates in " << fname;
     1043        cout << " (Total=" << fOriginal.GetSize() << ")" << endl;
     1044
     1045        fFileNameStars = fname;
    9791046    }
    9801047
     
    9871054        static const char *gOpenTypes[] =
    9881055        {
    989             "TPoint files", "*.txt",
    990             "All files",    "*",
     1056            "TPoint files",     "*.txt",
     1057            "Collection files", "*.col",
     1058            "All files",        "*",
    9911059            NULL,           NULL
    9921060        };
     
    10091077    }
    10101078
    1011     Bool_t ProcessMessage(Long_t msg, Long_t mp1, Long_t mp2)
     1079    Bool_t ProcessMessage(Long_t msg, Long_t mp1, Long_t)
    10121080    {
    10131081        // cout << "Msg: " << hex << GET_MSG(msg) << endl;
     
    10461114                    DisplayBending();
    10471115                    return kTRUE;
     1116                case kTbReloadStars:
     1117                    fOriginal.Delete();
     1118                    LoadStars(fFileNameStars); // FIXME: Use TGLabel!
     1119                    DisplayData();
     1120                    return kTRUE;
    10481121                case kTbResetStars:
    10491122                    fOriginal.Delete();
     
    11111184    {
    11121185        TGLabel *l1 = (TGLabel*)fLabel.At(3*MPointing::GetNumPar()+1);
    1113         l1->SetText(Form("Before: %.1f +- %.1f SE", before, 0));
     1186        l1->SetText(Form("Before: %.1f +- %.1f SE", before, 0.));
    11141187
    11151188        TGLabel *l2 = (TGLabel*)fLabel.At(3*MPointing::GetNumPar()+2);
    1116         l2->SetText(Form("After:  %.1f +- %.1f SE", after, 0));
     1189        l2->SetText(Form("After:  %.1f +- %.1f SE", after, 0.));
    11171190
    11181191        TGLabel *l3 = (TGLabel*)fLabel.At(3*MPointing::GetNumPar()+3);
    1119         l3->SetText(Form("Backw:  %.1f +- %.1f SE", backw, 0));
     1192        l3->SetText(Form("Backw:  %.1f +- %.1f SE", backw, 0.));
    11201193    }
    11211194
     
    11261199            gVirtualX->DeleteFont(fFont);
    11271200    }
    1128     MFit() : TGMainFrame(gClient->GetRoot(), 750, 370, kHorizontalFrame)
     1201    MFit(const char *fname) : TGMainFrame(gClient->GetRoot(), 750, 370, kHorizontalFrame)
    11291202    {
    11301203        fCoordinates.SetOwner();
     
    11531226
    11541227
    1155         TGLayoutHints *hints4 = new TGLayoutHints(kLHintsExpandX, 5, 5,  5);
    1156         TGLayoutHints *hints5 = new TGLayoutHints(kLHintsExpandX, 5, 5, 15);
    1157         AddTextButton(grp1, "Load Pointing Model", kTbLoad,       hints5);
    1158         AddTextButton(grp1, "Save Pointing Model", kTbSave,       hints4);
    1159         AddTextButton(grp1, "Fit Parameters",      kTbFit,        hints5);
    1160         AddTextButton(grp1, "Reset Parameters",    kTbReset,      hints4);
    1161         AddTextButton(grp1, "Load Stars",          kTbLoadStars,  hints5);
    1162         AddTextButton(grp1, "Reset Stars",         kTbResetStars, hints4);
     1228        TGLayoutHints *hints4 = new TGLayoutHints(kLHintsExpandX, 5, 5,  3);
     1229        TGLayoutHints *hints5 = new TGLayoutHints(kLHintsExpandX, 5, 5, 10);
     1230        AddTextButton(grp1, "Load Pointing Model", kTbLoad,        hints5);
     1231        AddTextButton(grp1, "Save Pointing Model", kTbSave,        hints4);
     1232        AddTextButton(grp1, "Fit Parameters",      kTbFit,         hints5);
     1233        AddTextButton(grp1, "Reset Parameters",    kTbReset,       hints4);
     1234        AddTextButton(grp1, "Load Stars",          kTbLoadStars,   hints5);
     1235        AddTextButton(grp1, "Reset Stars",         kTbResetStars,  hints4);
     1236        AddTextButton(grp1, "Reload Stars",        kTbReloadStars, hints4);
    11631237        fList->Add(hints4);
    11641238        fList->Add(hints5);
     
    12531327        MapWindow();
    12541328
     1329        if (fname)
     1330            LoadStars(fname);
     1331
    12551332        DisplayBending();
    12561333        DisplayData();
     
    12611338ClassImp(MFit);
    12621339
    1263 void gui()
     1340void gui(const char *fname=NULL)
    12641341{
    12651342    gErrorIgnoreLevel = kError;
    1266     new MFit;
     1343    new MFit(fname);
    12671344    // TF1 f1("f1", "[0]/cos((90-x)*3.1415/180)", 0, 90)
    12681345}
  • trunk/MagicSoft/Cosy/tpoint/starg200604.txt

    r8568 r8570  
    9797174.7119 37.83614 174.6868 37.89535 13.31528 -23.17167 0.029179 0.008317856 53831.052662 35 47.042915879
    9898164.0729 32.68091 164.0594 32.73623 14.10611 -26.6825 0.02345264 -0.0002830303 53831.056612 19 50.100718336
    99 149 38.70512 148.3018 39.04895 14.84806 -16.04167 0.0322646 -0.008215184 53831.059295 19 48.134480151
     99##149 38.70512 148.3018 39.04895 14.84806 -16.04167 0.0322646 -0.008215184 53831.059295 19 48.134480151
    100100137.39 41.54374 137.3656 41.61515 15.28333 -9.383056 0.0476341 -0.002002779 53831.061408 24 47.48379017
    101101
  • trunk/MagicSoft/Cosy/tpoint/starg200606.txt

    r8568 r8570  
    55# 10.06.2006 03:01:10.536
    6623.93977 71.57613 24.11383 71.62783 19.74944 45.13083 0.01096671 0.07643101 53896.125816 44 60.801871456
    7 69.22305 69.28094 69.32599 69.40241 20.77028 33.97028 0.007843975 0.05557714 53896.132659 41 62.129820416
     7##69.22305 69.28094 69.32599 69.40241 20.77028 33.97028 0.007843975 0.05557714 53896.132659 41 62.129820416
    88156.6169 58.25111 156.7153 58.31012 20.18833 -0.8213889 0.01147947 0.03712898 53896.140219 34 65.047523629
  • trunk/MagicSoft/Cosy/tpoint/starg200607.txt

    r8568 r8570  
    66-114.3073 74.3045 245.7305 74.32906 16.50361 21.48972 -0.01115726 0.02319339 53921.991754 21 55.406030246
    77-4.987543 66.32784 355.0216 66.35837 17.50722 52.30139 0.01015293 0.005844939 53921.999912 20 51.565061437
    8 1.588808 67.13388 1.550151 67.27385 17.94333 51.48889 0.004878146 0.04199262 53922.006266 33 51.747433837
     8##1.588808 67.13388 1.550151 67.27385 17.94333 51.48889 0.004878146 0.04199262 53922.006266 33 51.747433837
    99-1.183064 67.36136 358.8275 67.41977 17.94333 51.48889 0.1449262 0.03287638 53922.010963 29 51.499442344
    1010123.4918 58.23997 123.5138 58.27546 19.84639 8.868333 0.006455802 0.0223474 53922.015194 27 54.987391304
     
    6262
    6363# 12.07.2006 23:49:48.018
    64 33.9057 77.6274 34.22815 77.49184 18.61556 38.78361 -0.01379127 0.09198435 53928.992917 54 83.561030246
     64##33.9057 77.6274 34.22815 77.49184 18.61556 38.78361 -0.01379127 0.09198435 53928.992917 54 83.561030246
    6565-153.2097 72.0995 206.797 72.10401 17.58222 12.56 0.0008547185 0.01367811 53928.997601 42 89.572703214
    6666-129.5834 44.23595 230.4329 44.26537 16.23917 -3.694444 0.03711084 -0.004567432 53929.012327 27 90.82592155
  • trunk/MagicSoft/Cosy/tpoint/starg200608.txt

    r8568 r8570  
    150150
    151151# 14.08.2006 00:08:48.224
    152 44.25737 76.1243 44.18101 76.24191 21.24639 38.04556 -0.003436872 0.08360607 53961.006114 60 52.153766541
     152##44.25737 76.1243 44.18101 76.24191 21.24639 38.04556 -0.003436872 0.08360607 53961.006114 60 52.153766541
    153153
    154154# 16.08.2006 01:26:04.268
     
    157157
    158158# 16.08.2006 00:06:50.007
    159 33.65171 36.9621 33.70627 36.92187 0.945 60.71667 -0.01118547 -0.06308687 53963.007988 33 55.91350189
     159##33.65171 36.9621 33.70627 36.92187 0.945 60.71667 -0.01118547 -0.06308687 53963.007988 33 55.91350189
    160160-14.02903 41.75293 345.9813 41.79139 18.35083 72.73278 0.03734512 -0.01055019 53963.017848 30 46.427041588
    16116133.21299 39.17775 33.23214 39.20392 0.945 60.71667 -0.004790842 -0.02040282 53963.021044 47 51.586573724
  • trunk/MagicSoft/Cosy/tpoint/starg200610.txt

    r8568 r8570  
    2121# 04.10.2006 02:04:29.826
    2222-43.48844 80.05967 316.3895 80.15046 1.162222 35.62056 0.0020254 0.1447297 54012.086456 45 62.385113422
    23 -163.8454 81.63075 195.2049 81.81904 1.910556 20.80806 0.008981749 0.1861072 54012.100893 35 59.241356333
     23#-163.8454 81.63075 195.2049 81.81904 1.910556 20.80806 0.008981749 0.1861072 54012.100893 35 59.241356333
    2424
    2525# 03.10.2006 23:31:31.480
     
    8282177.8679 14.55913 177.8962 14.58251 1.101389 -46.71861 0.01414345 -0.014621 54019.033415 26 72.492254253
    8383179.233 14.58905 179.2602 14.63928 1.101389 -46.71861 0.02881377 -0.01776535 54019.038737 25 72.525094518
    84 -179.905 14.61782 180.1272 14.76863 1.101389 -46.71861 0.1521221 -0.01846981 54019.042123 26 72.340548204
     84##-179.905 14.61782 180.1272 14.76863 1.101389 -46.71861 0.1521221 -0.01846981 54019.042123 26 72.340548204
    8585-176.0979 14.57463 183.9303 14.63047 1.101389 -46.71861 0.1792556 -0.01104678 54019.057038 24 75.230850662
    8686
    8787# 11.10.2006 03:01:13.820
    88 -97.50783 2.643879 262.275 2.880347 21.52583 -5.571111 0.08208019 -0.02122428 54019.125854 15 102.52738658
     88##-97.50783 2.643879 262.275 2.880347 21.52583 -5.571111 0.08208019 -0.02122428 54019.125854 15 102.52738658
    8989
    9090# 11.10.2006 04:07:14.484
     
    133133-49.02501 21.01964 311.001 21.04816 19.74944 45.13083 0.06144763 -0.01638229 54020.061602 66 54.935028355
    134134-164.6875 16.77888 195.3459 16.79891 0.4380556 -42.30611 0.1365748 -0.01343263 54020.066891 38 56.51989603
    135 -140.9461 18.5844 219.0753 18.52699 22.96083 -29.62222 0.06236272 -0.00854584 54020.070395 40 57.334168242
     135##-140.9461 18.5844 219.0753 18.52699 22.96083 -29.62222 0.06236272 -0.00854584 54020.070395 40 57.334168242
    136136
    137137# 13.10.2006 02:33:10.326
  • trunk/MagicSoft/Cosy/tpoint/starg200611.txt

    r8568 r8570  
    418418
    419419# 29.11.2006 19:55:36.369
    420 69.43512 5.898449 69.11355 6.070534 5.6275 21.1425 0.02137416 -0.02402933 54068.830282 24 76.482958412
     420##69.43512 5.898449 69.11355 6.070534 5.6275 21.1425 0.02137416 -0.02402933 54068.830282 24 76.482958412
    421421
    422422# 29.11.2006 21:45:37.922
  • trunk/MagicSoft/Cosy/tpoint/starg200612.txt

    r8568 r8570  
    230230
    231231# 29.12.2006 01:16:19.278
    232 -141.5291 4.761446 218.2554 4.948793 2.971111 -40.30472 0.03696056 -0.03690685 54098.053001 15 76.389399811
     232##-141.5291 4.761446 218.2554 4.948793 2.971111 -40.30472 0.03696056 -0.03690685 54098.053001 15 76.389399811
    233233
    234234# 29.12.2006 00:13:40.221
     
    294294
    295295# 28.12.2006 23:28:55.575
    296 -125.3518 42.53172 234.2042 42.68037 2.3225 -2.9775 0.03852677 0.006507789 54097.978421 36 61.382915879
     296##-125.3518 42.53172 234.2042 42.68037 2.3225 -2.9775 0.03852677 0.006507789 54097.978421 36 61.382915879
    297297
    298298# 29.12.2006 00:22:25.845
     
    318318
    319319# 29.12.2006 01:00:55.154
    320 -107.9521 24.49372 251.6001 24.65375 2.3225 -2.9775 0.02825901 2.775316e-05 54098.042305 35 67.51768431
     320##-107.9521 24.49372 251.6001 24.65375 2.3225 -2.9775 0.02825901 2.775316e-05 54098.042305 35 67.51768431
    321321
    322322# 28.12.2006 22:45:40.093
     
    360360
    361361# 29.12.2006 23:05:52.849
    362 -4.015319 4.80647 355.795 4.991988 17.14639 65.71472 0.03232907 -0.04920624 54098.962417 24 82.35944707
     362#-4.015319 4.80647 355.795 4.991988 17.14639 65.71472 0.03232907 -0.04920624 54098.962417 24 82.35944707
    363363
    364364# 29.12.2006 23:30:08.598
     
    368368
    369369# 30.12.2006 02:17:38.232
    370 -18.32551 56.75148 341.3548 56.85292 6.326944 59.01083 0.01134781 0.01885649 54099.095581 59 49.1675
     370#-18.32551 56.75148 341.3548 56.85292 6.326944 59.01083 0.01134781 0.01885649 54099.095581 59 49.1675
    371371
    372372# 30.12.2006 00:24:21.193
     
    404404
    405405# 30.12.2006 01:59:38.818
    406 6.276389 35.73588 6.016695 35.89383 9.618056 81.32639 0.03650354 0.001163716 54099.083088 40 50.39186673
     406##6.276389 35.73588 6.016695 35.89383 9.618056 81.32639 0.03650354 0.001163716 54099.083088 40 50.39186673
    407407
    408408# 30.12.2006 02:05:46.275
    409 11.12723 21.39161 10.90714 21.54778 15.73417 77.79444 0.01684755 -0.02496617 54099.087341 36 54.827958412
     409##11.12723 21.39161 10.90714 21.54778 15.73417 77.79444 0.01684755 -0.02496617 54099.087341 36 54.827958412
    410410
    411411# 29.12.2006 22:16:49.671
     
    448448
    449449# 29.12.2006 23:13:11.750
    450 -3.267682 4.701214 356.5327 4.884759 17.14639 65.71472 0.03110377 -0.03769408 54098.967497 28 82.673355388
     450##-3.267682 4.701214 356.5327 4.884759 17.14639 65.71472 0.03110377 -0.03769408 54098.967497 28 82.673355388
    451451
    452452# 29.12.2006 21:01:41.498
     
    472472
    473473# 30.12.2006 01:29:23.933
    474 23.81877 33.63767 23.57987 33.71723 11.52333 69.33111 -0.04228798 7.030744e-06 54099.062083 42 52.097689036
     474##23.81877 33.63767 23.57987 33.71723 11.52333 69.33111 -0.04228798 7.030744e-06 54099.062083 42 52.097689036
    475475
    476476# 29.12.2006 20:30:30.291
     
    487487
    488488# 30.12.2006 01:35:29.990
    489 23.39091 28.75334 23.16234 28.90792 12.55806 69.78833 0.02538407 -0.008007721 54099.066319 39 53.139669187
     489##23.39091 28.75334 23.16234 28.90792 12.55806 69.78833 0.02538407 -0.008007721 54099.066319 39 53.139669187
    490490
    491491# 29.12.2006 23:58:11.398
     
    496496
    497497# 29.12.2006 23:08:23.136
    498 -3.760981 4.768385 356.0488 4.956972 17.14639 65.71472 0.03592046 -0.04682564 54098.964157 26 82.420222117
     498##-3.760981 4.768385 356.0488 4.956972 17.14639 65.71472 0.03592046 -0.04682564 54098.964157 26 82.420222117
    499499
    500500# 29.12.2006 21:09:21.640
     
    523523
    524524# 30.12.2006 01:49:16.389
    525 15.00587 23.18055 14.77355 23.33683 14.45861 75.69611 0.02137554 -0.008550698 54099.075884 34 55.09721172
     525##15.00587 23.18055 14.77355 23.33683 14.45861 75.69611 0.02137554 -0.008550698 54099.075884 34 55.09721172
    526526
    527527# 29.12.2006 20:57:14.606
     
    556556
    557557# 30.12.2006 01:24:13.038
    558 26.18508 46.50922 25.93323 46.63703 9.525556 63.06194 0.0243861 0.01169257 54099.058484 36 50.279229679
     558##26.18508 46.50922 25.93323 46.63703 9.525556 63.06194 0.0243861 0.01169257 54099.058484 36 50.279229679
    559559
    560560# 29.12.2006 21:29:22.616
     
    589589
    590590# 30.12.2006 02:09:13.045
    591 14.2523 8.304267 14.03734 8.407043 17.14639 65.71472 -0.0464444 -0.02288311 54099.089734 27 70.511379962
     591##14.2523 8.304267 14.03734 8.407043 17.14639 65.71472 -0.0464444 -0.02288311 54099.089734 27 70.511379962
    592592
    593593# 30.12.2006 00:47:49.457
  • trunk/MagicSoft/Cosy/tpoint/starg200701.txt

    r8568 r8570  
    119119
    120120# 09.01.2007 01:07:53.889
    121 -82.91452 44.95564 276.3387 45.08465 3.791389 24.105 0.02185964 -0.00883984 54109.047151 25 69.660430057
     121##-82.91452 44.95564 276.3387 45.08465 3.791389 24.105 0.02185964 -0.00883984 54109.047151 25 69.660430057
    122122
    123123# 09.01.2007 00:17:39.826
     
    140140
    141141# 09.01.2007 00:59:04.265
    142 -127.2178 28.94458 232.4926 29.08519 3.967222 -13.50861 0.01135579 -0.02256062 54109.041022 15 68.110680529
     142##-127.2178 28.94458 232.4926 29.08519 3.967222 -13.50861 0.01135579 -0.02256062 54109.041022 15 68.110680529
    143143
    144144# 09.01.2007 00:02:33.063
    145 -13.45951 26.67505 346.26 26.8263 23.65583 77.6325 0.02056931 -0.01334308 54109.001772 18 54.748199433
     145##-13.45951 26.67505 346.26 26.8263 23.65583 77.6325 0.02056931 -0.01334308 54109.001772 18 54.748199433
    146146
    147147# 09.01.2007 00:22:27.200
  • trunk/MagicSoft/Cosy/tpoint/starg200702.txt

    r8568 r8570  
    393923.79393 10.97569 23.8289 11.01226 16.39972 61.51417 0.0132208 -0.03177664 54155.959931 34 56.55092155
    404017.33236 25.07472 17.34482 25.11375 14.845 74.15556 0.02070193 -0.006507297 54155.963106 25 49.564678639
    41 49.71394 10.37563 49.49719 10.53556 15.0325 40.39056 0.01397247 -0.0353923 54155.965974 25 57.794380907
     41##49.71394 10.37563 49.49719 10.53556 15.0325 40.39056 0.01397247 -0.0353923 54155.965974 25 57.794380907
    4242-70.21946 79.2322 289.6389 79.25526 7.576667 31.88833 -0.003276678 0.1489041 54155.969815 38 50.751961248
    4343
     
    102102# 27.02.2007 23:30:39.938
    103103-170.8536 20.47767 189.1731 20.50191 8.059722 -40.00333 0.03539627 -0.01787253 54158.979629 83 68.567282609
    104 -167.9827 19.21775 191.8011 19.40514 7.870278 -40.57583 0.04779855 -0.01931203 54158.981373 80 69.700241021
     104##-167.9827 19.21775 191.8011 19.40514 7.870278 -40.57583 0.04779855 -0.01931203 54158.981373 80 69.700241021
    105105-172.2875 13.28763 187.7415 13.31333 8.158889 -47.33667 0.02881222 -0.0200932 54158.983465 77 77.654834594
    106106177.6709 17.76638 177.7401 17.79638 9.133333 -43.4325 0.02538218 -0.02102536 54158.984852 64 70.745051985
  • trunk/MagicSoft/Cosy/tpoint/starg200703.txt

    r8568 r8570  
    797932.90204 31.12065 32.92691 31.15903 16.39972 61.51417 0.007444802 -0.01776568 54169.054348 31 74.45026465
    808035.67708 38.72002 35.6835 38.76152 15.41556 58.96611 0.01770323 -0.007397176 54169.055484 32 74.393983932
    81 24.46 45.9231 24.23528 46.04378 14.07306 64.37583 0.01147657 -0.00140289 54169.05706 32 72.725869565
     81##24.46 45.9231 24.23528 46.04378 14.07306 64.37583 0.01147657 -0.00140289 54169.05706 32 72.725869565
    828215.81469 37.5401 15.79992 37.57117 14.845 74.15556 -0.04760173 0.01683843 54169.058664 27 73.49100189
    8383
    8484# 10.03.2007 00:35:18.488
    85 -61.98982 33.28737 297.6899 33.4397 5.995278 37.2125 0.02925235 -0.007617436 54169.02452 19 69.395203214
     85##-61.98982 33.28737 297.6899 33.4397 5.995278 37.2125 0.02925235 -0.007617436 54169.02452 19 69.395203214
    8686-154.7753 71.6306 205.1569 71.66319 10.13944 11.96722 0.02838914 0.07385127 54169.029597 34 69.004187146
    8787139.8661 79.41267 139.7284 79.44665 11.235 20.52361 0.02287761 0.1515234 54169.033159 26 70.169258034
  • trunk/MagicSoft/Cosy/tpoint/starg200706.txt

    r8568 r8570  
    2424-58.17211 88.98067 301.8963 89.08253 17.96278 29.24778 0 0 54254.103137 52 67.611545369
    2525-101.059 65.10628 258.9387 65.1548 16.50361 21.48972 -0.05791216 -0.03920462 54254.112757 43 67.934319471
    26 50.03849 82.5615 49.46401 82.62217 18.83472 33.36278 0.06944439 0.6381071 54254.117936 78 68.337277883
     26##50.03849 82.5615 49.46401 82.62217 18.83472 33.36278 0.06944439 0.6381071 54254.117936 78 68.337277883
    2727-21.86293 63.75523 338.0652 63.77347 17.50722 52.30139 -0.02410645 0.1200334 54254.124779 41 73.550316635
    2828-6.170107 79.98216 353.3393 79.9897 18.61556 38.78361 0.07473618 0.5782356 54254.131541 8 139.9899811
  • trunk/MagicSoft/Cosy/tpoint/tpoint0604.txt

    r8547 r8570  
    10710762.76163 79.03668 205.088 70.01983 15.25833 33.31472 0.01402154 0.07380006 53829.119153 220 3.579
    108108120.6282 86.66633 262.2385 77.63959 14.74972 27.07417 0.01246297 0.2416733 53829.121395 219.9 2.923
    109 ##-32.77347 88.06979 108.0768 79.19966 14.53056 30.37139 0.03776824 0.4777029 53829.124531 216 3.597
     109-32.77347 88.06979 108.0768 79.19966 14.53056 30.37139 0.03776824 0.4777029 53829.124531 216 3.597
    110110-8.590648 80.33966 133.661 71.47017 14.53472 38.30833 0.02533357 0.09882537 53829.126479 215.2 3.355
    111111
     
    12212234.56055 62.79323 177.0697 53.8156 13.79222 49.31333 0.02963412 0.01347078 53830.022964 199.8 2.686
    123123
    124 19.93937 61.178 162.4332 52.28303 13.39861 54.92528 0.1097129 0.03040379 53830.025645 211.8 2.758
    125 32.65213 46.6038 175.1667 37.71592 15.41556 58.96611 0.101772 0.03637113 53830.028368 216.4 3.434
     124##19.93937 61.178 162.4332 52.28303 13.39861 54.92528 0.1097129 0.03040379 53830.025645 211.8 2.758
     125##32.65213 46.6038 175.1667 37.71592 15.41556 58.96611 0.101772 0.03637113 53830.028368 216.4 3.434
    12612632.19981 39.39725 174.7312 30.45071 16.39972 61.51417 0.03687495 0.02541495 53830.031085 219.1 3.206
    127127
     
    237237
    238238163.8613 32.63075 306.3679 23.6847 14.10611 -26.6825 0.03187289 0.01381351 53831.056038 221.4 3.353
    239 #148.6646 38.56182 290.4875 29.89164 14.84806 -16.04167 0.3115597 0.7063722 53831.058437 227.6 4.485
     239##148.6646 38.56182 290.4875 29.89164 14.84806 -16.04167 0.3115597 0.7063722 53831.058437 227.6 4.485
    240240
    241241137.0777 41.36664 279.5793 32.40509 15.28333 -9.383056 0.02377039 0.02639057 53831.060584 234.8 2.982
     
    245245
    246246170.9597 24.13072 313.4821 15.18573 14.11139 -36.37 0.02932651 0.001117627 53831.069953 224.4 2.657
    247 #177.08 19.36069 319.5913 10.50675 13.825 -41.68778 0.1172856 0.01296893 53831.076222 218.8 3.563
     247##177.08 19.36069 319.5913 10.50675 13.825 -41.68778 0.1172856 0.01296893 53831.076222 218.8 3.563
    248248
    249249# --- 06.04.2006 02:00:48.000
    250250
    251251170.3025 18.13392 312.8512 9.205984 14.59167 -42.15778 0.04208147 -0.02520068 53831.083889 215.3 2.739
    252 167.5934 16.46575 310.1122 7.59479 14.97556 -43.13389 0.0997214 0.009463094 53831.088848 240 2.983
    253 
    254 #51.78985 14.74702 194.3828 5.801819 20.37056 40.25667 0.02308418 -0.02308396 53831.095473 236.8 2.78
     252##167.5934 16.46575 310.1122 7.59479 14.97556 -43.13389 0.0997214 0.009463094 53831.088848 240 2.983
     25351.78985 14.74702 194.3828 5.801819 20.37056 40.25667 0.02308418 -0.02308396 53831.095473 236.8 2.78
    255254
    25625555.58318 8.186286 198.1165 -0.7514655 20.77028 33.97028 0.04616016 0.03656404 53831.097659 240 2.983
    25725646.27852 15.22647 188.8531 6.27853 20.69056 45.28028 0.02384568 -0.006210657 53831.101693 228 2.597
    25825727.87115 18.51438 170.4003 9.58447 21.30972 62.58556 0.04369169 0.03580769 53831.104263 219.2 3.087
    259 #108.9676 84.81641 250.8211 75.93314 14.74972 27.07417 0.1549873 0.2608619 53831.110027 208.1 3.532
     258108.9676 84.81641 250.8211 75.93314 14.74972 27.07417 0.1549873 0.2608619 53831.110027 208.1 3.532
    260259
    261260109.9341 85.17252 251.8456 76.1598 14.74972 27.07417 0.02720343 0.167941 53831.110791 203.7 2.873
     
    271270#49 48 0 25.04.2006 20:45:57.428
    272271
    273 #15.20395 54.7878 157.8271 45.80993 11.06222 61.75083 0.01807188 -0.08889423 53850.865248 213.6 2.628
    274 
    275 #-178.1645 88.03382 324.849 79.01849 15.57806 26.71472 -0.1091864 -1.63953 53851.105044 196.7 2.757
    276 
    277 #-128.8073 33.3521 13.78008 24.49336 13.42 -11.16139 -0.01560177 -0.06686684 53851.130378 211.4 2.566
    278 
    279 #-102.4267 60.63057 40.22636 51.75929 14.26111 19.1825 -0.00426937 -0.1814624 53851.134447 215.5 2.558
    280 
    281 #60.27422 44.20201 202.9008 35.23321 20.37056 40.25667 0.01921815 -0.07259198 53851.152129 216.4 2.745
     27215.20395 54.7878 157.8271 45.80993 11.06222 61.75083 0.01807188 -0.08889423 53850.865248 213.6 2.628
     273##-178.1645 88.03382 324.849 79.01849 15.57806 26.71472 -0.1091864 -1.63953 53851.105044 196.7 2.757
     274-128.8073 33.3521 13.78008 24.49336 13.42 -11.16139 -0.01560177 -0.06686684 53851.130378 211.4 2.566
     275-102.4267 60.63057 40.22636 51.75929 14.26111 19.1825 -0.00426937 -0.1814624 53851.134447 215.5 2.558
     27660.27422 44.20201 202.9008 35.23321 20.37056 40.25667 0.01921815 -0.07259198 53851.152129 216.4 2.745
  • trunk/MagicSoft/Cosy/tpoint/tpoint0607.txt

    r8569 r8570  
    66-114.5083 74.39499 27.95033 65.54521 16.50361 21.48972 0.03571281 -0.06099614 53921.99144 226 2.907
    77-4.898845 66.33226 137.6135 57.47836 17.50722 52.30139 0.02037746 -0.01503462 53921.999749 219.4 2.94
    8 1.695262 67.13222 144.2004 58.25633 17.94333 51.48889 0.1350897 -0.003336151 53922.006083 219.5 2.698
    9 -1.092986 67.36229 141.446 58.39876 17.94333 51.48889 -0.08651794 -0.04342924 53922.010808 221.9 2.665
     8##1.695262 67.13222 144.2004 58.25633 17.94333 51.48889 0.1350897 -0.003336151 53922.006083 219.5 2.698
     9##-1.092986 67.36229 141.446 58.39876 17.94333 51.48889 -0.08651794 -0.04342924 53922.010808 221.9 2.665
    1010123.4238 58.20059 265.9804 49.22838 19.84639 8.868333 0.02903626 -0.04432821 53922.015044 224.9 2.567
    1111-85.33401 14.53542 57.20818 5.683289 13.03639 10.95917 -0.01530878 -0.02150499 53922.025122 230.6 3.079
    12 -12.49278 66.62709 130.0433 57.64333 17.94333 51.48889 -0.1082455 -0.04261534 53922.030975 238.7 2.674
     12##-12.49278 66.62709 130.0433 57.64333 17.94333 51.48889 -0.1082455 -0.04261534 53922.030975 238.7 2.674
    1313-83.21519 29.59222 59.34873 20.74755 14.26111 19.1825 -0.002148711 -0.04665637 53922.039195 219.4 2.561
    1414
     
    2424
    2525# 08.07.2006 00:35:01.162
    26 11.25926 79.77475 153.84 70.71949 18.61556 38.78361 -0.02664664 -0.1890818 53924.024319 240 2.568
     26##11.25926 79.77475 153.84 70.71949 18.61556 38.78361 -0.02664664 -0.1890818 53924.024319 240 2.568
    2727-47.70395 33.32936 94.90227 24.46703 13.79222 49.31333 -0.02054358 -0.07731299 53924.028404 240 2.654
    2828
     
    4545-62.80504 51.07233 79.74582 42.20923 18.61556 38.78361 -0.007869166 -0.04503269 53928.147497 217.7 1.343
    4646-44.99628 42.26766 97.5381 33.41469 17.94333 51.48889 -0.005051654 -0.01015477 53928.151037 237.1 2.208
    47 -51.30787 68.92046 91.16271 59.99296 20.37056 40.25667 -0.05520677 -0.007451962 53928.153501 144.7 2.13
     47##-51.30787 68.92046 91.16271 59.99296 20.37056 40.25667 -0.05520677 -0.007451962 53928.153501 144.7 2.13
    4848-117.2444 54.10075 25.25232 45.23834 19.84639 8.868333 -0.0005431548 -0.01221636 53928.160061 233.7 1.645
    4949-98.50187 24.30442 44.01871 15.44667 17.72444 4.567222 -0.02237514 -0.008621322 53928.163076 219.9 4.116
    50 -162.8194 70.48158 339.6164 61.50356 21.73639 9.875 -0.09808797 -0.01392911 53928.16636 221.6 2.131
     50##-162.8194 70.48158 339.6164 61.50356 21.73639 9.875 -0.09808797 -0.01392911 53928.16636 221.6 2.131
    5151-174.7515 60.85385 327.7325 51.98679 22.09639 -0.3197222 0.001978712 -0.0117325 53928.172397 222.1 3.022
    52 -153.5888 69.35026 348.8759 60.38326 21.73639 9.875 -0.08555919 -0.02770761 53928.175853 227.2 2.189
     52##-153.5888 69.35026 348.8759 60.38326 21.73639 9.875 -0.08555919 -0.02770761 53928.175853 227.2 2.189
    5353143.4705 73.58618 285.9112 64.59444 23.07944 15.20528 0.03058917 -0.008841797 53928.178382 235 2.396
    545492.90826 82.48469 235.2043 73.48938 23.06278 28.08278 0.03871052 -0.01416706 53928.181966 233.7 1.865
     
    5757-29.56841 88.36237 111.7448 79.37769 22.71667 30.22139 -0.08074063 -0.0171675 53928.193776 232.4 2.657
    5858106.2769 87.7279 247.7817 78.733 23.06278 28.08278 0.0492475 -0.02722019 53928.198741 219.6 1.899
    59 84.42359 74.75936 226.8676 65.84928 0.1397222 29.09056 0.1142629 -0.001146242 53928.202278 199.8 2.079
     59##84.42359 74.75936 226.8676 65.84928 0.1397222 29.09056 0.1142629 -0.001146242 53928.202278 199.8 2.079
    606084.41008 75.09166 226.9183 66.10608 0.1397222 29.09056 0.03913326 -0.06322873 53928.203095 214.3 2.086
    6161
     
    6767
    6868# 12.07.2006 23:49:18.324
    69 34.24938 77.56582 177.0856 68.41859 18.61556 38.78361 -0.1217685 -0.4144352 53928.992573 222.1 6.357
     69##34.24938 77.56582 177.0856 68.41859 18.61556 38.78361 -0.1217685 -0.4144352 53928.992573 222.1 6.357
    7070-153.4348 72.12998 349.0096 63.25024 17.58222 12.56 0.003652054 -0.02035591 53928.997387 210.9 1.954
    7171-129.73 44.33233 12.77907 35.47399 16.23917 -3.694444 -0.007684504 -0.01174475 53929.011931 221.9 2.272
    72 -152.2181 63.30009 350.2675 54.32059 17.72444 4.567222 -0.114385 -0.03590927 53929.014686 213.4 2.294
     72##-152.2181 63.30009 350.2675 54.32059 17.72444 4.567222 -0.114385 -0.03590927 53929.014686 213.4 2.294
    7373-150.3161 62.78753 352.1523 53.91906 17.72444 4.567222 0.0005349575 -0.009019848 53929.017299 223.4 2.355
    7474-109.5851 42.8065 32.94817 33.95012 15.73778 6.425556 -0.007267436 -0.03756312 53929.020527 228.7 2.363
     
    8888
    8989# 14.07.2006 03:52:49.356
    90 -179.991 14.27643 322.545 5.401298 22.13722 -46.96111 0.09489849 -0.01075885 53930.161682 240 2.271
     90##-179.991 14.27643 322.545 5.401298 22.13722 -46.96111 0.09489849 -0.01075885 53930.161682 240 2.271
    9191137.1302 30.60738 279.667 21.64274 0.7263889 -17.98667 0.0122221 0.001236265 53930.163861 240 1.973
    9292137.2661 72.30543 279.7211 63.30588 23.07944 15.20528 0.01993321 -0.0119727 53930.166526 240 2.08
     
    9898# 14.07.2006 04:20:13.490
    999957.40615 46.30243 199.9967 37.32279 2.065 42.32972 0.01103377 -0.03856185 53930.180712 240 1.806
    100 28.91007 54.88338 171.4587 45.96619 0.675 56.53722 0.08103471 -0.008122809 53930.18316 240 1.915
    101 -16.11239 53.42236 126.4054 44.62638 21.30972 62.58556 0.06470211 0.007763926 53930.185355 240 2.059
     100##28.91007 54.88338 171.4587 45.96619 0.675 56.53722 0.08103471 -0.008122809 53930.18316 240 1.915
     101##-16.11239 53.42236 126.4054 44.62638 21.30972 62.58556 0.06470211 0.007763926 53930.185355 240 2.059
    102102-52.68832 50.78524 89.83966 41.93279 19.74944 45.13083 0.003928667 -0.01691673 53930.188206 240 2.439
    103103-61.35144 37.38268 81.21011 28.51742 18.61556 38.78361 -0.02086771 -0.04159965 53930.190976 240 1.272
     
    11311376.51591 45.53187 219.048 36.55035 0.1397222 29.09056 0.006714161 0.01701412 53930.102777 240 1.849
    11411464.77948 35.307 207.3412 26.33845 1.162222 35.62056 0.01399532 -0.001511302 53930.106286 240 1.664
    115 5.266191 55.81979 147.7819 46.907 21.30972 62.58556 0.08449984 0.01253303 53930.109288 240 2.079
     115##5.266191 55.81979 147.7819 46.907 21.30972 62.58556 0.08449984 0.01253303 53930.109288 240 2.079
    116116-43.27974 45.2357 99.25782 36.38625 17.50722 52.30139 0.0008162767 -0.01514064 53930.113436 240 2.272
    117117
  • trunk/MagicSoft/Cosy/tpoint/tpoint0608.txt

    r8569 r8570  
    8484-38.53452 65.85814 103.9561 57.01386 17.65778 46.00639 0.03127491 -0.0089906 53958.955669 3305 3.549
    8585109.7227 49.30327 252.249 40.33157 21.73639 9.875 0.02353443 0.002643602 53958.958953 3802 1.812
    86 158.3389 46.25506 300.8054 37.23833 20.29417 -12.50833 -0.02803786 0.04736358 53958.9637 3456 2.422
     86##158.3389 46.25506 300.8054 37.23833 20.29417 -12.50833 -0.02803786 0.04736358 53958.9637 3456 2.422
    8787-175.4888 39.40336 327.0297 30.54605 19.07806 -21.74167 -0.009579203 -0.01043967 53958.965708 3289 3.206
    8888137.1503 77.73064 279.5272 68.73645 19.97917 19.49222 0.03412135 -0.006631294 53958.968291 3523 2.716
     
    133133
    134134# 13.08.2006 01:17:28.408
    135 -170.8067 13.17237 331.7485 4.258182 20.62611 -47.29139 -0.07865906 -0.03045465 53960.053801 3438 5.274
    136 168.0015 12.78202 310.5701 3.909294 22.71111 -46.88472 0.09778406 -0.04082779 53960.055936 3504 0.9785
     135##-170.8067 13.17237 331.7485 4.258182 20.62611 -47.29139 -0.07865906 -0.03045465 53960.053801 3438 5.274
     136##168.0015 12.78202 310.5701 3.909294 22.71111 -46.88472 0.09778406 -0.04082779 53960.055936 3504 0.9785
    137137
    138138# 13.08.2006 23:42:38.835
     
    14914936.76635 40.41357 179.3188 31.46784 0.8183333 57.81583 0.03899313 0.00900471 53961.025267 3376 2.79
    15015021.86645 56.18407 164.3987 47.2512 22.48611 58.41528 0.06601692 0.007880191 53961.026819 3322 2.953
    151 -3.018363 56.91013 139.5094 47.96389 20.75472 61.83889 -0.08197691 -0.000689458 53961.029025 3201 2.746
     151##-3.018363 56.91013 139.5094 47.96389 20.75472 61.83889 -0.08197691 -0.000689458 53961.029025 3201 2.746
    15215216.17439 49.02269 158.7082 40.0804 22.82806 66.20056 0.04979615 0.01042215 53961.030988 3485 2.944
    15315316.69147 58.28677 159.2268 49.35639 22.18083 58.20111 0.07075489 -0.01667912 53961.032514 3269 2.619
     
    157157
    158158# 14.08.2006 00:08:33.406
    159 44.38591 76.08638 186.8401 67.18043 21.24639 38.04556 0.1210477 -0.007248026 53961.005942 3257 5.052
     159##44.38591 76.08638 186.8401 67.18043 21.24639 38.04556 0.1210477 -0.007248026 53961.005942 3257 5.052
    160160
    161161# 16.08.2006 01:25:52.244
     
    164164
    165165# 16.08.2006 00:11:04.425
    166 33.65885 36.90995 176.2092 27.89963 0.945 60.71667 -0.02903911 0.008521885 53963.00769 3305 2.239
    167 34.02998 43.37055 176.5727 34.3579 0.1530556 59.14972 -0.02610821 0.02787497 53963.009578 3524 2.348
     166##33.65885 36.90995 176.2092 27.89963 0.945 60.71667 -0.02903911 0.008521885 53963.00769 3305 2.239
     167##34.02998 43.37055 176.5727 34.3579 0.1530556 59.14972 -0.02610821 0.02787497 53963.009578 3524 2.348
    168168-14.01438 41.76413 128.5258 32.91632 18.35083 72.73278 0.001109679 0.0001890698 53963.017702 3460 3.868
    16916933.22159 39.14225 175.7841 30.1893 0.945 60.71667 0.03096758 0.001249165 53963.020839 3414 2.398
     
    17217237.86317 42.91187 180.4031 33.95266 0.675 56.53722 0.02836029 0.01535176 53963.025542 3390 2.38
    17317340.14338 22.75009 182.6948 13.80529 3.08 53.50639 0.02883903 0.01519225 53963.027485 3529 3.57
    174 49.67325 9.463452 191.813 0.5123742 3.964167 40.01028 0.02389424 0.4287752 53963.02946 3971 7.606
     174##49.67325 9.463452 191.813 0.5123742 3.964167 40.01028 0.02389424 0.4287752 53963.02946 3971 7.606
    175175111.0854 60.42141 253.604 51.442 23.07944 15.20528 0.02599638 -0.006936358 53963.03165 3546 2.56
    176176157.203 69.75636 299.6651 60.7621 21.73639 9.875 0.02021931 -0.00896205 53963.033132 3341 2.262
  • trunk/MagicSoft/Cosy/tpoint/tpoint0609.txt

    r8569 r8570  
    4040# 10.09.2006 22:15:14.422
    414111.38321 73.01351 153.8528 64.02985 20.69056 45.28028 0.03525503 -0.004387442 53988.92725 4371 1.327
    42 10.39945 54.97069 152.9289 46.11431 21.30972 62.58556 0.1426281 0.00429608 53988.930016 4275 2.174
    43 9.447343 55.14666 151.969 46.30781 21.30972 62.58556 0.1567546 0.01110421 53988.933505 4384 2.08
     42##10.39945 54.97069 152.9289 46.11431 21.30972 62.58556 0.1426281 0.00429608 53988.930016 4275 2.174
     43##9.447343 55.14666 151.969 46.30781 21.30972 62.58556 0.1567546 0.01110421 53988.933505 4384 2.08
    4444-89.0062 75.17325 53.39391 66.3174 19.51194 27.95972 0.02746787 -0.003412955 53988.937888 4185 2.464
    4545-42.75132 46.89488 99.77304 38.05213 17.50722 52.30139 0.009475473 -0.003927287 53988.94459 4114 3.042
  • trunk/MagicSoft/Cosy/tpoint/tpoint0610.txt

    r8569 r8570  
    2424# 04.10.2006 02:04:10.971
    2525-43.23649 80.10705 99.12011 71.30044 1.162222 35.62056 0.08876727 -0.02269734 54012.086238 3881 1.261
    26 -164.3209 81.64787 337.1563 72.93082 1.910556 20.80806 0.1793105 0.7636045 54012.100686 3983 5.739
     26##-164.3209 81.64787 337.1563 72.93082 1.910556 20.80806 0.1793105 0.7636045 54012.100686 3983 5.739
    2727
    2828# 03.10.2006 23:30:50.036
     
    6969175.4542 31.51356 317.978 22.54614 22.96083 -29.62222 0.009242302 -0.00575458 54017.943188 3006 1.354
    7070178.3941 31.65156 320.9179 22.68163 22.96083 -29.62222 0.00659737 -0.00685471 54017.951182 3021 1.372
    71 -179.8533 31.80972 322.6707 22.83664 22.96083 -29.62222 -0.1326107 -0.01030173 54017.955944 2989 1.311
     71##-179.8533 31.80972 322.6707 22.83664 22.96083 -29.62222 -0.1326107 -0.01030173 54017.955944 2989 1.311
    7272
    7373# 10.10.2006 00:33:39.932
     
    9393179.1773 14.58811 321.7123 5.639477 1.101389 -46.71861 0.02140904 -0.009357211 54019.038519 7254 3.431
    9494-179.9567 14.61791 322.5774 5.681476 1.101389 -46.71861 -0.001312156 -0.01371057 54019.041921 2912 3.444
    95 -176.2273 14.5854 326.3115 5.625834 1.101389 -46.71861 -0.123422 -0.01709465 54019.05653 3755 3.324
     95##-176.2273 14.5854 326.3115 5.625834 1.101389 -46.71861 -0.123422 -0.01709465 54019.05653 3755 3.324
    9696-172.7712 14.07966 329.7672 5.212713 1.101389 -46.71861 -0.03081941 -0.01602917 54019.07016 2831 3.33
    9797-172.2287 13.98787 330.3023 5.125502 1.101389 -46.71861 -0.02726928 -0.01239688 54019.072302 2840 3.484
    9898
    9999# 11.10.2006 03:00:37.672
    100 -97.58133 2.768576 44.69722 -5.909089 21.52583 -5.571111 0.1543874 0.2383649 54019.125436 2951 5.766
     100##-97.58133 2.768576 44.69722 -5.909089 21.52583 -5.571111 0.1543874 0.2383649 54019.125436 2951 5.766
    101101
    102102# 11.10.2006 04:06:28.380
     
    107107-131.2143 70.66999 11.22986 61.77789 0.2205556 15.18361 -0.02062332 -0.01505777 54020.043876 2964 2.34
    108108-106.4517 56.34906 36.0429 47.481 23.07944 15.20528 -0.00553647 -0.01225791 54020.047597 2990 2.063
    109 -82.90097 60.24929 59.5861 51.30009 23.06278 28.08278 -0.08320395 -0.01047062 54020.048578 3037 1.589
     109##-82.90097 60.24929 59.5861 51.30009 23.06278 28.08278 -0.08320395 -0.01047062 54020.048578 3037 1.589
    110110-98.61279 35.44525 43.92076 26.57769 21.73639 9.875 -0.0249937 -0.0287552 54020.051244 2919 1.79
    111111
    112112# 12.10.2006 01:57:16.560
    113 -97.76736 45.95005 44.74583 37.02216 23.07944 15.20528 -0.07388231 -0.0123085 54020.081442 2770 2.1
     113##-97.76736 45.95005 44.74583 37.02216 23.07944 15.20528 -0.07388231 -0.0123085 54020.081442 2770 2.1
    114114
    115115# 12.10.2006 03:06:55.083
    116116165.4773 46.61858 308.0004 37.64595 3.967222 -13.50861 0.01536565 -0.01054351 54020.129804 2675 2.328
    117 2.231219 12.98669 144.7759 4.11881 14.845 74.15556 0.1047708 0.005246971 54020.133173 2968 1.848
     117##2.231219 12.98669 144.7759 4.11881 14.845 74.15556 0.1047708 0.005246971 54020.133173 2968 1.848
    11811826.44533 14.58339 169.0087 5.629874 11.06222 61.75083 0.0163905 0.003277504 54020.135566 2897 1.696
    119 31.3128 11.93825 173.8706 3.049363 11.03056 56.3825 0.08289331 0.0066955 54020.137257 2816 2.454
     119##31.3128 11.93825 173.8706 3.049363 11.03056 56.3825 0.08289331 0.0066955 54020.137257 2816 2.454
    120120142.3052 84.18912 284.4836 75.1807 3.791389 24.105 0.02872401 -0.03444397 54020.140082 3091 2.287
    121121-159.4297 85.0684 342.6388 76.16545 3.791389 24.105 -0.002536299 -0.02326663 54020.156062 3205 2.334
     
    128128
    129129# 12.10.2006 00:49:50.963
    130 -174.7276 43.25519 327.7838 34.29343 0.7263889 -17.98667 -0.1113298 -0.009497088 54020.034618 2772 1.676
     130##-174.7276 43.25519 327.7838 34.29343 0.7263889 -17.98667 -0.1113298 -0.009497088 54020.034618 2772 1.676
    131131-172.5291 18.50308 330.0079 9.62854 0.4380556 -42.30611 -0.03766382 -0.01645462 54020.038064 2928 2.61
    132132
     
    134134-97.52332 45.53788 44.98659 36.67305 23.07944 15.20528 -0.01019114 -0.009224873 54020.082553 2673 2.249
    135135-81.43815 62.18264 61.08745 53.31372 0.1397222 29.09056 -0.0001588669 -0.05080622 54020.087378 2852 1.776
    136 -60.05115 74.14105 82.4098 65.16187 1.162222 35.62056 -0.08338644 -0.02048421 54020.088721 2877 1.459
    137 -123.46 80.9885 18.86298 72.00677 2.119444 23.4625 -0.09225508 -0.04985317 54020.104255 3266 1.555
     136##-60.05115 74.14105 82.4098 65.16187 1.162222 35.62056 -0.08338644 -0.02048421 54020.088721 2877 1.459
     137##-123.46 80.9885 18.86298 72.00677 2.119444 23.4625 -0.09225508 -0.04985317 54020.104255 3266 1.555
    138138-29.16001 73.95846 113.2991 65.09306 2.065 42.32972 0.02065991 -0.01952744 54020.108114 3006 1.67
    13913917.10618 77.07148 159.5604 68.09565 3.136111 40.95556 0.04905945 -0.02506352 54020.109773 3232 1.737
    140 175.8022 65.16433 318.2862 56.30113 3.038056 4.089722 0.1451631 -0.01984201 54020.114618 3144 1.763
     140##175.8022 65.16433 318.2862 56.30113 3.038056 4.089722 0.1451631 -0.01984201 54020.114618 3144 1.763
    141141-31.42052 47.8339 111.1089 38.98566 0.1530556 59.14972 0.005919482 -0.003998032 54020.118982 2995 1.947
    142142-31.44664 47.80293 111.08 38.94794 0.1530556 59.14972 -0.001295864 -0.001380199 54020.119213 2885 1.938
    143 -32.12395 52.41964 110.4022 43.47817 0.675 56.53722 -0.08392526 -0.005651051 54020.121449 3074 1.76
     143##-32.12395 52.41964 110.4022 43.47817 0.675 56.53722 -0.08392526 -0.005651051 54020.121449 3074 1.76
    144144-24.80119 51.42386 117.7198 42.55928 0.945 60.71667 -0.01473543 -0.003441444 54020.122257 2940 1.819
    145 -21.3094 54.244 121.1973 45.28151 1.430278 60.23528 -0.1011429 0.01569079 54020.123219 2899 2.204
     145##-21.3094 54.244 121.1973 45.28151 1.430278 60.23528 -0.1011429 0.01569079 54020.123219 2899 2.204
    146146-30.85038 26.37739 111.6908 17.52248 21.30972 62.58556 -0.01949844 -0.004556111 54020.124216 3090 2.176
    147147
     
    152152-52.10853 31.67329 90.43408 22.80694 20.69056 45.28028 -0.02567097 -0.0149825 54020.057294 3019 1.381
    153153-56.67898 26.76455 85.85843 17.90136 20.37056 40.25667 -0.01862909 -0.006997054 54020.058537 2875 2.231
    154 -64.94425 29.30557 77.6122 20.37042 20.77028 33.97028 -0.09674413 -0.0352504 54020.059795 2834 2.349
     154##-64.94425 29.30557 77.6122 20.37042 20.77028 33.97028 -0.09674413 -0.0352504 54020.059795 2834 2.349
    155155-49.04978 21.08236 93.49212 12.21561 19.74944 45.13083 -0.03292848 -0.009627622 54020.061339 2838 3.34
    156 -164.7668 16.80381 337.7703 7.853466 0.4380556 -42.30611 -0.1165482 -0.0199491 54020.066591 2817 2.676
    157 -141.0574 18.67086 1.465868 9.71622 22.96083 -29.62222 -0.1197743 -0.01285764 54020.06996 2838 1.279
     156##-164.7668 16.80381 337.7703 7.853466 0.4380556 -42.30611 -0.1165482 -0.0199491 54020.066591 2817 2.676
     157##-141.0574 18.67086 1.465868 9.71622 22.96083 -29.62222 -0.1197743 -0.01285764 54020.06996 2838 1.279
    158158
    159159# 13.10.2006 02:32:28.317
     
    162162
    163163# 13.10.2006 02:35:33.088
    164 -117.6649 40.30622 0 90 0 0 0.05765585 0.05794547 54021.108022 2722 1.705
     164##-117.6649 40.30622 0 90 0 0 0.05765585 0.05794547 54021.108022 2722 1.705
    16516514.49516 67.91708 157.0089 58.93093 3.405278 49.86111 0.02587146 0.01880198 54021.108871 2809 1.614
    166 3.829738 65.02159 146.33 56.1541 3.08 53.50639 0.1345732 0.01206287 54021.1111 2717 2.406
     166##3.829738 65.02159 146.33 56.1541 3.08 53.50639 0.1345732 0.01206287 54021.1111 2717 2.406
    167167-106.9445 74.97878 35.50471 66.10336 2.119444 23.4625 0.002776267 -0.05523037 54021.122047 2815 1.607
    168168-164.6544 64.59377 337.8307 55.72015 3.038056 4.089722 -0.0005237247 -0.02252011 54021.134871 2876 1.751
  • trunk/MagicSoft/Cosy/tpoint/tpoint0611.txt

    r8569 r8570  
    8484
    8585# 08.11.2006 03:31:24.995
    86 -174.3766 52.92981 328.127 44.04846 5.242222 -8.201667 -0.01754652 -0.01168427 54047.146817 4805 0.8236
     86##-174.3766 52.92981 328.127 44.04846 5.242222 -8.201667 -0.01754652 -0.01168427 54047.146817 4805 0.8236
    8787
    8888# 08.11.2006 04:40:34.954
     
    110110
    111111# 08.11.2006 03:26:42.938
    112 -173.025 56.07106 329.4788 47.12626 5.130833 -5.086389 -0.1056357 -0.01291785 54047.143553 4966 2.507
     112##-173.025 56.07106 329.4788 47.12626 5.130833 -5.086389 -0.1056357 -0.01291785 54047.143553 4966 2.507
    113113
    114114# 08.11.2006 03:39:25.503
     
    134134
    135135# 08.11.2006 02:37:18.127
    136 161.2537 41.26189 303.7833 32.3756 5.545556 -17.82222 0.06879349 -0.0119897 54047.109238 2640 2.485
     136##161.2537 41.26189 303.7833 32.3756 5.545556 -17.82222 0.06879349 -0.0119897 54047.109238 2640 2.485
    137137
    138138# 08.11.2006 05:45:24.903
     
    161161
    162162# 09.11.2006 02:19:31.012
    163 157.1257 40.1786 299.6577 31.29508 5.545556 -17.82222 0.07130639 -0.01356714 54048.096887 5626 2.342
     163##157.1257 40.1786 299.6577 31.29508 5.545556 -17.82222 0.07130639 -0.01356714 54048.096887 5626 2.342
    164164
    165165# 09.11.2006 05:27:32.793
     
    167167
    168168# 09.11.2006 02:31:16.973
    169 145.5725 22.43712 288.109 13.54171 6.976944 -28.97222 0.06275379 -0.008441237 54048.105058 5262 1.603
     169##145.5725 22.43712 288.109 13.54171 6.976944 -28.97222 0.06275379 -0.008441237 54048.105058 5262 1.603
    170170
    171171# 09.11.2006 05:46:07.940
     
    354354
    355355# 11.11.2006 04:37:24.592
    356 173.2885 23.67746 315.8227 14.81849 7.285833 -37.0975 0.09698929 -0.008127411 54050.192646 5635 2.087
     356##173.2885 23.67746 315.8227 14.81849 7.285833 -37.0975 0.09698929 -0.008127411 54050.192646 5635 2.087
    357357174.2184 23.86271 316.7546 14.92092 7.285833 -37.0975 0.01412337 -0.009918548 54050.195628 5895 2.017
    358358
     
    361361
    362362# 11.11.2006 00:51:02.118
    363 2.011423 65.11017 144.5206 56.23965 3.08 53.50639 0.1007113 -0.01422786 54050.035441 5615 2.505
     363##2.011423 65.11017 144.5206 56.23965 3.08 53.50639 0.1007113 -0.01422786 54050.035441 5615 2.505
    364364
    365365# 11.11.2006 01:10:37.626
     
    376376
    377377# 11.11.2006 04:32:34.735
    378 175.5656 32.04872 318.09 23.18705 6.976944 -28.97222 0.09305463 -0.008750138 54050.189291 5801 1.451
     378##175.5656 32.04872 318.09 23.18705 6.976944 -28.97222 0.09305463 -0.008750138 54050.189291 5801 1.451
    379379
    380380# 11.11.2006 02:47:18.483
     
    428428
    429429# 29.11.2006 19:55:16.154
    430 69.3972 5.830596 211.6001 -2.985784 5.6275 21.1425 0.1507109 0.3456049 54068.830048 4796 5.831
     430##69.3972 5.830596 211.6001 -2.985784 5.6275 21.1425 0.1507109 0.3456049 54068.830048 4796 5.831
    431431
    432432# 29.11.2006 22:16:43.776
  • trunk/MagicSoft/Cosy/tpoint/tpoint0612.txt

    r8569 r8570  
    242242
    243243# 29.12.2006 01:16:01.749
    244 -141.5685 4.800143 0.704412 -3.919526 2.971111 -40.30472 0.1503868 0.252398 54098.052798 3259 5.935
     244##-141.5685 4.800143 0.704412 -3.919526 2.971111 -40.30472 0.1503868 0.252398 54098.052798 3259 5.935
    245245
    246246# 28.12.2006 23:38:00.888
     
    312312
    313313# 28.12.2006 23:28:27.055
    314 -125.4655 42.61635 16.6089 33.86769 2.3225 -2.9775 0.1101212 0.4375296 54097.978091 2883 5.853
     314##-125.4655 42.61635 16.6089 33.86769 2.3225 -2.9775 0.1101212 0.4375296 54097.978091 2883 5.853
    315315
    316316# 28.12.2006 22:38:17.121
     
    342342
    343343# 29.12.2006 01:00:23.335
    344 -108.033 24.60411 34.04559 15.87793 2.3225 -2.9775 0.1317746 0.4476913 54098.041937 3262 5.904
     344##-108.033 24.60411 34.04559 15.87793 2.3225 -2.9775 0.1317746 0.4476913 54098.041937 3262 5.904
    345345
    346346# 28.12.2006 22:45:26.866
     
    406406
    407407# 30.12.2006 02:16:58.682
    408 -18.19473 56.79757 124.0188 48.02164 6.326944 59.01083 0.09009142 0.3008587 54099.095124 3511 5.935
     408##-18.19473 56.79757 124.0188 48.02164 6.326944 59.01083 0.09009142 0.3008587 54099.095124 3511 5.935
    409409
    410410# 29.12.2006 23:42:29.064
     
    424424
    425425# 29.12.2006 23:05:34.454
    426 -4.046654 4.811361 138.2641 -3.906712 17.14639 65.71472 0.153189 0.2388854 54098.962204 3365 5.855
     426##-4.046654 4.811361 138.2641 -3.906712 17.14639 65.71472 0.153189 0.2388854 54098.962204 3365 5.855
    427427
    428428# 30.12.2006 01:51:56.074
    429 16.23395 18.23559 158.7958 9.341903 15.34556 71.83389 0.0646912 -0.01182471 54099.077732 3394 2.791
     429##16.23395 18.23559 158.7958 9.341903 15.34556 71.83389 0.0646912 -0.01182471 54099.077732 3394 2.791
    430430
    431431# 29.12.2006 21:25:13.742
     
    460460
    461461# 30.12.2006 01:46:35.055
    462 15.33216 21.02686 157.89 12.14675 14.845 74.15556 0.07631375 -0.008520981 54099.074017 3383 1.632
     462##15.33216 21.02686 157.89 12.14675 14.845 74.15556 0.07631375 -0.008520981 54099.074017 3383 1.632
    463463
    464464# 29.12.2006 21:07:16.079
     
    469469
    470470# 30.12.2006 01:59:24.860
    471 6.285041 35.73052 148.5694 26.89704 9.618056 81.32639 0.12145 0.2585308 54099.082927 3432 5.841
     471##6.285041 35.73052 148.5694 26.89704 9.618056 81.32639 0.12145 0.2585308 54099.082927 3432 5.841
    472472
    473473# 30.12.2006 02:05:28.641
    474 11.11674 21.37945 153.4199 12.56057 15.73417 77.79444 0.1393184 0.2450556 54099.087137 3531 5.904
     474##11.11674 21.37945 153.4199 12.56057 15.73417 77.79444 0.1393184 0.2450556 54099.087137 3531 5.904
    475475
    476476# 29.12.2006 23:12:35.959
    477 -3.328887 4.709089 138.9826 -4.010102 17.14639 65.71472 0.1524416 0.2372941 54098.967083 3374 5.96
     477##-3.328887 4.709089 138.9826 -4.010102 17.14639 65.71472 0.1524416 0.2372941 54098.967083 3374 5.96
    478478
    479479# 29.12.2006 22:16:34.842
     
    525525
    526526# 30.12.2006 00:50:43.221
    527 161.99 29.39587 304.5242 20.50979 7.401667 -29.30306 0.06842851 -0.008484257 54099.035222 3392 2
     527##161.99 29.39587 304.5242 20.50979 7.401667 -29.30306 0.06842851 -0.008484257 54099.035222 3392 2
    528528
    529529# 29.12.2006 23:57:53.398
     
    540540
    541541# 29.12.2006 23:07:56.542
    542 -3.806345 4.775042 138.5066 -3.954898 17.14639 65.71472 0.1526661 0.2370098 54098.963849 3375 5.972
     542##-3.806345 4.775042 138.5066 -3.954898 17.14639 65.71472 0.1526661 0.2370098 54098.963849 3375 5.972
    543543
    544544# 29.12.2006 20:30:14.110
     
    549549
    550550# 30.12.2006 01:29:15.155
    551 23.8208 33.62482 166.1263 24.79092 11.52333 69.33111 0.1218493 0.2388895 54099.061981 3220 5.904
     551##23.8208 33.62482 166.1263 24.79092 11.52333 69.33111 0.1218493 0.2388895 54099.061981 3220 5.904
    552552
    553553# 29.12.2006 22:36:16.111
     
    555555
    556556# 30.12.2006 01:35:15.336
    557 23.38863 28.73226 165.6983 19.90551 12.55806 69.78833 0.1291973 0.2365786 54099.06615 3253 5.967
     557##23.38863 28.73226 165.6983 19.90551 12.55806 69.78833 0.1291973 0.2365786 54099.06615 3253 5.967
    558558
    559559# 29.12.2006 21:09:00.326
     
    561561
    562562# 30.12.2006 00:08:04.074
    563 44.99382 39.85836 187.5405 30.98464 9.5475 51.67722 0.08481177 -0.007322661 54099.005603 3381 2.785
     563##44.99382 39.85836 187.5405 30.98464 9.5475 51.67722 0.08481177 -0.007322661 54099.005603 3381 2.785
    564564
    565565# 30.12.2006 02:44:54.539
     
    576576
    577577# 30.12.2006 01:48:59.864
    578 14.99782 23.16515 157.3051 14.3419 14.45861 75.69611 0.1349053 0.2408761 54099.075693 3383 5.963
     578##14.99782 23.16515 157.3051 14.3419 14.45861 75.69611 0.1349053 0.2408761 54099.075693 3383 5.963
    579579
    580580# 29.12.2006 20:56:55.443
     
    610610
    611611# 30.12.2006 01:23:57.816
    612 26.20746 46.48483 168.5002 37.631 9.525556 63.06194 0.1034313 0.2401603 54099.058308 3398 5.83
     612##26.20746 46.48483 168.5002 37.631 9.525556 63.06194 0.1034313 0.2401603 54099.058308 3398 5.83
    613613
    614614# 29.12.2006 22:56:15.061
     
    635635
    636636# 30.12.2006 02:08:55.373
    637 14.22599 8.288777 156.5394 -0.5280937 17.14639 65.71472 0.1492202 0.2378438 54099.08953 3454 5.918
     637##14.22599 8.288777 156.5394 -0.5280937 17.14639 65.71472 0.1492202 0.2378438 54099.08953 3454 5.918
    638638
    639639# 29.12.2006 21:16:52.713
     
    707707
    708708# 31.12.2006 00:16:20.540
    709 84.03424 62.77611 226.5389 53.87166 7.755278 28.02611 0.06440748 -0.009608853 54100.011349 3865 1.227
     709##84.03424 62.77611 226.5389 53.87166 7.755278 28.02611 0.06440748 -0.009608853 54100.011349 3865 1.227
    710710
    711711# 30.12.2006 21:29:33.029
     
    737737
    738738# 30.12.2006 21:10:36.366
    739 134.618 31.03618 277.159 22.16073 5.215556 -16.20556 0.08030475 -0.01345093 54099.882365 4039 3.245
     739##134.618 31.03618 277.159 22.16073 5.215556 -16.20556 0.08030475 -0.01345093 54099.882365 4039 3.245
    740740
    741741# 31.12.2006 01:50:35.785
     
    746746
    747747# 30.12.2006 21:04:52.707
    748 116.4952 50.355 259.0236 41.46192 4.830556 6.961389 0.06866954 -0.01524895 54099.878388 3985 3.004
     748##116.4952 50.355 259.0236 41.46192 4.830556 6.961389 0.06866954 -0.01524895 54099.878388 3985 3.004
    749749116.6109 50.51055 259.1432 41.56078 4.830556 6.961389 0.01279495 -0.02115717 54099.87874 4326 2.97
    750750
     
    762762
    763763# 31.12.2006 02:29:06.441
    764 28.42678 24.68175 170.9939 15.78397 14.07306 64.37583 0.05975852 -0.01923022 54100.103547 3390 3.805
     764##28.42678 24.68175 170.9939 15.78397 14.07306 64.37583 0.05975852 -0.01923022 54100.103547 3390 3.805
    765765
    766766# 31.12.2006 03:25:16.118
     
    813813
    814814# 30.12.2006 23:49:23.684
    815 31.20196 11.101 173.7619 2.18497 12.90056 55.95972 0.04724415 -0.006270268 54099.992635 3525 2.136
     815##31.20196 11.101 173.7619 2.18497 12.90056 55.95972 0.04724415 -0.006270268 54099.992635 3525 2.136
    816816
    817817# 30.12.2006 23:18:02.613
     
    859859
    860860# 30.12.2006 20:48:25.450
    861 80.94805 33.89582 223.5015 25.00744 6.382778 22.51361 0.06727998 -0.01578572 54099.866961 3997 2.107
     861##80.94805 33.89582 223.5015 25.00744 6.382778 22.51361 0.06727998 -0.01578572 54099.866961 3997 2.107
    862862
    863863# 31.12.2006 02:43:06.372
     
    901901
    902902# 30.12.2006 23:44:56.548
    903 8.468631 12.36002 151.0249 3.472784 15.34556 71.83389 0.07479178 -0.004602198 54099.989543 3523 3.266
     903##8.468631 12.36002 151.0249 3.472784 15.34556 71.83389 0.07479178 -0.004602198 54099.989543 3523 3.266
    904904
    905905# 30.12.2006 21:08:21.118
     
    976976
    977977# 31.12.2006 02:14:45.710
    978 30.34295 43.25212 172.8853 34.36352 11.06222 61.75083 0.06837406 -0.005220536 54100.093585 3406 1.621
     978##30.34295 43.25212 172.8853 34.36352 11.06222 61.75083 0.06837406 -0.005220536 54100.093585 3406 1.621
    979979
    980980# 30.12.2006 20:31:54.912
  • trunk/MagicSoft/Cosy/tpoint/tpoint0701.txt

    r8547 r8570  
    5454
    5555# --- 01.01.2007 00:50:17.202
    56 ##167.5942 22.76505 310.1273 13.84366 7.285833 -37.0975 0.03551422 -0.009211329 54101.034921 2994 2.389
     56167.5942 22.76505 310.1273 13.84366 7.285833 -37.0975 0.03551422 -0.009211329 54101.034921 2994 2.389
    5757
    5858# --- 01.01.2007 00:54:50.419
     
    7878
    7979# --- 01.01.2007 01:26:56.216
    80 ##-47.3051 27.80838 95.30335 18.95877 1.633333 48.62833 0.008312756 -0.07067296 54101.060373 3112 3.77
     80-47.3051 27.80838 95.30335 18.95877 1.633333 48.62833 0.008312756 -0.07067296 54101.060373 3112 3.77
    8181
    8282# --- 01.01.2007 01:37:17.332
     
    142142
    143143# --- 06.01.2007 01:18:56.848
    144 ##-59.11157 40.32392 83.557 31.48291 3.136111 40.95556 0.01675117 -0.1415749 54106.054825 3277 2.678
     144-59.11157 40.32392 83.557 31.48291 3.136111 40.95556 0.01675117 -0.1415749 54106.054825 3277 2.678
    145145
    146146# --- 06.01.2007 23:00:38.400
     
    154154
    155155# --- 07.01.2007 23:19:51.622
    156 ##0.206456 72.75831 142.6786 63.77756 5.278056 45.99806 -0.0009788277 -0.01248831 54107.972125 4001 0.687
     1560.206456 72.75831 142.6786 63.77756 5.278056 45.99806 -0.0009788277 -0.01248831 54107.972125 4001 0.687
    157157
    158158# --- 08.01.2007 23:44:02.531
     
    160160
    161161# --- 08.01.2007 23:50:20.993
    162 ##-34.23138 36.37099 108.2327 27.51493 1.430278 60.23528 0.000789433 0.07176416 54108.993299 3848 3.237
     162-34.23138 36.37099 108.2327 27.51493 1.430278 60.23528 0.000789433 0.07176416 54108.993299 3848 3.237
    163163
    164164# --- 09.01.2007 00:02:09.394
     
    212212
    213213# --- 10.01.2007 01:19:27.388
    214 ##-58.57691 37.28525 84.02584 28.43547 3.136111 40.95556 0.007065362 -0.07693561 54110.055178 2748 4.222
     214-58.57691 37.28525 84.02584 28.43547 3.136111 40.95556 0.007065362 -0.07693561 54110.055178 2748 4.222
    215215
    216216# --- 10.01.2007 01:29:02.861
    217 ##3.097726 86.87586 144.9261 77.88425 7.576667 31.88833 0.008394367 -0.009257146 54110.061839 2831 1.682
     2173.097726 86.87586 144.9261 77.88425 7.576667 31.88833 0.008394367 -0.009257146 54110.061839 2831 1.682
    218218
    219219# --- 10.01.2007 01:42:02.348
  • trunk/MagicSoft/Cosy/tpoint/tpoint0702.txt

    r8547 r8570  
    5050-103.3244 68.56286 39.13038 59.70547 7.335278 21.98222 0.01568489 -0.00380764 54155.989177 2337 3
    5151-130.5029 60.92568 11.97998 52.06739 7.4525 8.289444 0.01063255 -0.007509153 54155.992317 2270 2.431
    52 ##-10.0431 81.83463 132.0225 72.9515 9.314167 36.8025 0.01436499 0.2271345 54156.013997 2259 5.796
     52-10.0431 81.83463 132.0225 72.9515 9.314167 36.8025 0.01436499 0.2271345 54156.013997 2259 5.796
    5353
    5454# --- 25.02.2007 --- 00:38:26.451
     
    9999##159.1958 16.45626 301.7393 7.567911 9.511667 -40.46667 0.07154023 -0.01638471 54157.937959 4009 3.662
    100100174.3555 36.7085 316.8845 27.76439 8.125833 -24.30417 0.0103172 -0.00938683 54157.940308 4083 2.398
    101 ##123.7013 23.43598 266.2941 14.49957 11.32222 -14.77861 0.02423779 -0.06333205 54157.942576 3916 3.187
     101123.7013 23.43598 266.2941 14.49957 11.32222 -14.77861 0.02423779 -0.06333205 54157.942576 3916 3.187
    102102131.0516 28.26371 273.5919 19.31695 10.82694 -16.19361 0.01461552 -0.01433234 54157.945068 3955 2.646
    103103136.8538 31.80527 279.3977 22.86419 10.43472 -16.83639 0.01650034 -0.02226544 54157.946455 6944 3.24
  • trunk/MagicSoft/Cosy/tpoint/tpoint0703.txt

    r8547 r8570  
    262638.51356 22.60578 181.0781 13.66301 13.39861 54.92528 0.01510497 -0.01616618 54159.915356 3066 2.161
    272726.98454 10.697 169.5429 1.757794 15.41556 58.96611 0.02445987 -0.006108701 54159.918437 2973 3.684
    28 ##-65.04293 16.82893 77.57611 7.970094 1.884722 29.57889 0.001663824 -0.08582479 54159.927996 3002 3.628
     28-65.04293 16.82893 77.57611 7.970094 1.884722 29.57889 0.001663824 -0.08582479 54159.927996 3002 3.628
    2929-52.92389 22.86133 89.62444 14.00218 2.065 42.32972 -0.001550814 -0.01061366 54159.930497 2997 1.921
    3030-95.26046 18.01907 47.24982 9.16949 3.038056 4.089722 0.007579792 0.01820483 54159.935901 3039 2.149
    3131-93.3939 12.92871 49.15395 4.074136 2.721667 3.235833 0.005939187 -0.02742316 54159.937647 3053 4.244
    3232-110.7571 16.26369 31.77295 7.409129 3.548889 -9.458333 0.004934132 -0.001734982 54159.93995 3054 4.063
    33 -136.3092 13.14994 6.230855 4.292403 4.5925 -30.56222 0.005241309 -0.01331503 54159.944101 2836 5.779
     33##-136.3092 13.14994 6.230855 4.292403 4.5925 -30.56222 0.005241309 -0.01331503 54159.944101 2836 5.779
    3434
    3535# --- 05.03.2007 --- 23:26:00.143
     
    6161
    6262# --- 07.03.2007 --- 23:19:28.031
    63 ##118.906 80.21115 261.2297 71.27833 9.764167 23.77417 0.06009143 -0.01160515 54166.971852 4086 2.555
     63118.906 80.21115 261.2297 71.27833 9.764167 23.77417 0.06009143 -0.01160515 54166.971852 4086 2.555
    6464106.4362 74.39454 248.8649 65.43966 10.27806 23.41722 0.03142201 -0.01236073 54166.973824 4294 2.986
    6565140.8504 69.07371 283.3088 60.11257 10.13944 11.96722 0.01638128 -0.01122815 54166.976309 4483 1.311
     
    131131
    132132# --- 10.03.2007 --- 01:32:40.535
    133 ##168.3119 37.6906 310.8399 28.77462 12.16861 -22.61972 0.01207721 -0.01483994 54169.064358 4838 2.857
     133168.3119 37.6906 310.8399 28.77462 12.16861 -22.61972 0.01207721 -0.01483994 54169.064358 4838 2.857
    134134
  • trunk/MagicSoft/Cosy/tpoint/tpoint0705.txt

    r8547 r8570  
    33
    44# --- 05.05.2007 --- 00:08:51.266
    5 ##144.0907 78.39571 286.4757 69.37566 14.26111 19.1825 -0.03261408 -0.02463028 54225.006149 3969 0.2131
     5144.0907 78.39571 286.4757 69.37566 14.26111 19.1825 -0.03261408 -0.02463028 54225.006149 3969 0.2131
    66-142.5909 68.2792 359.872 59.41303 13.03639 10.95917 0.01092337 -0.006646224 54225.011859 3738 2.221
    77-108.1444 56.53534 34.35209 47.68139 11.81778 14.57194 0.01215936 -0.0007715871 54225.015346 3204 1.673
     
    424273.70441 77.15844 216.1219 68.2019 16.68806 31.60306 0.03196628 0.005269007 54227.081329 4.757e+04 2.613
    4343-134.2286 37.363 8.291265 28.50203 13.42 -11.16139 -0.001810469 -0.0006075722 54227.08404 4300 1.081
    44 ##-141.2101 26.66468 1.417832 17.80711 13.31528 -23.17167 -0.001462521 -0.1091652 54227.085627 4648 2.571
     44-141.2101 26.66468 1.417832 17.80711 13.31528 -23.17167 -0.001462521 -0.1091652 54227.085627 4648 2.571
    4545-132.3752 19.40747 10.15627 10.54689 12.57306 -23.39667 -0.0004637375 -0.007361185 54227.087452 4301 2.283
    46 ##-148.9155 15.1982 353.689 6.332108 13.34333 -36.71222 -0.002694494 -0.08431037 54227.089385 4421 2.594
     46-148.9155 15.1982 353.689 6.332108 13.34333 -36.71222 -0.002694494 -0.08431037 54227.089385 4421 2.594
    4747
    4848
  • trunk/MagicSoft/Cosy/tpoint/tpoint0706.txt

    r8542 r8570  
     1Magic Model  TPOINT data file
     2: ALTAZ
     3
    14# --- 02.06.2007 --- 23:12:38.195
    25-143.5923 78.24477 358.6578 69.41951 14.26111 19.1825 0.06385434 0.09873544 54253.967109 3919 0.3942
Note: See TracChangeset for help on using the changeset viewer.