26 #include <QNetworkRequest>
27 #include <QJsonDocument>
30 QMutex QgsNominatimGeocoder::sMutex;
33 qint64 QgsNominatimGeocoder::sLastRequestTimestamp = 0;
37 , mCountryCodes( countryCodes )
38 , mEndpoint( QStringLiteral(
"https://nominatim.qgis.org/search" ) )
52 fields.
append(
QgsField( QStringLiteral(
"osm_type" ), QVariant::String ) );
53 fields.
append(
QgsField( QStringLiteral(
"display_name" ), QVariant::String ) );
54 fields.
append(
QgsField( QStringLiteral(
"place_id" ), QVariant::String ) );
55 fields.
append(
QgsField( QStringLiteral(
"class" ), QVariant::String ) );
56 fields.
append(
QgsField( QStringLiteral(
"type" ), QVariant::String ) );
57 fields.
append(
QgsField( QStringLiteral(
"road" ), QVariant::String ) );
58 fields.
append(
QgsField( QStringLiteral(
"village" ), QVariant::String ) );
59 fields.
append(
QgsField( QStringLiteral(
"city_district" ), QVariant::String ) );
60 fields.
append(
QgsField( QStringLiteral(
"town" ), QVariant::String ) );
61 fields.
append(
QgsField( QStringLiteral(
"city" ), QVariant::String ) );
62 fields.
append(
QgsField( QStringLiteral(
"state" ), QVariant::String ) );
63 fields.
append(
QgsField( QStringLiteral(
"country" ), QVariant::String ) );
64 fields.
append(
QgsField( QStringLiteral(
"postcode" ), QVariant::String ) );
87 QgsDebugMsg(
"Could not transform geocode bounds to WGS84" );
93 const QMutexLocker locker( &sMutex );
94 const auto it = sCachedResults()->constFind( url );
95 if ( it != sCachedResults()->constEnd() )
100 while ( QDateTime::currentMSecsSinceEpoch() - sLastRequestTimestamp < 1000 / mRequestsPerSecond )
102 QThread::msleep( 50 );
104 return QList<QgsGeocoderResult>();
107 QNetworkRequest request( url );
113 sLastRequestTimestamp = QDateTime::currentMSecsSinceEpoch();
122 const QJsonDocument doc = QJsonDocument::fromJson( newReq.
reply().
content(), &err );
128 const QVariantList results = doc.array().toVariantList();
129 if ( results.isEmpty() )
131 sCachedResults()->insert( url, QList<QgsGeocoderResult>() );
132 return QList<QgsGeocoderResult>();
135 QList< QgsGeocoderResult > matches;
136 matches.reserve( results.size() );
137 for (
const QVariant &result : results )
142 sCachedResults()->insert( url, matches );
149 QUrl res( mEndpoint );
151 query.addQueryItem( QStringLiteral(
"format" ), QStringLiteral(
"json" ) );
152 query.addQueryItem( QStringLiteral(
"addressdetails" ), QStringLiteral(
"1" ) );
155 query.addQueryItem( QStringLiteral(
"viewbox" ), QStringLiteral(
"%1,%2,%3,%4" ).arg( bounds.
xMinimum() )
160 if ( !mCountryCodes.isEmpty() )
162 query.addQueryItem( QStringLiteral(
"countrycodes" ), mCountryCodes.toLower() );
164 query.addQueryItem( QStringLiteral(
"q" ), address );
165 res.setQuery( query );
172 const double latitude = json.value( QStringLiteral(
"lat" ) ).toDouble();
173 const double longitude = json.value( QStringLiteral(
"lon" ) ).toDouble();
177 QgsGeocoderResult res( json.value( QStringLiteral(
"display_name" ) ).toString(),
181 QVariantMap attributes;
183 if ( json.contains( QStringLiteral(
"display_name" ) ) )
184 attributes.insert( QStringLiteral(
"display_name" ), json.value( QStringLiteral(
"display_name" ) ).toString() );
185 if ( json.contains( QStringLiteral(
"place_id" ) ) )
186 attributes.insert( QStringLiteral(
"place_id" ), json.value( QStringLiteral(
"place_id" ) ).toString() );
187 if ( json.contains( QStringLiteral(
"osm_type" ) ) )
188 attributes.insert( QStringLiteral(
"osm_type" ), json.value( QStringLiteral(
"osm_type" ) ).toString() );
189 if ( json.contains( QStringLiteral(
"class" ) ) )
190 attributes.insert( QStringLiteral(
"class" ), json.value( QStringLiteral(
"class" ) ).toString() );
191 if ( json.contains( QStringLiteral(
"type" ) ) )
192 attributes.insert( QStringLiteral(
"type" ), json.value( QStringLiteral(
"type" ) ).toString() );
194 if ( json.contains( QStringLiteral(
"address" ) ) )
196 const QVariantMap address_components = json.value( QStringLiteral(
"address" ) ).toMap();
197 if ( address_components.contains( QStringLiteral(
"road" ) ) )
198 attributes.insert( QStringLiteral(
"road" ), address_components.value( QStringLiteral(
"road" ) ).toString() );
199 if ( address_components.contains( QStringLiteral(
"village" ) ) )
200 attributes.insert( QStringLiteral(
"village" ), address_components.value( QStringLiteral(
"village" ) ).toString() );
201 if ( address_components.contains( QStringLiteral(
"city_district" ) ) )
202 attributes.insert( QStringLiteral(
"city_district" ), address_components.value( QStringLiteral(
"city_district" ) ).toString() );
203 if ( address_components.contains( QStringLiteral(
"town" ) ) )
204 attributes.insert( QStringLiteral(
"town" ), address_components.value( QStringLiteral(
"town" ) ).toString() );
205 if ( address_components.contains( QStringLiteral(
"city" ) ) )
206 attributes.insert( QStringLiteral(
"city" ), address_components.value( QStringLiteral(
"city" ) ).toString() );
207 if ( address_components.contains( QStringLiteral(
"state" ) ) )
209 attributes.insert( QStringLiteral(
"state" ), address_components.value( QStringLiteral(
"state" ) ).toString() );
210 res.
setGroup( address_components.value( QStringLiteral(
"state" ) ).toString() );
212 if ( address_components.contains( QStringLiteral(
"country" ) ) )
213 attributes.insert( QStringLiteral(
"country" ), address_components.value( QStringLiteral(
"country" ) ).toString() );
214 if ( address_components.contains( QStringLiteral(
"postcode" ) ) )
215 attributes.insert( QStringLiteral(
"postcode" ), address_components.value( QStringLiteral(
"postcode" ) ).toString() );
218 if ( json.contains( QStringLiteral(
"boundingbox" ) ) )
220 const QVariantList boundingBox = json.value( QStringLiteral(
"boundingbox" ) ).toList();
221 if ( boundingBox.size() == 4 )
223 boundingBox.at( 0 ).toDouble(),
224 boundingBox.at( 3 ).toDouble(),
225 boundingBox.at( 1 ).toDouble() ) );
244 return mCountryCodes;
A thread safe class for performing blocking (sync) network requests, with full support for QGIS proxy...
ErrorCode get(QNetworkRequest &request, bool forceRefresh=false, QgsFeedback *feedback=nullptr)
Performs a "get" operation on the specified request.
QString errorMessage() const
Returns the error message string, after a get() or post() request has been made.
@ NoError
No error was encountered.
QgsNetworkReplyContent reply() const
Returns the content of the network reply, after a get() or post() request has been made.
This class represents a coordinate reference system (CRS).
Custom exception class for Coordinate Reference System related exceptions.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
bool isCanceled() const SIP_HOLDGIL
Tells whether the operation has been canceled already.
Encapsulate a field in an attribute table or data source.
Container of fields for a vector layer.
bool append(const QgsField &field, FieldOrigin origin=OriginProvider, int originIndex=-1)
Appends a field. The field must have unique name, otherwise it is rejected (returns false)
Encapsulates the context of a geocoding operation.
QgsCoordinateTransformContext transformContext() const
Returns the coordinate transform context, which should be used whenever the geocoder constructs a coo...
QgsCoordinateReferenceSystem areaOfInterestCrs() const
Returns the coordinate reference system for the area of interest, which can be used to indicate the d...
QgsGeometry areaOfInterest() const
Returns the optional area of interest, which can be used to indicate the desired geographic area wher...
@ GeocodesStrings
Can geocode string input values.
Represents a matching result from a geocoder search.
void setAdditionalAttributes(const QVariantMap &attributes)
Setss additional attributes generated during the geocode, which may be added to features being geocod...
void setGroup(const QString &group)
Sets the optional group value for the result.
void setViewport(const QgsRectangle &viewport)
Sets the suggested viewport for the result, which reflects a recommended map extent for displaying th...
static QgsGeocoderResult errorResult(const QString &errorMessage)
Creates an invalid error result, with the specified errorMessage string.
A geometry is the spatial representation of a feature.
Qgis::GeometryOperationResult transform(const QgsCoordinateTransform &ct, Qgis::TransformDirection direction=Qgis::TransformDirection::Forward, bool transformZ=false) SIP_THROW(QgsCsException)
Transforms this geometry as described by the coordinate transform ct.
static QgsGeometry fromPointXY(const QgsPointXY &point) SIP_HOLDGIL
Creates a new geometry from a QgsPointXY object.
bool isEmpty() const
Returns true if the geometry is empty (eg a linestring with no vertices, or a collection with no geom...
QgsRectangle boundingBox() const
Returns the bounding box of the geometry.
QByteArray content() const
Returns the reply content.
QList< QgsGeocoderResult > geocodeString(const QString &string, const QgsGeocoderContext &context, QgsFeedback *feedback=nullptr) const override
Geocodes a string.
QgsGeocoderResult jsonToResult(const QVariantMap &json) const
Converts a JSON result returned from the Nominatim service to a geocoder result object.
QgsNominatimGeocoder(const QString &countryCodes=QString(), const QString &endpoint=QString())
Constructor for QgsNominatimGeocoder.
QString countryCodes() const
Returns the optional region bias which will be used to prioritize results in a certain region.
QString endpoint() const
Returns the API endpoint used for requests.
QgsFields appendedFields() const override
Returns a set of newly created fields which will be appended to existing features during the geocode ...
void setEndpoint(const QString &endpoint)
Sets a specific API endpoint to use for requests.
Flags flags() const override
Returns the geocoder's capability flags.
void setCountryCodes(const QString &countryCodes)
Sets the optional region bias which will be used to prioritize results in a certain region.
QgsWkbTypes::Type wkbType() const override
Returns the WKB type of geometries returned by the geocoder.
QUrl requestUrl(const QString &address, const QgsRectangle &bounds=QgsRectangle()) const
Returns the URL generated for geocoding the specified address.
A class to represent a 2D point.
A rectangle specified with double values.
double yMaximum() const SIP_HOLDGIL
Returns the y maximum value (top side of rectangle).
double xMaximum() const SIP_HOLDGIL
Returns the x maximum value (right side of rectangle).
double xMinimum() const SIP_HOLDGIL
Returns the x minimum value (left side of rectangle).
double yMinimum() const SIP_HOLDGIL
Returns the y minimum value (bottom side of rectangle).
bool isNull() const
Test if the rectangle is null (all coordinates zero or after call to setMinimal()).
Type
The WKB type describes the number of dimensions a geometry has.
Q_GLOBAL_STATIC(QReadWriteLock, sDefinitionCacheLock)
QMap< QUrl, QList< QgsGeocoderResult > > CachedGeocodeResult
#define QgsSetRequestInitiatorClass(request, _class)
QMap< QUrl, QList< QgsGeocoderResult > > CachedGeocodeResult