45 QList<QgsCoordinateReferenceSystemRegistry::UserCrsDetails> res;
51 if ( result != SQLITE_OK )
57 const QString sql = QStringLiteral(
"select srs_id,description,parameters, wkt from tbl_srs" );
58 QgsDebugMsgLevel( QStringLiteral(
"Query to populate existing list:%1" ).arg( sql ), 4 );
60 if ( result == SQLITE_OK )
63 while ( preparedStatement.
step() == SQLITE_ROW )
71 if ( !details.
wkt.isEmpty() )
92 QString proj4String =
crs.d->mProj4;
93 if ( proj4String.isEmpty() )
107 if ( QgsCoordinateReferenceSystem::getRecordCount() == 0 )
109 mySql =
"insert into tbl_srs (srs_id,description,projection_acronym,ellipsoid_acronym,parameters,is_geo,wkt) values ("
113 +
',' + quotedEllipsoidString
121 mySql =
"insert into tbl_srs (description,projection_acronym,ellipsoid_acronym,parameters,is_geo,wkt) values ("
124 +
',' + quotedEllipsoidString
134 if ( myResult != SQLITE_OK )
136 QgsDebugMsg( QStringLiteral(
"Can't open or create database %1: %2" )
141 statement = database.
prepare( mySql, myResult );
143 qint64 returnId = -1;
144 if ( myResult == SQLITE_OK && statement.
step() == SQLITE_DONE )
148 returnId = sqlite3_last_insert_rowid( database.get() );
149 crs.d->mSrsId = returnId;
150 crs.d->mAuthId = QStringLiteral(
"USER:%1" ).arg( returnId );
151 crs.d->mDescription = name;
154 if ( returnId != -1 )
165 if ( returnId != -1 )
182 const QString sql =
"update tbl_srs set description="
195 if ( myResult != SQLITE_OK )
197 QgsDebugMsg( QStringLiteral(
"Can't open or create database %1: %2" )
204 QString errorMessage;
205 if ( database.
exec( sql, errorMessage ) != SQLITE_OK )
212 const int changed = sqlite3_changes( database.get() );
252 if ( result != SQLITE_OK )
254 QgsDebugMsg( QStringLiteral(
"Can't open database: %1 \n please notify QGIS developers of this error \n %2 (file name) " ).arg( database.
errorMessage(),
262 if ( result != SQLITE_OK || preparedStatement.
step() != SQLITE_DONE )
264 QgsDebugMsg( QStringLiteral(
"failed to remove custom CRS from database: %1 [%2]" ).arg( sql, database.
errorMessage() ) );
269 const int changed = sqlite3_changes( database.get() );
276 QgsMessageLog::logMessage( QObject::tr(
"Error removing user CRS [%1]: No matching ID found in database" ).arg(
id ), QObject::tr(
"CRS" ) );
295 bool QgsCoordinateReferenceSystemRegistry::insertProjection(
const QString &projectionAcronym )
302 if ( result != SQLITE_OK )
304 QgsDebugMsg( QStringLiteral(
"Can't open database: %1 \n please notify QGIS developers of this error \n %2 (file name) " ).arg( database.
errorMessage(),
309 if ( result != SQLITE_OK )
317 QString srsSql =
"select acronym,name,notes,parameters from tbl_projection where acronym=" +
QgsSqliteUtils::quotedString( projectionAcronym );
320 if ( srsResult == SQLITE_OK )
322 if ( srsPreparedStatement.
step() == SQLITE_ROW )
326 sql =
"insert into tbl_projection(acronym,name,notes,parameters) values ("
333 if ( result != SQLITE_OK || preparedStatement.
step() != SQLITE_DONE )
335 QgsDebugMsg( QStringLiteral(
"Could not insert projection into database: %1 [%2]" ).arg( sql, database.
errorMessage() ) );
351 static std::once_flag initialized;
352 std::call_once( initialized, [ = ]
356 const PJ_OPERATIONS *operation = proj_list_operations();
357 while ( operation && operation->id )
361 value.mId = QString( operation->id );
363 const QString description( *operation->descr );
364 const QStringList descriptionParts = description.split( QStringLiteral(
"\n\t" ) );
365 value.mDescription = descriptionParts.value( 0 );
366 value.mDetails = descriptionParts.mid( 1 ).join(
'\n' );
368 mProjOperations.insert( value.
id(), value );
374 return mProjOperations;
379 #if PROJ_VERSION_MAJOR>8 || (PROJ_VERSION_MAJOR==8 && PROJ_VERSION_MINOR>=1)
381 static std::once_flag initialized;
382 std::call_once( initialized, [ = ]
389 PROJ_CELESTIAL_BODY_INFO **list = proj_get_celestial_body_list_from_database( context,
nullptr, &resultCount );
390 mCelestialBodies.reserve( resultCount );
391 for (
int i = 0; i < resultCount; i++ )
393 const PROJ_CELESTIAL_BODY_INFO *info = list[ i ];
399 body.mAuthority = QString( info->auth_name );
400 body.mName = QString( info->name );
402 mCelestialBodies << body;
404 proj_celestial_body_list_destroy( list );
407 return mCelestialBodies;
409 throw QgsNotSupportedException( QStringLiteral(
"Retrieving celestial bodies requires a QGIS build based on PROJ 8.1 or later" ) );
static QString qgisUserDatabaseFilePath()
Returns the path to the user qgis.db file.
static QString srsDatabaseFilePath()
Returns the path to the srs.db file.
Contains information about a celestial body.
Contains details of a custom (user defined) CRS.
QgsCoordinateReferenceSystem crs
QgsCoordinateReferenceSystem object representing the user-defined CRS.
QString proj
PROJ string definition of CRS.
QString wkt
WKT definition of CRS.
QString name
CRS name (or description)
void userCrsAdded(const QString &id)
Emitted whenever a new user CRS definition is added.
void userCrsChanged(const QString &id)
Emitted whenever an existing user CRS definition is changed.
QList< QgsCelestialBody > celestialBodies() const
Returns a list of all known celestial bodies.
void userCrsRemoved(long id)
Emitted when the user CRS with matching id is removed from the database.
void crsDefinitionsChanged()
Emitted whenever an operation has caused any of the known CRS definitions (including user-defined CRS...
bool updateUserCrs(long id, const QgsCoordinateReferenceSystem &crs, const QString &name, QgsCoordinateReferenceSystem::Format nativeFormat=QgsCoordinateReferenceSystem::FormatWkt)
Updates the definition of the existing user CRS with matching id.
QgsCoordinateReferenceSystemRegistry(QObject *parent=nullptr)
Constructor for QgsCoordinateReferenceSystemRegistry, with the specified parent object.
~QgsCoordinateReferenceSystemRegistry()
bool removeUserCrs(long id)
Removes the existing user CRS with matching id.
QList< QgsCoordinateReferenceSystemRegistry::UserCrsDetails > userCrsList() const
Returns a list containing the details of all registered custom (user-defined) CRSes.
long addUserCrs(const QgsCoordinateReferenceSystem &crs, const QString &name, QgsCoordinateReferenceSystem::Format nativeFormat=QgsCoordinateReferenceSystem::FormatWkt)
Adds a new crs definition as a custom ("USER") CRS.
QMap< QString, QgsProjOperation > projOperations() const
Returns a map of all valid PROJ operations.
This class represents a coordinate reference system (CRS).
bool isValid() const
Returns whether this CRS is correctly initialized and usable.
bool createFromWkt(const QString &wkt)
Sets this CRS using a WKT definition.
QString toProj() const
Returns a Proj string representation of this CRS.
QString ellipsoidAcronym() const
Returns the ellipsoid acronym for the ellipsoid used by the CRS.
QString projectionAcronym() const
Returns the projection acronym for the projection used by the CRS.
bool createFromProj(const QString &projString, bool identify=true)
Sets this CRS by passing it a PROJ style formatted string.
Format
Projection definition formats.
@ FormatWkt
WKT format (always recommended over proj string format)
static void invalidateCache(bool disableCache=false)
Clears the internal cache used to initialize QgsCoordinateReferenceSystem objects.
@ WKT_PREFERRED
Preferred format, matching the most recent WKT ISO standard. Currently an alias to WKT2_2019,...
QString toWkt(WktVariant variant=WKT1_GDAL, bool multiline=false, int indentationWidth=4) const
Returns a WKT representation of this CRS.
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true)
Adds a message to the log instance (and creates it if necessary).
Custom exception class which is raised when an operation is not supported.
static PJ_CONTEXT * get()
Returns a thread local instance of a proj context, safe for use in the current thread.
Contains information about a PROJ operation.
QString id() const
ID of operation.
Scoped object for logging of the runtime for a single operation or group of operations.
static QString quotedString(const QString &value)
Returns a quoted string value, surround by ' characters and with special characters correctly escaped...
Unique pointer for sqlite3 databases, which automatically closes the database when the pointer goes o...
sqlite3_statement_unique_ptr prepare(const QString &sql, int &resultCode) const
Prepares a sql statement, returning the result.
int open(const QString &path)
Opens the database at the specified file path.
QString errorMessage() const
Returns the most recent error message encountered by the database.
int open_v2(const QString &path, int flags, const char *zVfs)
Opens the database at the specified file path.
int exec(const QString &sql, QString &errorMessage) const
Executes the sql command in the database.
Unique pointer for sqlite3 prepared statements, which automatically finalizes the statement when the ...
QString columnAsText(int column) const
Returns the column value from the current statement row as a string.
int step()
Steps to the next record in the statement, returning the sqlite3 result code.
const int USER_CRS_START_ID
Magick number that determines whether a projection crsid is a system (srs.db) or user (~/....
struct projCtx_t PJ_CONTEXT
#define QgsDebugMsgLevel(str, level)
const QgsCoordinateReferenceSystem & crs