mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
227 lines
8.8 KiB
Plaintext
227 lines
8.8 KiB
Plaintext
|
|
/**
|
|
There are two possibilities how to use this class:
|
|
1. static call to QgsVectorFileWriter::writeAsShapefile(...) which saves the whole vector layer
|
|
2. create an instance of the class and issue calls to addFeature(...)
|
|
|
|
Currently supports only writing to shapefiles, but shouldn't be a problem to add capability
|
|
to support other OGR-writable formats.
|
|
*/
|
|
class QgsVectorFileWriter
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsvectorfilewriter.h>
|
|
#include <qgsfield.h>
|
|
%End
|
|
|
|
public:
|
|
enum OptionType
|
|
{
|
|
Set,
|
|
String,
|
|
Int,
|
|
Hidden
|
|
};
|
|
|
|
class Option
|
|
{
|
|
public:
|
|
Option( const QString& docString, QgsVectorFileWriter::OptionType type );
|
|
virtual ~Option();
|
|
|
|
QString docString;
|
|
QgsVectorFileWriter::OptionType type;
|
|
};
|
|
|
|
class SetOption : QgsVectorFileWriter::Option
|
|
{
|
|
public:
|
|
SetOption( const QString& docString, QStringList values, const QString& defaultValue, bool allowNone = false );
|
|
|
|
QSet<QString> values;
|
|
QString defaultValue;
|
|
bool allowNone;
|
|
};
|
|
|
|
class StringOption: QgsVectorFileWriter::Option
|
|
{
|
|
public:
|
|
StringOption( const QString& docString, const QString& defaultValue = QString() );
|
|
|
|
QString defaultValue;
|
|
};
|
|
|
|
class IntOption: QgsVectorFileWriter::Option
|
|
{
|
|
public:
|
|
IntOption( const QString& docString, int defaultValue );
|
|
|
|
int defaultValue;
|
|
};
|
|
|
|
class BoolOption : QgsVectorFileWriter::SetOption
|
|
{
|
|
public:
|
|
BoolOption( const QString& docString, bool defaultValue );
|
|
};
|
|
|
|
class HiddenOption : QgsVectorFileWriter::Option
|
|
{
|
|
public:
|
|
HiddenOption( const QString& value );
|
|
|
|
QString mValue;
|
|
};
|
|
|
|
struct MetaData
|
|
{
|
|
MetaData();
|
|
|
|
MetaData( QString longName, QString trLongName, QString glob, QString ext, QMap<QString, QgsVectorFileWriter::Option*> driverOptions, QMap<QString, QgsVectorFileWriter::Option*> layerOptions );
|
|
|
|
QString longName;
|
|
QString trLongName;
|
|
QString glob;
|
|
QString ext;
|
|
QMap<QString, QgsVectorFileWriter::Option*> driverOptions;
|
|
QMap<QString, QgsVectorFileWriter::Option*> layerOptions;
|
|
};
|
|
|
|
enum WriterError
|
|
{
|
|
NoError = 0,
|
|
ErrDriverNotFound,
|
|
ErrCreateDataSource,
|
|
ErrCreateLayer,
|
|
ErrAttributeTypeUnsupported,
|
|
ErrAttributeCreationFailed,
|
|
ErrProjection, // added in 1.5
|
|
ErrFeatureWriteFailed, // added in 1.6
|
|
ErrInvalidLayer, // added in 2.0
|
|
};
|
|
|
|
//added in 2.0
|
|
enum SymbologyExport
|
|
{
|
|
NoSymbology = 0, //export only data
|
|
FeatureSymbology, //Keeps the number of features and export symbology per feature
|
|
SymbolLayerSymbology //Exports one feature per symbol layer (considering symbol levels)
|
|
};
|
|
|
|
/** Write contents of vector layer to an (OGR supported) vector formt
|
|
@note: this method was added in version 1.5
|
|
@param layer layer to write
|
|
@param fileName file name to write to
|
|
@param fileEncoding encoding to use
|
|
@param destCRS pointer to CRS to reproject exported geometries to
|
|
@param driverName OGR driver to use
|
|
@param onlySelected write only selected features of layer
|
|
@param errorMessage pointer to buffer fo error message
|
|
@param datasourceOptions list of OGR data source creation options
|
|
@param layerOptions list of OGR layer creation options
|
|
@param skipAttributeCreation only write geometries
|
|
@param newFilename QString pointer which will contain the new file name created (in case it is different to fileName).
|
|
@param symbologyExport symbology to export
|
|
@param symbologyScale scale of symbology
|
|
@param filterExtent if not a null pointer, only features intersecting the extent will be saved
|
|
*/
|
|
static WriterError writeAsVectorFormat( QgsVectorLayer* layer,
|
|
const QString& fileName,
|
|
const QString& fileEncoding,
|
|
const QgsCoordinateReferenceSystem *destCRS,
|
|
const QString& driverName = "ESRI Shapefile",
|
|
bool onlySelected = false,
|
|
QString *errorMessage = 0,
|
|
const QStringList &datasourceOptions = QStringList(), // added in 1.6
|
|
const QStringList &layerOptions = QStringList(), // added in 1.6
|
|
bool skipAttributeCreation = false, // added in 1.6
|
|
QString *newFilename = 0, // added in 1.9
|
|
SymbologyExport symbologyExport = NoSymbology, //added in 2.0
|
|
double symbologyScale = 1.0, // added in 2.0
|
|
const QgsRectangle* filterExtent = 0 // added in 2.4
|
|
);
|
|
|
|
//! @note added in v2.2
|
|
static WriterError writeAsVectorFormat( QgsVectorLayer* layer,
|
|
const QString& fileName,
|
|
const QString& fileEncoding,
|
|
const QgsCoordinateTransform* ct,
|
|
const QString& driverName = "ESRI Shapefile",
|
|
bool onlySelected = false,
|
|
QString *errorMessage = 0,
|
|
const QStringList &datasourceOptions = QStringList(),
|
|
const QStringList &layerOptions = QStringList(),
|
|
bool skipAttributeCreation = false,
|
|
QString *newFilename = 0,
|
|
SymbologyExport symbologyExport = NoSymbology,
|
|
double symbologyScale = 1.0,
|
|
const QgsRectangle* filterExtent = 0 // added in 2.4
|
|
);
|
|
|
|
/** create shapefile and initialize it */
|
|
QgsVectorFileWriter( const QString& vectorFileName,
|
|
const QString& fileEncoding,
|
|
const QgsFields& fields,
|
|
QGis::WkbType geometryType,
|
|
const QgsCoordinateReferenceSystem* srs,
|
|
const QString& driverName = "ESRI Shapefile",
|
|
const QStringList &datasourceOptions = QStringList(), // added in 1.6
|
|
const QStringList &layerOptions = QStringList(), // added in 1.6
|
|
QString *newFilename = 0, // added in 1.9
|
|
QgsVectorFileWriter::SymbologyExport symbologyExport = QgsVectorFileWriter::NoSymbology //added in 2.0
|
|
);
|
|
|
|
/**Returns map with format filter string as key and OGR format key as value*/
|
|
static QMap< QString, QString> supportedFiltersAndFormats();
|
|
|
|
/**Returns driver list that can be used for dialogs. It contains all OGR drivers
|
|
* + some additional internal QGIS driver names to distinguish between more
|
|
* supported formats of the same OGR driver
|
|
*/
|
|
static QMap< QString, QString> ogrDriverList();
|
|
|
|
/**Returns filter string that can be used for dialogs*/
|
|
static QString fileFilterString();
|
|
|
|
/**Creates a filter for an OGR driver key*/
|
|
static QString filterForDriver( const QString& driverName );
|
|
|
|
/**Converts codec name to string passed to ENCODING layer creation option of OGR Shapefile*/
|
|
static QString convertCodecNameForEncodingOption( const QString &codecName );
|
|
|
|
/** checks whether there were any errors in constructor */
|
|
WriterError hasError();
|
|
|
|
/** retrieves error message
|
|
* @note added in 1.5
|
|
*/
|
|
QString errorMessage();
|
|
|
|
/** add feature to the currently opened shapefile */
|
|
bool addFeature( QgsFeature& feature, QgsFeatureRendererV2* renderer = 0, QGis::UnitType outputUnit = QGis::Meters );
|
|
|
|
//! @note not available in python bindings
|
|
// QMap<int, int> attrIdxToOgrIdx();
|
|
|
|
/** close opened shapefile for writing */
|
|
~QgsVectorFileWriter();
|
|
|
|
/** Delete a shapefile (and its accompanying shx / dbf / prf)
|
|
* @param theFileName /path/to/file.shp
|
|
* @return bool true if the file was deleted successfully
|
|
*/
|
|
static bool deleteShapeFile( QString theFileName );
|
|
|
|
SymbologyExport symbologyExport() const;
|
|
void setSymbologyExport( SymbologyExport symExport );
|
|
|
|
double symbologyScaleDenominator() const;
|
|
void setSymbologyScaleDenominator( double d );
|
|
|
|
static bool driverMetadata( const QString& driverName, MetaData& driverMetadata );
|
|
|
|
protected:
|
|
|
|
// OGRGeometryH createEmptyGeometry( QGis::WkbType wkbType );
|
|
};
|