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

📄 elevationmatrixcell.cpp

📁 在Linux下做的QuadTree的程序
💻 CPP
字号:
/********************************************************************** * $Id: ElevationMatrixCell.cpp 1820 2006-09-06 16:54:23Z mloskot $ * * GEOS - Geometry Engine Open Source * http://geos.refractions.net * * Copyright (C) 2001-2002 Vivid Solutions Inc. * * This is free software; you can redistribute and/or modify it under * the terms of the GNU Lesser General Public Licence as published * by the Free Software Foundation.  * See the COPYING file for more information. * **********************************************************************/#include <sstream>#include <string>#include <vector>#include <geos/operation/overlay/ElevationMatrixCell.h>#include <geos/platform.h> // ISNAN#include <geos/geom/Coordinate.h>using namespace std;using namespace geos::geom;namespace geos {namespace operation { // geos.operationnamespace overlay { // geos.operation.overlayElevationMatrixCell::ElevationMatrixCell(): ztot(0){}ElevationMatrixCell::~ElevationMatrixCell(){}voidElevationMatrixCell::add(const Coordinate &c){	if ( !ISNAN(c.z) )	{		if ( zvals.insert(c.z).second )		{			ztot+=c.z;		}	}}voidElevationMatrixCell::add(double z){	if ( !ISNAN(z) )	{		if ( zvals.insert(z).second )		{			ztot+=z;		}	}}doubleElevationMatrixCell::getTotal() const{	return ztot;}doubleElevationMatrixCell::getAvg() const{	if ( ! zvals.size() ) return DoubleNotANumber;	return (ztot/zvals.size());}stringElevationMatrixCell::print() const{	ostringstream ret;	//ret<<"["<<ztot<<"/"<<zvals.size()<<"]";	ret<<"["<<ztot/zvals.size()<<"]";	return ret.str();}} // namespace geos.operation.overlay} // namespace geos.operation} // namespace geos;/********************************************************************** * $Log$ * Revision 1.6  2006/03/17 13:24:59  strk * opOverlay.h header splitted. Reduced header inclusions in operation/overlay implementation files. ElevationMatrixFilter code moved from own file to ElevationMatrix.cpp (ideally a class-private). * * Revision 1.5  2006/03/03 10:46:22  strk * Removed 'using namespace' from headers, added missing headers in .cpp files, removed useless includes in headers (bug#46) * * Revision 1.4  2006/02/19 19:46:49  strk * Packages <-> namespaces mapping for most GEOS internal code (uncomplete, but working). Dir-level libs for index/ subdirs. * * Revision 1.3  2004/11/29 16:05:33  strk * Fixed a bug in LineIntersector::interpolateZ causing NaN values * to come out. * Handled dimensional collapses in ElevationMatrix. * Added ISNAN macro and changed ISNAN/FINITE macros to avoid * dispendious isnan() and finite() calls. * * Revision 1.2  2004/11/26 09:22:50  strk * Added FINITE(x) macro and its use. * Made input geoms average Z computation optional in OverlayOp. * * Revision 1.1  2004/11/23 16:22:49  strk * Added ElevationMatrix class and components to do post-processing draping of overlayed geometries. * **********************************************************************/

⌨️ 快捷键说明

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