/usr/include/terralib/kernel/TeAttribute.h is in libterralib-dev 4.0.0-5ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | /************************************************************************************
TerraLib - a library for developing GIS applications.
Copyright © 2001-2007 INPE and Tecgraf/PUC-Rio.
This code is part of the TerraLib library.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
You should have received a copy of the GNU Lesser General Public
License along with this library.
The authors reassure the license terms regarding the warranties.
They specifically disclaim any warranties, including, but not limited to,
the implied warranties of merchantability and fitness for a particular purpose.
The library provided hereunder is on an "as is" basis, and the authors have no
obligation to provide maintenance, support, updates, enhancements, or modifications.
In no event shall INPE and Tecgraf / PUC-Rio be held liable to any party for direct,
indirect, special, incidental, or consequential damages arising out of the use
of this library and its documentation.
*************************************************************************************/
/*! \file TeAttribute.h
\brief This file contains structures and definitions about attributes of geographical objects
*/
#ifndef __TERRALIB_INTERNAL_ATTRIBUTE_H
#define __TERRALIB_INTERNAL_ATTRIBUTE_H
#include "TeDefines.h"
#include "TeDataTypes.h"
#include "TeTime.h"
/*! \enum TeMeasurementScale
\brief Sscale of measurement according to Stevens (1949)
modified by Chrisman (1998) to include CYCLIC and PROBABILITY
we also include FUZZY (possibility scale)
*/
enum TeMeasurementScale
{ ORDINAL, NOMINAL, RATIO, INTERVAL, CYCLIC, PROBABILITY, FUZZY };
/*! \struct TeAttributeRep
\brief Attribute physical representation
*/
struct TL_DLL TeAttributeRep
{
string name_; //!< attribute name
TeAttrDataType type_; //!< attribute type
int numChar_; //!< width of an attribute
int decimals_; //!< number of decimal digits
bool isPrimaryKey_; //!< flag to indicate that the attribute is part of primary key
bool isAutoNumber_; //!< flag to indicate that the attribute is auto number
bool null_; //!< flag to indicate that attribute can be a null value (true) or not (false)
string defaultValue_; //!< default value (without "'")
//! Empty constructor
TeAttributeRep():
name_(""),
type_(TeSTRING),
numChar_(0),
decimals_(0),
isPrimaryKey_(false),
isAutoNumber_(false),
null_(true),
defaultValue_("")
{}
//! Constructor
TeAttributeRep(const string& name):
name_(name),
type_(TeSTRING),
numChar_(0),
decimals_(0),
isPrimaryKey_(false),
isAutoNumber_(false),
null_(true),
defaultValue_("")
{}
//! Operator =
TeAttributeRep& operator= ( const TeAttributeRep& at )
{
if ( this != &at )
{
name_ = at.name_;
type_ = at.type_;
numChar_ = at.numChar_;
decimals_ = at.decimals_;
isPrimaryKey_ = at.isPrimaryKey_;
isAutoNumber_ = at.isAutoNumber_;
null_ = at.null_;
defaultValue_ = at.defaultValue_;
}
return *this;
}
//! Operator ==
bool operator== ( const TeAttributeRep& at )
{
return (name_==at.name_ && type_ == at.type_
&& numChar_ == at.numChar_ && decimals_ == at.decimals_ &&
isPrimaryKey_ == at.isPrimaryKey_ &&
isAutoNumber_ == at.isAutoNumber_ &&
null_ == at.null_ && defaultValue_ == at.defaultValue_);
}
//! Operator <
bool operator< (const TeAttributeRep& at) const
{return (name_ < at.name_);}
};
/*! \struct TeAttribute
\brief Attribute description
*/
struct TL_DLL TeAttribute
{
TeAttributeRep rep_; //!< representation of attribute
string semantic_; //!< reference in a Ontology database (e.g., entry in WordNet )
string unit_; //!< measurement unit ( e.g., m ) if applicable
TeMeasurementScale scale_; //!< scale of measurement
// for RATIO data sets
string minValue_; //!< minimum value of the attribute
string maxValue_; //!< maximum value of the attrbute
// for NOMINAL or ORDINAL data sets
vector<string> validValueList_; //!< list of valid values
// for INTERVAL data sets (??)
string origin_; //!< origin of the intervals
string interval_; //!< mesurement interval
string dateTimeFormat_; //!< format for date and time values
string indicatorAM_; //!< AM indicator for a 12 hour clock
string indicatorPM_; //!< PM indicator for a 12 hour clock
string dateSeparator_; //!< date separator
string timeSeparator_; //!< time separator
TeChronon dateChronon_; //!< date chronon
//! Empty constructor
TeAttribute():
rep_ (TeAttributeRep()),
dateTimeFormat_ ("DsMsYYYYsHHsmmsSS"),
indicatorAM_ ("AM"),
indicatorPM_ ("PM"),
dateSeparator_ ("/"),
timeSeparator_ (":"),
dateChronon_ (TeSECOND)
{}
TeAttribute& operator= ( const TeAttribute& at )
{
if ( this != &at )
{
rep_ = at.rep_;
semantic_ = at.semantic_;
unit_ = at.unit_;
scale_ = at.scale_;
minValue_ = at.minValue_;
maxValue_ = at.maxValue_;
validValueList_ = at.validValueList_;
origin_ = at.origin_;
interval_ = at.interval_;
dateTimeFormat_ = at.dateTimeFormat_;
indicatorAM_ = at.indicatorAM_;
indicatorPM_ = at.indicatorPM_;
dateSeparator_ = at.dateSeparator_;
timeSeparator_ = at.timeSeparator_;
dateChronon_ = at.dateChronon_;
}
return *this;
}
};
/*! \struct TeProperty
\brief A property of an object
*/
struct TL_DLL TeProperty
{
TeAttribute attr_; //!< attribute description
string value_; //!< its value stored as an string
};
//! A vector of TeProperties
typedef vector<TeProperty> TePropertyVector;
//! A vector of attributes representation
typedef vector<TeAttributeRep> TeAttributeRepList;
//! A vector of attributes
typedef vector<TeAttribute> TeAttributeList;
//! A Map of the attribute names to the statistical types
typedef vector< pair<TeAttributeRep, TeStatisticType> > TeGroupingAttr;
#endif
|