rwlogo

Rogue Wave Views
Maps Package API Reference Guide

Product Documentation:

Rogue Wave Views
Documentation Home

List of all members | Public Member Functions | Protected Member Functions
IlvShapeFileIndex Class Reference

This class allows applications to take advantage of ESRI Shapefile index files (.shx files).
More...

#include <ilviews/maps/format/shapefile/shpindex.h>

Public Member Functions

 IlvShapeFileIndex (const char *shxFileName)
 Initializes an IlvShapeFileIndex from the .shx file specified. More...
 
 IlvShapeFileIndex (istream &stream)
 Initializes an IlvShapeFileIndex from the specified istream. More...
 
IlvMapsError getInitStatus () const
 Checks the initialization status of this reader. More...
 
IlBoolean getLowerRightCorner (IlvCoordinate &result) const
 Returns the lower right corner of the rectangle containing all the map features of the shape file corresponding to this index reader. More...
 
IlInt getRecordCount () const
 Returns the number of objects in this index. More...
 
IlvMapsError getRecordLength (IlInt index, IlInt &length)
 Retrieves the record length (in bytes) of the object at the specified index. More...
 
IlvMapsError getRecordOffset (IlInt index, IlInt &offset)
 Retrieves the file offset of the object at the specified index. More...
 
IlBoolean getUpperLeftCorner (IlvCoordinate &result) const
 Returns the upper left corner of the rectangle containing all the map features of this iterator. More...
 

Protected Member Functions

const IlvMapInputgetInput () const
 Returns the map input of this reader. More...
 
virtual void setInitStatus (IlvMapsError status)
 Sets the initialization status of this reader. More...
 

Detailed Description

This class allows applications to take advantage of ESRI Shapefile index files (.shx files).

Library: ilvmaps

Index files allow direct access to geometries in the main Shapefile (.shp file). Index files map record indexes to file offsets.
Index files are typically used to load geometries on demand.

Constructor & Destructor Documentation

IlvShapeFileIndex::IlvShapeFileIndex ( const char *  shxFileName)

Initializes an IlvShapeFileIndex from the .shx file specified.

Parameters
shxFileNameThe name of the .shx file.
IlvShapeFileIndex::IlvShapeFileIndex ( istream &  stream)

Initializes an IlvShapeFileIndex from the specified istream.

Parameters
dataInputFileThe stream opened on the shape data.

Member Function Documentation

IlvMapsError IlvShapeFileIndex::getInitStatus ( ) const

Checks the initialization status of this reader.

Returns
IlvMaps::NoError() if the initialization of this reader is successful, or an error if an error occurred during the initialization.
const IlvMapInput& IlvShapeFileIndex::getInput ( ) const
protected

Returns the map input of this reader.

Returns
The IlvMapInput of the reader.
IlBoolean IlvShapeFileIndex::getLowerRightCorner ( IlvCoordinate result) const

Returns the lower right corner of the rectangle containing all the map features of the shape file corresponding to this index reader.

Parameters
resultAn IlvCoordinate to store the result.
Returns
IlFalse if the lower right corner is unknown.
IlInt IlvShapeFileIndex::getRecordCount ( ) const

Returns the number of objects in this index.

Returns
The number of objects in this index.
IlvMapsError IlvShapeFileIndex::getRecordLength ( IlInt  index,
IlInt length 
)

Retrieves the record length (in bytes) of the object at the specified index.

The index of objects is in the range [0,getRecordCount()].

Warning
[note] The length is specified as the content length of the record. It does not include the 4 byte header.
Parameters
indexThe index of objects.
lengthThe returned length.
Returns
IlvMaps::NoError() if no error occurs.
IlvMapsError IlvShapeFileIndex::getRecordOffset ( IlInt  index,
IlInt offset 
)

Retrieves the file offset of the object at the specified index.

The index of objects is in the range [0,getRecordCount()].
The file offset is expressed in bytes, from the start of the files. As there is a 100 bytes header in the .shx file, the index of the first object is at offset 100.

Parameters
indexThe index of objects.
offsetThe returned offset.
IlBoolean IlvShapeFileIndex::getUpperLeftCorner ( IlvCoordinate result) const

Returns the upper left corner of the rectangle containing all the map features of this iterator.

Parameters
resultAn IlvCoordinate to store the result.
Returns
IlFalse if the upper left corner is unknown.
virtual void IlvShapeFileIndex::setInitStatus ( IlvMapsError  status)
protectedvirtual

Sets the initialization status of this reader.

Parameters
statusThe new initialization status.

© Copyright 2014, Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave is a registered trademark of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.