67 int CSG_Grid_System::m_Precision = 16;
77 m_Precision = Decimals;
79 return( m_Precision );
90 return( m_Precision );
107 Create(System, Precision);
113 Create(Cellsize, Extent, Precision);
119 Create(Cellsize, xMin, yMin, xMax, yMax, Precision);
125 Create(Cellsize, xMin, yMin, NX, NY, Precision);
131 Create(System, Precision);
155 m_NCells = System.m_NCells;
157 m_Cellsize = System.m_Cellsize;
158 m_Cellarea = System.m_Cellarea;
159 m_Diagonal = System.m_Diagonal;
161 m_Extent = System.m_Extent;
162 m_Extent_Cells = System.m_Extent_Cells;
172 int nx = 1 + (int)(0.5 + Extent.
Get_XRange() / Cellsize);
173 int ny = 1 + (int)(0.5 + Extent.
Get_YRange() / Cellsize);
178 return(
Create(Cellsize, x, y, nx, ny, Precision) );
189 return(
Create(Cellsize,
CSG_Rect(xMin, yMin, xMax, yMax), Precision) );
195 if( Cellsize > 0. && NX > 0 && NY > 0 )
197 Cellsize =
SG_Get_Rounded(Cellsize, Precision == -1 ? m_Precision : Precision);
198 xMin =
SG_Get_Rounded(xMin , Precision == -1 ? m_Precision : Precision);
199 yMin =
SG_Get_Rounded(yMin , Precision == -1 ? m_Precision : Precision);
205 m_NCells = (
sLong)NY * NX;
207 m_Cellsize = Cellsize;
208 m_Cellarea = Cellsize * Cellsize;
209 m_Diagonal = Cellsize * sqrt(2.);
211 m_Extent.
xMin = xMin;
212 m_Extent.
yMin = yMin;
213 m_Extent.
xMax = xMin + (NX - 1.) * Cellsize;
214 m_Extent.
yMax = yMin + (NY - 1.) * Cellsize;
216 m_Extent_Cells = m_Extent;
217 m_Extent_Cells.
Inflate(0.5 * Cellsize,
false);
237 double Cellsize, xMin, yMin;
int NX, NY;
CSG_Strings Values;
243 if( Values.
Get_Count() == 5 && Values[0].asDouble(Cellsize) && Values[1].asInt(NX) && Values[2].asInt(NY) && Values[3].asDouble(xMin) && Values[4].asDouble(yMin) )
245 return(
Create(Cellsize, xMin, yMin, NX, NY, Precision) );
252 if( Values.
Get_Count() == 5 && Values[0].asDouble(Cellsize) && Values[1].asInt(NX) && Values[2].asInt(NY) && Values[3].asDouble(xMin) && Values[4].asDouble(yMin) )
254 return(
Create(Cellsize, xMin, yMin, NX, NY, Precision) );
261 if( Values.
Get_Count() == 8 && Values[1].asDouble(Cellsize) && Values[3].asInt(NX) && Values[4].asInt(NY) && Values[6].asDouble(xMin) && Values[7].asDouble(yMin) )
263 return(
Create(Cellsize, xMin, yMin, NX, NY, Precision) );
280 m_Extent .
Create(0., 0., 0., 0.);
281 m_Extent_Cells.
Create(0., 0., 0., 0.);
288 {
return(
Create(System) ); }
291 {
return(
Create(Cellsize, Extent) ); }
294 {
return(
Create(Cellsize, xMin, yMin, xMax, yMax) ); }
297 {
return(
Create(Cellsize, xMin, yMin, NX, NY) ); }
307 return( m_Cellsize > 0. && m_NX > 0 && m_NY > 0 );
317 m_Name.
Printf(
"%.*f; %dx %dy; %.*fx %.*fy",
325 m_Name.
Printf(
"%s: %f, %s: %dx/%dy, %s: %fx/%fy",
326 _TL(
"Cell size" ), m_Cellsize,
327 _TL(
"Number of cells" ), m_NX, m_NY,
328 _TL(
"Lower left cell center"), m_Extent.
xMin, m_Extent.
yMin
334 m_Name =
_TL(
"<not set>");
343 m_Name.
Printf(
"%.*f; %d; %d; %.*f; %.*f",
368 return( pSystem != NULL &&
is_Equal(*pSystem) ==
true );
373 return( pSystem == NULL ||
is_Equal(*pSystem) ==
false );
384 return(
is_Equal(System) ==
false );
395 return( m_Cellsize == System.m_Cellsize
396 && m_NX == System.m_NX
397 && m_NY == System.m_NY
398 && m_Extent.
xMin == System.m_Extent.
xMin
399 && m_Extent.
yMin == System.m_Extent.
yMin
406 return( m_Cellsize == Cellsize && m_Extent == Extent );
468 Parameters.
Add_Choice(Parent,
"KERNEL_TYPE",
_TL(
"Kernel Type"),
469 _TL(
"The kernel's shape."),
482 Parameters.
Add_Double(
"KERNEL_TYPE",
"KERNEL_INNER" ,
_TL(
"Inner Radius"), Unit_Radius, 0., 0.,
true);
485 Parameters .
Add_Double(
"KERNEL_TYPE",
"KERNEL_RADIUS",
_TL(
"Radius"), Unit_Radius, 1., 0.,
true);
491 Parameters.
Add_Int (
"KERNEL_TYPE",
"KERNEL_INNER" ,
_TL(
"Inner Radius"), Unit_Radius, 0 , 0 ,
true);
494 Parameters .
Add_Int (
"KERNEL_TYPE",
"KERNEL_RADIUS",
_TL(
"Radius"), Unit_Radius, 2 , 0 ,
true);
500 Parameters.
Add_Double(
"KERNEL_TYPE",
"KERNEL_DIRECTION",
_TL(
"Direction"),
_TL(
"degree"), 0., -360.,
true, 360.,
true);
501 Parameters.
Add_Double(
"KERNEL_TYPE",
"KERNEL_TOLERANCE",
_TL(
"Tolerance"),
_TL(
"degree"), 5., 0.,
true, 180.,
true);
507 Parameters(
"KERNEL_TYPE")->is_Enabled() ?
CSG_String(
"KERNEL_TYPE") : Parent
517 if( Type == 0 && Parameters(
"KERNEL_TYPE") )
519 Parameters(
"KERNEL_TYPE")->asChoice()->Get_Data(Type);
526 Parameters(
"KERNEL_RADIUS" )->
asDouble(),
532 Parameters(
"KERNEL_RADIUS" )->
asDouble(),
538 Parameters(
"KERNEL_INNER" )->
asDouble(),
539 Parameters(
"KERNEL_RADIUS" )->
asDouble()
544 Parameters(
"KERNEL_RADIUS" )->
asDouble(),
567 if( Parameters(
"KERNEL_TYPE") )
569 int Type = Parameters(
"KERNEL_TYPE")->asChoice()->Get_Item_Data(Parameters(
"KERNEL_TYPE")->
asInt()).asInt();
587 bool CSG_Grid_Cell_Addressor::_Set_Kernel(
int Type,
double Radius,
double Radius_Inner,
double Direction,
double Tolerance)
593 m_Radius_0 = Radius_Inner;
594 m_Direction = fmod(Direction,
M_PI_360);
if( Direction < 0. ) Direction +=
M_PI_360;
595 m_Tolerance = fmod(Tolerance,
M_PI_180);
if( Tolerance < 0. ) Tolerance +=
M_PI_180;
597 if( m_Radius < 0. || m_Radius < m_Radius_0 )
606 Sector[0] = fmod(Direction - Tolerance,
M_PI_360);
if( Sector[0] < 0. ) Sector[0] +=
M_PI_360;
607 Sector[1] = fmod(Direction + Tolerance,
M_PI_360);
if( Sector[1] < 0. ) Sector[1] +=
M_PI_360;
611 #define ADD_CELL(x, y, Distance) {\
612 CSG_Table_Record &Cell = *Kernel.Add_Record();\
613 Cell.Set_Value(0, x);\
614 Cell.Set_Value(1, y);\
615 Cell.Set_Value(2, Distance);\
616 Cell.Set_Value(3, m_Weighting.Get_Weight(d));\
621 int Size = (int)ceil(m_Radius);
624 for(
int y=-Size; y<=Size; y++)
626 if( abs(y) > m_Radius )
629 for(
int x=-Size; x<=Size; x++)
631 if( abs(x) > m_Radius )
650 if( d <= m_Radius && d >= m_Radius_0 )
667 if( Kernel.Get_Count() < 1 )
674 for(
int i=0; i<Kernel.Get_Count(); i++)
676 m_Kernel.
Add_Record(Kernel.Get_Record_byIndex(i));
691 return( _Set_Kernel(0, Radius, 0., 0., 0.) );
697 return( _Set_Kernel(1, Radius, 0., 0., 0.) );
703 return( _Set_Kernel(2, Radius_Outer, Radius_Inner, 0., 0.) );
709 return( _Set_Kernel(3, Radius, 0., Direction, Tolerance) );