15#ifndef QGSARCGISRESTUTILS_H
16#define QGSARCGISRESTUTILS_H
74 void setTimeZone(
const QTimeZone &zone ) { mTimeZone = zone; }
81 QTimeZone
timeZone()
const {
return mTimeZone; }
101 QString mObjectIdFieldName;
229 IncludeGeometry = 1 << 0,
230 IncludeNonObjectIdAttributes = 1 << 1,
231 SkipUnsetAttributes = 1 << 2,
279 static std::unique_ptr< QgsPoint > convertPoint(
const QVariantList &list,
Qgis::WkbType type );
286 static std::unique_ptr< QgsCircularString > convertCircularString(
const QVariantMap &data,
Qgis::WkbType type,
const QgsPoint &startPoint );
291 static std::unique_ptr< QgsCompoundCurve > convertCompoundCurve(
const QVariantList &list,
Qgis::WkbType type );
296 static std::unique_ptr< QgsPoint > convertGeometryPoint(
const QVariantMap &data,
Qgis::WkbType pointType );
301 static std::unique_ptr< QgsMultiPoint > convertMultiPoint(
const QVariantMap &geometryData,
Qgis::WkbType pointType );
306 static std::unique_ptr< QgsMultiCurve > convertGeometryPolyline(
const QVariantMap &data,
Qgis::WkbType pointType );
311 static std::unique_ptr< QgsMultiSurface > convertGeometryPolygon(
const QVariantMap &data,
Qgis::WkbType pointType );
316 static std::unique_ptr< QgsPolygon > convertEnvelope(
const QVariantMap &data );
318 static std::unique_ptr< QgsLineSymbol > parseEsriLineSymbolJson(
const QVariantMap &symbolData );
319 static std::unique_ptr< QgsFillSymbol > parseEsriFillSymbolJson(
const QVariantMap &symbolData );
320 static std::unique_ptr< QgsFillSymbol > parseEsriPictureFillSymbolJson(
const QVariantMap &symbolData );
321 static std::unique_ptr< QgsMarkerSymbol > parseEsriMarkerSymbolJson(
const QVariantMap &symbolData );
322 static std::unique_ptr< QgsMarkerSymbol > parseEsriPictureMarkerSymbolJson(
const QVariantMap &symbolData );
323 static std::unique_ptr< QgsMarkerSymbol > parseEsriTextMarkerSymbolJson(
const QVariantMap &symbolData );
327 static QVariantMap pointToJson(
const QgsPoint *point );
328 static QVariantMap multiPointToJson(
const QgsMultiPoint *multiPoint );
329 static QVariantList lineStringToJsonPath(
const QgsLineString *line );
330 static QVariantList curveToJsonCurve(
const QgsCurve *curve,
bool includeStart );
331 static QVariantMap lineStringToJson(
const QgsLineString *line );
332 static QVariantMap curveToJson(
const QgsCurve *curve );
334 static QVariantMap multiCurveToJson(
const QgsMultiCurve *multiCurve );
335 static QVariantList polygonToJsonRings(
const QgsPolygon *polygon );
336 static QVariantList curvePolygonToJsonRings(
const QgsCurvePolygon *polygon );
337 static QVariantMap polygonToJson(
const QgsPolygon *polygon );
338 static QVariantMap curvePolygonToJson(
const QgsCurvePolygon *polygon );
339 static QVariantMap multiPolygonToJson(
const QgsMultiPolygon *polygon );
340 static QVariantMap multiSurfaceToJson(
const QgsMultiSurface *multiSurface );
ArcGisRestServiceType
Available ArcGIS REST service types.
MarkerShape
Marker shapes.
WkbType
The WKB type describes the number of dimensions a geometry has.
Abstract base class for all geometries.
Abstract base class - its implementations define different approaches to the labeling of a vector lay...
Contains the context of a ArcGIS REST service operation.
void setTimeZone(const QTimeZone &zone)
Sets the time zone for datetime values.
QTimeZone timeZone() const
Returns the time zone for datetime values.
QString objectIdFieldName() const
Returns the name of the objectId field.
void setObjectIdFieldName(const QString &name)
Sets the name of the objectId field.
Utility functions for working with ArcGIS REST services.
static QVariantMap fieldDefinitionToJson(const QgsField &field)
Converts a field's definition to an ArcGIS REST JSON representation.
static QgsCoordinateReferenceSystem convertSpatialReference(const QVariantMap &spatialReferenceMap)
Converts a spatial reference JSON definition to a QgsCoordinateReferenceSystem value.
static QDateTime convertDateTime(const QVariant &value)
Converts a date time value to a QDateTime.
static Qgis::WkbType convertGeometryType(const QString &type)
Converts an ESRI REST geometry type to a WKB type.
static QString convertLabelingExpression(const QString &string)
Converts an ESRI labeling expression to a QGIS expression string.
static QgsSymbol * convertSymbol(const QVariantMap &definition)
Converts a symbol JSON definition to a QgsSymbol.
static QVariantMap geometryToJson(const QgsGeometry &geometry, const QgsArcGisRestContext &context, const QgsCoordinateReferenceSystem &crs=QgsCoordinateReferenceSystem())
Converts a geometry to an ArcGIS REST JSON representation.
friend class TestQgsArcGisRestUtils
static Qgis::ArcGisRestServiceType serviceTypeFromString(const QString &type)
Converts a string value to a REST service type.
static QVariant variantToAttributeValue(const QVariant &variant, QMetaType::Type expectedType, const QgsArcGisRestContext &context)
Converts a variant to a REST attribute value.
static QgsAbstractGeometry * convertGeometry(const QVariantMap &geometry, const QString &esriGeometryType, bool hasM, bool hasZ, QgsCoordinateReferenceSystem *crs=nullptr)
Converts an ESRI REST geometry JSON definition to a QgsAbstractGeometry.
static QVariantMap featureToJson(const QgsFeature &feature, const QgsArcGisRestContext &context, const QgsCoordinateReferenceSystem &crs=QgsCoordinateReferenceSystem(), QgsArcGisRestUtils::FeatureToJsonFlags flags=QgsArcGisRestUtils::FeatureToJsonFlags(static_cast< int >(QgsArcGisRestUtils::FeatureToJsonFlag::IncludeGeometry)|static_cast< int >(QgsArcGisRestUtils::FeatureToJsonFlag::IncludeNonObjectIdAttributes)))
Converts a feature to an ArcGIS REST JSON representation.
static Qt::PenStyle convertLineStyle(const QString &style)
Converts an ESRI line style to a Qt pen style.
Q_ENUM(FeatureToJsonFlag)
FeatureToJsonFlag
Flags which control the behavior of converting features to JSON.
@ IncludeGeometry
Whether to include the geometry definition.
@ IncludeNonObjectIdAttributes
Whether to include any non-objectId attributes.
static QgsFeatureRenderer * convertRenderer(const QVariantMap &rendererData)
Converts renderer JSON data to an equivalent QgsFeatureRenderer.
static QMetaType::Type convertFieldType(const QString &type)
Converts an ESRI REST field type to a QVariant type.
static Qt::BrushStyle convertFillStyle(const QString &style)
Converts an ESRI fill style to a Qt brush style.
static QVariantMap crsToJson(const QgsCoordinateReferenceSystem &crs)
Converts a crs to an ArcGIS REST JSON representation.
QFlags< FeatureToJsonFlag > FeatureToJsonFlags
Flags which control the behavior of converting features to JSON.
static QgsAbstractVectorLayerLabeling * convertLabeling(const QVariantList &data)
Converts labeling JSON data to an equivalent QGIS vector labeling.
static QColor convertColor(const QVariant &data)
Converts ESRI JSON color data to a QColor object.
static QgsRectangle convertRectangle(const QVariant &value)
Converts a rectangle value to a QgsRectangle.
Circular string geometry type.
Compound curve geometry type.
Represents a coordinate reference system (CRS).
Curve polygon geometry type.
Abstract base class for curved geometry type.
Abstract base class for all 2D vector feature renderers.
The feature class encapsulates a single feature including its unique ID, geometry and a list of field...
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Encapsulate a field in an attribute table or data source.
A fill symbol type, for rendering Polygon and MultiPolygon geometries.
A geometry is the spatial representation of a feature.
Line string geometry type, with support for z-dimension and m-values.
A line symbol type, for rendering LineString and MultiLineString geometries.
A marker symbol type, for rendering Point and MultiPoint geometries.
Multi curve geometry collection.
Multi line string geometry collection.
Multi point geometry collection.
Multi polygon geometry collection.
Multi surface geometry collection.
QNetworkAccessManager with additional QGIS specific logic.
Point geometry type, with support for z-dimension and m-values.
A rectangle specified with double values.
Abstract base class for all rendered symbols.
#define SIP_ENUM_BASETYPE(type)