Changes between Version 7 and Version 8 of FDORfc63
- Timestamp:
- 06/01/12 07:25:01 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FDORfc63
v7 v8 118 118 /// 32 bits (32-63) - 1-based segment # 119 119 /// 120 /// In Mode #3 a exception will be thrown in case the encoding fails. In this case 121 /// Mode #2 can be used instead. 122 /// 120 123 /// \param featId 121 124 /// Input The feature identifier … … 127 130 /// 128 131 FDO_SPATIAL_API void InsertObject(FdoInt32 featId, FdoByteArray* fgfArray); 132 133 /// \brief 134 /// Erases an entry in the spatial index given the id and a bounding box 135 /// 136 /// \remarks 137 /// In Mode #2 removes all the entries related to the feature identifier. 138 /// In Mode #3 the spatial index will be emptied. 139 /// 140 /// \param featId 141 /// Input The feature identifier. 142 /// \param ext 143 /// Input The bounding box of the feature. It may be NULL in which case 144 /// the spatial index total extents will be used. 145 /// 146 /// \return 147 /// Returns Nothing 148 /// 149 FDO_SPATIAL_API void EraseObject(FdoInt64 featId, FdoIEnvelope *ext); 129 150 130 151 /// \brief … … 223 244 * Mode 1 implements a regular spatial index, very performant 224 245 * For mode 2 and 3 the client code has to implement a segment visitor in order to retrieve a segment from the geometry. 225 * The actual implementation will be the R-tree implementation found under Sqlite provider and developed by Traian Stanev. 246 * This API is a wrapper over the R-tree implementation located in the Sqlite provider and developed by Traian Stanev. 247 * The location of this API will be FDO Spatial. 226 248 227 249 == How to use this API ==