📄 curvature_classification.cpp
字号:
///////////////////////////////////////////////////////////
// //
// SAGA //
// //
// System for Automated Geoscientific Analyses //
// //
// Module Library: //
// ta_morphometry //
// //
//-------------------------------------------------------//
// //
// Curvature_Classification.cpp //
// //
// Copyright (C) 2003 by //
// Olaf Conrad //
// //
//-------------------------------------------------------//
// //
// This file is part of 'SAGA - System for Automated //
// Geoscientific Analyses'. SAGA 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; version 2 of the License. //
// //
// SAGA 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. //
// //
//-------------------------------------------------------//
// //
// e-mail: oconrad@saga-gis.org //
// //
// contact: Olaf Conrad //
// Institute of Geography //
// University of Goettingen //
// Goldschmidtstr. 5 //
// 37077 Goettingen //
// Germany //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
#include "Curvature_Classification.h"
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
CCurvature_Classification::CCurvature_Classification(void)
{
Set_Name(_TL("Curvature Classification"));
Set_Author(_TL("Copyrights (c) 2001 by Olaf Conrad"));
Set_Description (_TW(
"Surface curvature based terrain classification.\n"
"Reference:\n"
"Dikau, R. (1988):\n'Entwurf einer geomorphographisch-analytischen Systematik von Reliefeinheiten',\n"
"Heidelberger Geographische Bausteine, Heft 5\n\n"
"0 - V / V\n"
"1 - GE / V\n"
"2 - X / V\n"
"3 - V / GR\n"
"4 - GE / GR\n"
"5 - X / GR\n"
"6 - V / X\n"
"7 - GE / X\n"
"8 - X / X\n")
);
Parameters.Add_Grid( NULL, "CPLAN" , _TL("Plan Curvature") , _TL(""), PARAMETER_INPUT);
Parameters.Add_Grid( NULL, "CPROF" , _TL("Profile Curvature") , _TL(""), PARAMETER_INPUT);
Parameters.Add_Value( NULL, "THRESHOLD" , _TL("Threshold for plane") , _TL(""), PARAMETER_TYPE_Double, 0.001, 0.0, true);
Parameters.Add_Grid( NULL, "CLASS" , _TL("Curvature Classification"), _TL(""), PARAMETER_OUTPUT);
}
//---------------------------------------------------------
CCurvature_Classification::~CCurvature_Classification(void)
{}
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
bool CCurvature_Classification::On_Execute(void)
{
int x, y, Class;
double Threshold, dPlan, dProf;
CSG_Grid *pPlan, *pProf, *pClass;
Threshold = Parameters("THRESHOLD")->asDouble();
pPlan = Parameters("CPLAN")->asGrid();
pProf = Parameters("CPROF")->asGrid();
pClass = Parameters("CLASS")->asGrid();
pClass->Create(pPlan, GRID_TYPE_Char);
pClass->Set_NoData_Value(-1);
if( 1 )
{
for(y=0; y<Get_NY() && Set_Progress(y); y++)
{
for(x=0; x<Get_NX(); x++)
{
if( pPlan->is_NoData(x, y) || pProf->is_NoData(x, y) )
{
pClass->Set_NoData(x, y);
}
else
{
dPlan = pPlan->asDouble(x, y);
dProf = pProf->asDouble(x, y);
Class = dPlan < -Threshold ? 0 : (dPlan <= Threshold ? 3 : 6);
Class += dProf < -Threshold ? 0 : (dProf <= Threshold ? 1 : 2);
pClass->Set_Value(x, y, Class);
}
}
}
return( true );
}
return( false );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -