• 大小: 46KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-19
  • 语言: 其他
  • 标签: gnss  clk  assessment  

资源简介

卫星导航系统精密钟差性能评估:对准确度、漂移率、稳定度三个指标进行评定,并可提取制定卫星的钟差数据

资源截图

代码片段和文件信息

// GPSClock.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “GPSClock.h“
#include “GPSClockDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CGPSClockApp

BEGIN_MESSAGE_MAP(CGPSClockApp CWinApp)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()


// CGPSClockApp construction

CGPSClockApp::CGPSClockApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}


// The one and only CGPSClockApp object

CGPSClockApp theApp;


// CGPSClockApp initialization

BOOL CGPSClockApp::InitInstance()
{
// InitCommonControlsEx() is required on Windows XP if an application
// manifest specifies use of ComCtl32.dll version 6 or later to enable
// visual styles.  Otherwise any window creation will fail.
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// Set this to include all the common control classes you want to use
// in your application.
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);

CWinApp::InitInstance();

AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need
// Change the registry key under which our settings are stored
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));

CGPSClockDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      45048  2018-10-20 01:43  GPSClock\GPSClock.aps

     文件       2110  2013-08-09 15:21  GPSClock\GPSClock.cpp

     文件        516  2013-08-09 15:21  GPSClock\GPSClock.h

     文件       5717  2013-10-10 12:27  GPSClock\GPSClock.rc

     文件       5501  2013-08-13 16:47  GPSClock\GPSClock.vcproj

     文件       1427  2015-03-16 03:20  GPSClock\GPSClock.vcproj.USER-20140320LL.Administrator.user

     文件       1411  2013-10-21 16:52  GPSClock\GPSClock.vcproj.user-PC.user.user

     文件       6598  2018-10-19 11:04  GPSClock\GPSClock.vcxproj

     文件       1990  2018-10-19 11:04  GPSClock\GPSClock.vcxproj.filters

     文件        165  2018-10-19 11:04  GPSClock\GPSClock.vcxproj.user

     文件      12787  2018-10-20 02:44  GPSClock\GPSClockDlg.cpp

     文件       1713  2018-10-20 02:05  GPSClock\GPSClockDlg.h

     文件       8192  2013-08-09 15:21  GPSClock\ReadMe.txt

     文件      21630  2005-08-12 16:37  GPSClock\res\GPSClock.ico

     文件        399  2013-08-09 15:21  GPSClock\res\GPSClock.rc2

     文件       1041  2018-10-20 01:43  GPSClock\resource.h

     文件        208  2013-08-09 15:21  GPSClock\stdafx.cpp

     文件       2864  2013-08-09 15:21  GPSClock\stdafx.h

     文件        970  2018-10-19 11:04  GPSClock.sln

     目录          0  2018-10-25 05:42  GPSClock\Debug

     目录          0  2018-10-25 05:39  GPSClock\res

     目录          0  2018-10-25 05:41  GPSClock

     目录          0  2018-10-25 05:42  debug

----------- ---------  ---------- -----  ----

               120287                    23


评论

共有 条评论