📄 table_trend.cpp
字号:
///////////////////////////////////////////////////////////
// //
// SAGA //
// //
// System for Automated Geoscientific Analyses //
// //
// Module Library: //
// Geostatistics_Kriging //
// //
//-------------------------------------------------------//
// //
// Table_Trend.cpp //
// //
// Copyright (C) 2006 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 <string.h>
#include "Table_Trend.h"
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
void CTable_Trend_Base::Initialise(void)
{
//-----------------------------------------------------
Set_Author (_TL("Copyrights (c) 2006 by Olaf Conrad"));
Set_Description (_TW(
_TL("")
));
//-----------------------------------------------------
CSG_Parameter *pNode = Parameters("TABLE");
Parameters.Add_Table_Field(
pNode , "FIELD_X" , _TL("X Values"),
_TL("")
);
Parameters.Add_Table_Field(
pNode , "FIELD_Y" , _TL("Y Values"),
_TL("")
);
Parameters.Add_String(
NULL , "FORMULA" , _TL("Formula"),
_TL(""),
SG_T("m * x + b")
);
Parameters.Add_Choice(
NULL , "FORMULAS" , _TL("Pre-defined Formulas"),
_TL(""),
CSG_String::Format(SG_T("%s|%s|%s|%s|%s|%s|%s|%s|"),
_TL("Linear: a + b * x"),
_TL("Quadric: a + b * x + c * x^2"),
_TL("Cubic: a + b * x + c * x^2 + d * x^3"),
_TL("Logarithmic: a + b * ln(x)"),
_TL("Power: a + b * x^c"),
_TL("a + b / x"),
_TL("a + b * (1 - exp(-x / c))"),
_TL("a + b * (1 - exp(-(x / c)^2))")
), 0
);
Parameters.Add_Table(
NULL , "TREND" , _TL("Table (with Trend)"),
_TL(""),
PARAMETER_OUTPUT_OPTIONAL
);
}
//---------------------------------------------------------
int CTable_Trend_Base::On_Parameter_Changed(CSG_Parameters *pParameters, CSG_Parameter *pParameter)
{
if( !SG_STR_CMP(pParameter->Get_Identifier(), SG_T("FORMULAS")) )
{
const SG_Char *Formula;
switch( pParameter->asInt() )
{
default: return( false );
case 0: Formula = SG_T("a + b * x"); break;
case 1: Formula = SG_T("a + b * x + c * x^2"); break;
case 2: Formula = SG_T("a + b * x + c * x^2 + d * x^3"); break;
case 3: Formula = SG_T("a + b * ln(x)"); break;
case 4: Formula = SG_T("a + b * x^c"); break;
case 5: Formula = SG_T("a + b / x"); break;
case 6: Formula = SG_T("a + b * (1 - exp(-x / c))"); break;
case 7: Formula = SG_T("a + b * (1 - exp(-(x / c)^2))"); break;
}
pParameters->Get_Parameter("FORMULA")->Set_Value(Formula);
}
if( !SG_STR_CMP(pParameter->Get_Identifier(), SG_T("FORMULA")) )
{
if( !m_Trend.Set_Formula(pParameter->asString()) )
{
Message_Dlg(m_Trend.Get_Error(), _TL("Error in Formula"));
return( false );
}
}
return( true );
}
//---------------------------------------------------------
bool CTable_Trend_Base::Get_Trend(CSG_Table *pTable)
{
int i, j, xField, yField;
CSG_String Name;
CSG_Table_Record *pRecord;
//-----------------------------------------------------
if( m_Trend.Set_Formula(Parameters("FORMULA")->asString()) )
{
xField = Parameters("FIELD_X") ->asInt();
yField = Parameters("FIELD_Y") ->asInt();
m_Trend.Clr_Data();
for(i=0; i<pTable->Get_Record_Count(); i++)
{
pRecord = pTable->Get_Record(i);
m_Trend.Add_Data(pRecord->asDouble(xField), pRecord->asDouble(yField));
}
//-------------------------------------------------
if( m_Trend.Get_Trend() )
{
Message_Add(m_Trend.Get_Formula());
Message_Add(CSG_String::Format(SG_T("R\xc2\xb2 : %f"), 100.0 * m_Trend.Get_R2()));
if( Parameters("TREND")->asTable() == NULL )
{
pTable->Add_Field("TREND" , TABLE_FIELDTYPE_Double);
for(i=0, j=pTable->Get_Field_Count()-1; i<m_Trend.Get_Data_Count(); i++)
{
pRecord = pTable->Get_Record(i);
pRecord->Set_Value(j, m_Trend.Get_Value(m_Trend.Get_Data_X(i)));
}
}
else
{
Name.Printf(SG_T("%s [%s]"), pTable->Get_Name(), _TL("Trend"));
pTable = Parameters("TREND")->asTable();
pTable->Destroy();
pTable->Set_Name(Name);
pTable->Add_Field("X" , TABLE_FIELDTYPE_Double);
pTable->Add_Field("Y" , TABLE_FIELDTYPE_Double);
pTable->Add_Field("Y_TREND" , TABLE_FIELDTYPE_Double);
for(i=0; i<m_Trend.Get_Data_Count(); i++)
{
pRecord = pTable->Add_Record();
pRecord->Set_Value(0, m_Trend.Get_Data_X(i));
pRecord->Set_Value(1, m_Trend.Get_Data_Y(i));
pRecord->Set_Value(2, m_Trend.Get_Value(m_Trend.Get_Data_X(i)));
}
}
return( true );
}
}
return( false );
}
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
CTable_Trend::CTable_Trend(void)
: CTable_Trend_Base()
{
Set_Name (_TL("Trend for Table Data"));
Parameters.Add_Table(
NULL , "TABLE" , _TL("Table"),
_TL(""),
PARAMETER_INPUT
);
Initialise();
}
//---------------------------------------------------------
bool CTable_Trend::On_Execute(void)
{
return( Get_Trend(Parameters("TABLE")->asTable()) );
}
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
CTable_Trend_Shapes::CTable_Trend_Shapes(void)
: CTable_Trend_Base()
{
Set_Name (_TL("Trend for Shapes Data"));
Parameters.Add_Shapes(
NULL , "TABLE" , _TL("Shapes"),
_TL(""),
PARAMETER_INPUT
);
Initialise();
}
//---------------------------------------------------------
bool CTable_Trend_Shapes::On_Execute(void)
{
return( Get_Trend(&Parameters("TABLE")->asShapes()->Get_Table()) );
}
///////////////////////////////////////////////////////////
// //
// //
// //
///////////////////////////////////////////////////////////
//---------------------------------------------------------
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -