资源简介
武汉大学遥感专业必修课之GPS应用技术
解算GPS卫星空间位置
代码片段和文件信息
// GPSCoordinate.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “GPSCoordinate.h“
#include “MainFrm.h“
#include “GPSCoordinateDoc.h“
#include “GPSCoordinateView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CGPSCoordinateApp
BEGIN_MESSAGE_MAP(CGPSCoordinateApp CWinApp)
//{{AFX_MSG_MAP(CGPSCoordinateApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CGPSCoordinateApp construction
CGPSCoordinateApp::CGPSCoordinateApp()
{
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CGPSCoordinateApp object
CGPSCoordinateApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CGPSCoordinateApp initialization
BOOL CGPSCoordinateApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
// Change the registry key under which our settings are stored.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));
LoadStdProfileSettings(); // Load standard INI file options (including MRU)
// Register document templates
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CGPSCoordinateDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CGPSCoordinateView));
AddDocTemplate(pDocTemplate);
// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
m_pMainWnd->SetWindowText(“GPS卫星位置计算.... \t BY: 卢 昊“);
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About
class CAboutDlg : public CDialog
{
public:
CAboutDlg();
// Dialog Data
//{{AFX_DATA(CAboutDlg)
enum { IDD = IDD_ABOUTBOX };
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CAboutDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
//{{AFX_MSG(CAboutDlg)
// No message handlers
//}}AFX_MSG
DECLARE_ME
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 548864 2010-05-28 03:48 GPSCoordinate.exe
----------- --------- ---------- ----- ----
548864 1
- 上一篇:hspice中文教程
- 下一篇:计算图像之间的偏差指数
相关资源
- 载波相位测量
- GPS串口数据读取及解析的LABVIEW程序
- ROS:实现串口解析GPS协议,并发布到
- STM32F4 GPS NEO-M8N完整项目
- GPS卫星单点定位程序-利用伪距-源代码
- gps单点定位计算算法
- 北斗/GPS双模定位上位机
- gps授时校时系统
- ARM9mini2440GPS程序
- GPS接收程序
- 车辆北斗GPS定位管理方案
- 星历文件,GPS星历文件的格式及介绍
- STM32 步进电机程序 包括加减速 位置模
- GPS STC15程序,51程序
- 基于STM32的无位置传感器无刷直流电机
- GPS详细资料英文版
- 全国各省市区中心位置经纬度参考表
- 基于51单片机的GPS全球定位系统的设计
- GPS信号的模拟捕获和跟踪仿真
- ublox-m8nGPS模块频率波特率设置
- 基于GPS的小孩防丢器的设计开题报告
- GPS位置+速度两个观测量卡尔曼惯导航
- 基于STM32的MP4播放器带gps定位,界面显
- Virace GPS Simulator V0.3.1
- GPS数据解析C程序
- 将Excel数据对应写入已做好的Word模板
- GPS d文件转o文件RNXCMP_4.0.4_Windows
- GPS_Net(crack)
- 将安卓手机位置信息进行发送
- STM32F407ZGT6用TB6600驱动器驱动4257步进电
评论
共有 条评论