• 大小: 5.16MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-22
  • 语言: 其他
  • 标签: 七参数  

资源简介

本程序输入数据要求保存在记事本文件中。首先将控制点数据保存在一个记事本文件中。在此文件中每行对应一个控制点的信息,按先新坐标系X、Y、Z(以北京1954坐标系为例)再旧坐标系X、Y、Z(以WGS-84为例),每个数据用空格分开。然后将要输入的待转换点坐标写入另一个记事本文件,本程序可同时计算多个待转换点数据,在记事本中每行保存一个待转换点数据,按X、Y、Z顺序保存。 运行程序时,首先单击“读入公共点数据” 按钮,首先在弹出的对话框中输入你所拥有的控制点数,然后选择保存好的控制点数据,“打开”即可。点击“计算转换参量”按钮,程序即可计算出转换参量。点击“读入待转换点”按钮,首先在弹出的对话框中输入你所要转换的点数,然后选择保存好的转换点数据,“打开”即可。在每个步骤中用户都可以实时的在列表控件中查看读入的数据和计算得到的结果,以便检查核对。最后点击“保存结果”按钮,就可以将得到的结果保存在一个记事本文件中。

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “CooTran.h“
#include “CooTranDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CCooTranApp

BEGIN_MESSAGE_MAP(CCooTranApp CWinApp)
//{{AFX_MSG_MAP(CCooTranApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CCooTranApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CCooTranApp object

CCooTranApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CCooTranApp initialization

BOOL CCooTranApp::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.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CCooTranDlg dlg;
m_pMainWnd = &dlg;
int 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;
}

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

     文件      22448  2008-10-27 10:35  源程序\CooTran.aps

     文件       2043  2008-10-27 11:20  源程序\CooTran.clw

     文件       2077  2007-03-18 18:15  源程序\CooTran.cpp

     文件       4384  2008-05-04 21:35  源程序\CooTran.dsp

     文件        537  2007-03-18 18:15  源程序\CooTran.dsw

     文件       1335  2007-03-18 18:15  源程序\CooTran.h

     文件     181248  2008-10-27 11:20  源程序\CooTran.ncb

     文件      50688  2008-10-27 11:20  源程序\CooTran.opt

     文件       1952  2008-10-27 10:35  源程序\CooTran.plg

     文件       6855  2008-05-04 21:20  源程序\CooTran.rc

     文件      13215  2008-10-27 10:35  源程序\CooTranDlg.cpp

     文件       1719  2008-05-16 16:10  源程序\CooTranDlg.h

     文件     118871  2008-10-27 10:35  源程序\Debug\CooTran.exe

     文件     226280  2008-10-27 10:35  源程序\Debug\CooTran.ilk

     文件      14644  2008-10-27 10:35  源程序\Debug\CooTran.obj

     文件    5495116  2008-10-27 10:35  源程序\Debug\CooTran.pch

     文件     295936  2008-10-27 10:35  源程序\Debug\CooTran.pdb

     文件       3400  2008-10-27 10:35  源程序\Debug\CooTran.res

     文件      56007  2008-10-27 10:35  源程序\Debug\CooTranDlg.obj

     文件      10492  2008-10-27 10:35  源程序\Debug\PointNum.obj

     文件     105779  2008-10-27 10:35  源程序\Debug\StdAfx.obj

     文件     214016  2008-10-27 10:48  源程序\Debug\vc60.idb

     文件     380928  2008-10-27 10:35  源程序\Debug\vc60.pdb

     文件     245803  2007-03-16 17:19  源程序\Matrix.dll

     文件        550  2007-03-16 17:18  源程序\Matrix.h

     文件       2626  2007-03-16 17:19  源程序\Matrix.lib

     文件        994  2007-03-18 19:08  源程序\PointNum.cpp

     文件       1206  2007-03-18 18:40  源程序\PointNum.h

     文件       3597  2007-03-18 18:15  源程序\ReadMe.txt

     文件    3408896  2008-10-27 10:35  源程序\Release\CooTran.bsc

............此处省略26个文件信息

评论

共有 条评论