⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 distancematrix.cpp

📁 这是一个GPS相关的程序
💻 CPP
字号:
/*******************************************************************************
    DistanceMatrix.cpp
    Copyright (C) Victor Olaya
    
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*******************************************************************************/ 

#include "DistanceMatrix.h"
#include <vector>


CDistanceMatrix::CDistanceMatrix(void){

	
	Parameters.Set_Name(_TL("Distance Matrix"));
	Parameters.Set_Description(_TW(
		"(c) 2004 by Victor Olaya. Computes distance between pairs of points in a layer."));

	Parameters.Add_Shapes(NULL, 
						"POINTS", 
						_TL("Points"), 
						_TL(""), 
						PARAMETER_INPUT);

	Parameters.Add_Table(NULL, 
						"TABLE", 
						_TL("Distance Matrix Table"),
						_TL(""),
						PARAMETER_OUTPUT);
	
}//constructor


CDistanceMatrix::~CDistanceMatrix(void)
{}

bool CDistanceMatrix::On_Execute(void){

	int i,j,k;	
	double dDist;
	CSG_Points	Points;
	CSG_Shapes *pShapes = Parameters("POINTS")->asShapes();
	CSG_Table *pTable = Parameters("TABLE")->asTable();
	CSG_Shape *pShape;
	CSG_Table_Record *pRecord;

	pTable->Create((CSG_Table*)NULL);
	pTable->Set_Name(_TL("Distance Matrix"));

	for(i = 0; i < pShapes->Get_Count(); i++){			
		pShape = pShapes->Get_Shape(i);					
		for(j = 0; j < pShape->Get_Part_Count(); j++){	
			for(k = 0; k < pShape->Get_Point_Count(j); k++){
				Points.Add(pShape->Get_Point(k, j).x, pShape->Get_Point(k, j).y);
			}//for
		}//for
	}//for
	for (i = 0; i < Points.Get_Count(); i++){
		pTable->Add_Field(SG_Get_String(i).c_str(), TABLE_FIELDTYPE_Double);
	}//for
	for (i = 0; i < Points.Get_Count(); i++){
		pTable->Add_Record();
	}//for
	for (i = 0; i < Points.Get_Count(); i++){
		pRecord = pTable->Get_Record(i);
		for (j = i; j < Points.Get_Count(); j++){
			dDist = sqrt(pow(Points[i].x-Points[j].x,2) + pow(Points[i].y-Points[j].y,2));
			pRecord->Set_Value(j, dDist);
			pTable->Get_Record(j)->Set_Value(i, dDist);
		}//for
	}//for

	return true;

}//method

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -