23 #include <QTemporaryFile>
25 #include <QDomElement>
28 #include <QTextStream>
42 #include <ogr_srs_api.h>
43 #include <cpl_error.h>
54 , mMapUnits(
QGis::UnknownUnit )
57 , mValidationHint(
"" )
58 , mAxisInverted( false )
60 mCRS = OSRNewSpatialReference( NULL );
66 , mMapUnits(
QGis::UnknownUnit )
69 , mValidationHint(
"" )
70 , mAxisInverted( false )
72 mCRS = OSRNewSpatialReference( NULL );
80 , mMapUnits(
QGis::UnknownUnit )
83 , mValidationHint(
"" )
84 , mAxisInverted( false )
86 mCRS = OSRNewSpatialReference( NULL );
92 OSRDestroySpatialReference(
mCRS );
119 QRegExp reCrsId(
"^(epsg|postgis|internal)\\:(\\d+)$", Qt::CaseInsensitive );
120 if ( reCrsId.indexIn( theDefinition ) == 0 )
122 QString authName = reCrsId.cap( 1 ).toLower();
124 if ( authName ==
"epsg" )
126 if ( authName ==
"postgis" )
128 long id = reCrsId.cap( 2 ).toLong();
133 QRegExp reCrsStr(
"^(?:(wkt|proj4)\\:)?(.+)$", Qt::CaseInsensitive );
134 if ( reCrsStr.indexIn( theDefinition ) == 0 )
136 if ( reCrsStr.cap( 1 ).toLower() ==
"proj4" )
145 QString myName = QString(
" * %1 (%2)" )
146 .arg(
QObject::tr(
"Generated CRS",
"A CRS automatically generated from layer info get this prefix for description" ) )
167 #if GDAL_VERSION_NUM >= 1900
168 if ( theDefinition.startsWith(
"ESRI::" ) )
174 if ( OSRSetFromUserInput( crs, theDefinition.toLocal8Bit().constData() ) == OGRERR_NONE )
176 if ( OSRExportToWkt( crs, &wkt ) == OGRERR_NONE )
181 OSRDestroySpatialReference( crs );
191 #if GDAL_VERSION_NUM >= 1900
192 const char* configOld = CPLGetConfigOption(
"GDAL_FIX_ESRI_WKT",
"" );
193 const char* configNew =
"GEOGCS";
195 if ( strcmp( configOld,
"" ) == 0 )
197 CPLSetConfigOption(
"GDAL_FIX_ESRI_WKT", configNew );
198 if ( strcmp( configNew, CPLGetConfigOption(
"GDAL_FIX_ESRI_WKT",
"" ) ) != 0 )
200 .arg( configNew ).arg( CPLGetConfigOption(
"GDAL_FIX_ESRI_WKT",
"" ) ) ) ;
201 QgsDebugMsg( QString(
"set GDAL_FIX_ESRI_WKT : %1" ).arg( configNew ) );
205 QgsDebugMsg( QString(
"GDAL_FIX_ESRI_WKT was already set : %1" ).arg( configNew ) );
212 QRegExp re(
"urn:ogc:def:crs:([^:]+).+([^:]+)", Qt::CaseInsensitive );
213 if ( re.exactMatch( theCrs ) )
215 theCrs = re.cap( 1 ) +
":" + re.cap( 2 );
219 re.setPattern(
"(user|custom|qgis):(\\d+)" );
220 if ( re.exactMatch( theCrs ) &&
createFromSrsId( re.cap( 2 ).toInt() ) )
230 if ( theCrs.compare(
"CRS:27", Qt::CaseInsensitive ) == 0 ||
231 theCrs.compare(
"OGC:CRS27", Qt::CaseInsensitive ) == 0 )
238 if ( theCrs.compare(
"CRS:83", Qt::CaseInsensitive ) == 0 ||
239 theCrs.compare(
"OGC:CRS83", Qt::CaseInsensitive ) == 0 )
246 if ( theCrs.compare(
"CRS:84", Qt::CaseInsensitive ) == 0 ||
247 theCrs.compare(
"OGC:CRS84", Qt::CaseInsensitive ) == 0 )
259 mCRS = OSRNewSpatialReference( NULL );
283 OSRDestroySpatialReference(
mCRS );
317 "srs_id", QString::number(
id ) );
322 QgsDebugMsgLevel(
"load CRS from " + db +
" where " + expression +
" is " + value, 3 );
326 QFileInfo myInfo( db );
327 if ( !myInfo.exists() )
329 QgsDebugMsg(
"failed : " + db +
" does not exist!" );
335 sqlite3_stmt *myPreparedStatement;
338 myResult =
openDb( db, &myDatabase );
339 if ( myResult != SQLITE_OK )
341 QgsDebugMsg(
"failed : " + db +
" could not be opened!" );
357 QString mySql =
"select srs_id,description,projection_acronym,"
358 "ellipsoid_acronym,parameters,srid,auth_name||':'||auth_id,is_geo "
359 "from tbl_srs where " + expression +
"=" +
quotedValue( value ) +
" order by deprecated";
360 myResult = sqlite3_prepare( myDatabase, mySql.toUtf8(),
361 mySql.toUtf8().length(),
362 &myPreparedStatement, &myTail );
364 if ( myResult == SQLITE_OK && sqlite3_step( myPreparedStatement ) == SQLITE_ROW )
366 mSrsId = QString::fromUtf8((
char * )sqlite3_column_text(
367 myPreparedStatement, 0 ) ).toLong();
368 mDescription = QString::fromUtf8((
char * )sqlite3_column_text(
369 myPreparedStatement, 1 ) );
370 mProjectionAcronym = QString::fromUtf8((
char * )sqlite3_column_text( myPreparedStatement, 2 ) );
371 mEllipsoidAcronym = QString::fromUtf8((
char * )sqlite3_column_text( myPreparedStatement, 3 ) );
372 mProj4 = QString::fromUtf8((
char * )sqlite3_column_text( myPreparedStatement, 4 ) );
373 mSRID = QString::fromUtf8((
char * )sqlite3_column_text( myPreparedStatement, 5 ) ).toLong();
374 mAuthId = QString::fromUtf8((
char * )sqlite3_column_text( myPreparedStatement, 6 ) );
375 mGeoFlag = QString::fromUtf8((
char * )sqlite3_column_text( myPreparedStatement, 7 ) ).toInt() != 0;
382 else if (
mAuthId.startsWith(
"EPSG:", Qt::CaseInsensitive ) )
384 OSRDestroySpatialReference(
mCRS );
385 mCRS = OSRNewSpatialReference( NULL );
399 sqlite3_finalize( myPreparedStatement );
400 sqlite3_close( myDatabase );
408 OGRAxisOrientation orientation;
409 OSRGetAxis(
mCRS, OSRIsGeographic(
mCRS ) ?
"GEOGCS" :
"PROJCS", 0, &orientation );
412 if ( orientation == OAO_Other &&
mAuthId.startsWith(
"EPSG:", Qt::CaseInsensitive ) )
416 if ( OSRImportFromEPSGA( crs,
mAuthId.mid( 5 ).toInt() ) == OGRERR_NONE )
418 OSRGetAxis( crs, OSRIsGeographic( crs ) ?
"GEOGCS" :
"PROJCS", 0, &orientation );
421 OSRDestroySpatialReference( crs );
436 if ( theWkt.isEmpty() )
438 QgsDebugMsg(
"theWkt is uninitialised, operation failed" );
442 QByteArray ba = theWkt.toLatin1();
443 const char *pWkt = ba.data();
445 OGRErr myInputResult = OSRImportFromWkt(
mCRS, (
char ** ) & pWkt );
447 if ( myInputResult != OGRERR_NONE )
449 QgsDebugMsg(
"\n---------------------------------------------------------------" );
450 QgsDebugMsg(
"This CRS could *** NOT *** be set from the supplied Wkt " );
452 QgsDebugMsg( QString(
"UNUSED WKT: %1" ).arg( pWkt ) );
453 QgsDebugMsg(
"---------------------------------------------------------------\n" );
457 if ( OSRAutoIdentifyEPSG(
mCRS ) == OGRERR_NONE )
459 QString
authid = QString(
"%1:%2" )
460 .arg( OSRGetAuthorityName(
mCRS, NULL ) )
461 .arg( OSRGetAuthorityCode(
mCRS, NULL ) );
471 char *proj4src = NULL;
472 OSRExportToProj4(
mCRS, &proj4src );
484 OSRExportToProj4(
mCRS, &proj4src );
494 QString myName = QString(
" * %1 (%2)" )
495 .arg(
QObject::tr(
"Generated CRS",
"A CRS automatically generated from layer info get this prefix for description" ) )
521 QString myProj4String = theProj4String.trimmed();
526 QRegExp myProjRegExp(
"\\+proj=(\\S+)" );
527 int myStart = myProjRegExp.indexIn( myProj4String );
530 QgsDebugMsg(
"proj string supplied has no +proj argument" );
536 QRegExp myEllipseRegExp(
"\\+ellps=(\\S+)" );
537 myStart = myEllipseRegExp.indexIn( myProj4String );
540 QgsDebugMsg(
"proj string supplied has no +ellps argument" );
548 QRegExp myAxisRegExp(
"\\+a=(\\S+)" );
549 myStart = myAxisRegExp.indexIn( myProj4String );
552 QgsDebugMsg(
"proj string supplied has no +a argument" );
570 myRecord =
getRecord(
"select * from tbl_srs where parameters=" +
quotedValue( myProj4String ) +
" order by deprecated" );
571 if ( myRecord.empty() )
576 QRegExp myLat1RegExp(
"\\+lat_1=\\S+" );
577 QRegExp myLat2RegExp(
"\\+lat_2=\\S+" );
582 QString lat1Str =
"";
583 QString lat2Str =
"";
584 myStart1 = myLat1RegExp.indexIn( myProj4String, myStart1 );
585 myStart2 = myLat2RegExp.indexIn( myProj4String, myStart2 );
586 if ( myStart1 != -1 && myStart2 != -1 )
588 myLength1 = myLat1RegExp.matchedLength();
589 myLength2 = myLat2RegExp.matchedLength();
594 if ( lat1Str !=
"" && lat2Str !=
"" )
597 QString theProj4StringModified = myProj4String;
602 myStart2 = myLat2RegExp.indexIn( theProj4String, myStart2 );
604 QgsDebugMsg(
"trying proj4string match with swapped lat_1,lat_2" );
605 myRecord =
getRecord(
"select * from tbl_srs where parameters=" +
quotedValue( theProj4StringModified.trimmed() ) +
" order by deprecated" );
609 if ( myRecord.empty() )
616 QString sql =
"SELECT * FROM tbl_srs WHERE ";
623 QStringList myParams;
624 foreach ( QString param, myProj4String.split( QRegExp(
"\\s+(?=\\+)" ), QString::SkipEmptyParts ) )
626 QString arg = QString(
"' '||parameters||' ' LIKE %1" ).arg(
quotedValue( QString(
"% %1 %" ).arg( param.trimmed() ) ) );
627 if ( param.startsWith(
"+datum=" ) )
635 myParams << param.trimmed();
639 if ( !datum.isEmpty() )
641 myRecord =
getRecord( sql + delim + datum +
" order by deprecated" );
644 if ( myRecord.empty() )
647 myRecord =
getRecord( sql +
" order by deprecated" );
650 if ( !myRecord.empty() )
653 QStringList foundParams;
654 foreach ( QString param, myRecord[
"parameters"].split( QRegExp(
"\\s+(?=\\+)" ), QString::SkipEmptyParts ) )
656 if ( !param.startsWith(
"+datum=" ) )
657 foundParams << param.trimmed();
663 if ( myParams != foundParams )
670 if ( !myRecord.empty() )
672 mySrsId = myRecord[
"srs_id"].toLong();
673 QgsDebugMsg(
"proj4string param match search for srsid returned srsid: " + QString::number( mySrsId ) );
682 QgsDebugMsg(
"globbing search for srsid from this proj string" );
685 QgsDebugMsg(
"globbing search for srsid returned srsid: " + QString::number( mySrsId ) );
699 QgsDebugMsg(
"Projection is not found in databases." );
710 QString myDatabaseFileName;
713 QString myFieldValue;
716 sqlite3_stmt *myPreparedStatement;
722 QFileInfo myInfo( myDatabaseFileName );
723 if ( !myInfo.exists() )
725 QgsDebugMsg(
"failed : " + myDatabaseFileName +
" does not exist!" );
730 myResult =
openDb( myDatabaseFileName, &myDatabase );
731 if ( myResult != SQLITE_OK )
736 myResult = sqlite3_prepare( myDatabase, theSql.toUtf8(), theSql.toUtf8().length(), &myPreparedStatement, &myTail );
738 if ( myResult == SQLITE_OK && sqlite3_step( myPreparedStatement ) == SQLITE_ROW )
741 int myColumnCount = sqlite3_column_count( myPreparedStatement );
743 for (
int myColNo = 0; myColNo < myColumnCount; myColNo++ )
745 myFieldName = QString::fromUtf8((
char * )sqlite3_column_name( myPreparedStatement, myColNo ) );
746 myFieldValue = QString::fromUtf8((
char * )sqlite3_column_text( myPreparedStatement, myColNo ) );
747 myMap[myFieldName] = myFieldValue;
749 if ( sqlite3_step( myPreparedStatement ) != SQLITE_DONE )
763 sqlite3_finalize( myPreparedStatement );
764 sqlite3_close( myDatabase );
767 QFileInfo myFileInfo;
768 myFileInfo.setFile( myDatabaseFileName );
769 if ( !myFileInfo.exists( ) )
776 myResult =
openDb( myDatabaseFileName, &myDatabase );
777 if ( myResult != SQLITE_OK )
782 myResult = sqlite3_prepare( myDatabase, theSql.toUtf8(), theSql.toUtf8().length(), &myPreparedStatement, &myTail );
784 if ( myResult == SQLITE_OK && sqlite3_step( myPreparedStatement ) == SQLITE_ROW )
786 int myColumnCount = sqlite3_column_count( myPreparedStatement );
788 for (
int myColNo = 0; myColNo < myColumnCount; myColNo++ )
790 myFieldName = QString::fromUtf8((
char * )sqlite3_column_name( myPreparedStatement, myColNo ) );
791 myFieldValue = QString::fromUtf8((
char * )sqlite3_column_text( myPreparedStatement, myColNo ) );
792 myMap[myFieldName] = myFieldValue;
795 if ( sqlite3_step( myPreparedStatement ) != SQLITE_DONE )
806 sqlite3_finalize( myPreparedStatement );
807 sqlite3_close( myDatabase );
811 RecordMap::Iterator it;
812 for ( it = myMap.begin(); it != myMap.end(); ++it )
882 char *proj4src = NULL;
883 OSRExportToProj4(
mCRS, &proj4src );
924 char *oldlocale = setlocale( LC_NUMERIC, NULL );
927 oldlocale = strdup( oldlocale );
929 setlocale( LC_NUMERIC,
"C" );
930 OSRDestroySpatialReference(
mCRS );
931 mCRS = OSRNewSpatialReference( NULL );
933 OSRImportFromProj4(
mCRS, theProj4String.trimmed().toLatin1().constData() )
938 #if defined(QGISDEBUG) && QGISDEBUG>=3
942 setlocale( LC_NUMERIC, oldlocale );
951 mAuthId = QString(
"EPSG:%1" ).arg( theEpsg );
976 if ( OSRIsProjected(
mCRS ) )
978 double toMeter = OSRGetLinearUnits(
mCRS, &unitName );
979 QString unit( unitName );
986 static const double feetToMeter = 0.3048;
987 static const double smallNum = 1e-3;
989 if ( qAbs( toMeter - feetToMeter ) < smallNum )
992 QgsDebugMsg(
"Projection has linear units of " + unit );
996 else if ( unit ==
"Foot" )
1000 QgsDebugMsg(
"Unsupported map units of " + unit );
1006 OSRGetAngularUnits(
mCRS, &unitName );
1007 QString unit( unitName );
1008 if ( unit ==
"degree" )
1012 QgsDebugMsg(
"Unsupported map units of " + unit );
1034 QgsDebugMsg(
"QgsCoordinateReferenceSystem::findMatchingProj will only "
1035 "work if prj acr ellipsoid acr and proj4string are set"
1036 " and the current projection is valid!" );
1042 sqlite3_stmt *myPreparedStatement;
1047 QString mySql = QString(
"select srs_id,parameters from tbl_srs where "
1048 "projection_acronym=%1 and ellipsoid_acronym=%2 order by deprecated" )
1055 myResult =
openDb( myDatabaseFileName, &myDatabase );
1056 if ( myResult != SQLITE_OK )
1061 myResult = sqlite3_prepare( myDatabase, mySql.toUtf8(), mySql.toUtf8().length(), &myPreparedStatement, &myTail );
1063 if ( myResult == SQLITE_OK )
1066 while ( sqlite3_step( myPreparedStatement ) == SQLITE_ROW )
1068 QString mySrsId = QString::fromUtf8((
char * )sqlite3_column_text( myPreparedStatement, 0 ) );
1069 QString myProj4String = QString::fromUtf8((
char * )sqlite3_column_text( myPreparedStatement, 1 ) );
1070 if (
toProj4() == myProj4String.trimmed() )
1072 QgsDebugMsg(
"-------> MATCH FOUND in srs.db srsid: " + mySrsId );
1074 sqlite3_finalize( myPreparedStatement );
1075 sqlite3_close( myDatabase );
1076 return mySrsId.toLong();
1084 QgsDebugMsg(
"no match found in srs.db, trying user db now!" );
1086 sqlite3_finalize( myPreparedStatement );
1087 sqlite3_close( myDatabase );
1094 myResult =
openDb( myDatabaseFileName, &myDatabase );
1095 if ( myResult != SQLITE_OK )
1100 myResult = sqlite3_prepare( myDatabase, mySql.toUtf8(), mySql.toUtf8().length(), &myPreparedStatement, &myTail );
1102 if ( myResult == SQLITE_OK )
1105 while ( sqlite3_step( myPreparedStatement ) == SQLITE_ROW )
1107 QString mySrsId = QString::fromUtf8((
char * )sqlite3_column_text( myPreparedStatement, 0 ) );
1108 QString myProj4String = QString::fromUtf8((
char * )sqlite3_column_text( myPreparedStatement, 1 ) );
1109 if (
toProj4() == myProj4String.trimmed() )
1111 QgsDebugMsg(
"-------> MATCH FOUND in user qgis.db srsid: " + mySrsId );
1113 sqlite3_finalize( myPreparedStatement );
1114 sqlite3_close( myDatabase );
1115 return mySrsId.toLong();
1126 sqlite3_finalize( myPreparedStatement );
1127 sqlite3_close( myDatabase );
1138 return !( *
this == theSrs );
1143 if (
mWkt.isEmpty() )
1146 if ( OSRExportToWkt(
mCRS, &wkt ) == OGRERR_NONE )
1157 QgsDebugMsg(
"Reading Spatial Ref Sys from xml ------------------------!" );
1158 QDomNode srsNode = theNode.namedItem(
"spatialrefsys" );
1160 if ( ! srsNode.isNull() )
1162 bool initialized =
false;
1164 long srsid = srsNode.namedItem(
"srsid" ).toElement().text().toLong();
1170 myNode = srsNode.namedItem(
"authid" );
1171 if ( !myNode.isNull() )
1182 myNode = srsNode.namedItem(
"epsg" );
1183 if ( !myNode.isNull() )
1195 QgsDebugMsg(
"Ignoring authid/epsg for user crs." );
1204 myNode = srsNode.namedItem(
"proj4" );
1213 QgsDebugMsg(
"Setting from elements one by one" );
1215 myNode = srsNode.namedItem(
"proj4" );
1218 myNode = srsNode.namedItem(
"srsid" );
1221 myNode = srsNode.namedItem(
"srid" );
1222 setSrid( myNode.toElement().text().toLong() );
1224 myNode = srsNode.namedItem(
"authid" );
1227 myNode = srsNode.namedItem(
"description" );
1230 myNode = srsNode.namedItem(
"projectionacronym" );
1233 myNode = srsNode.namedItem(
"ellipsoidacronym" );
1236 myNode = srsNode.namedItem(
"geographicflag" );
1237 if ( myNode.toElement().text().compare(
"true" ) )
1258 QString myName = QString(
" * %1 (%2)" )
1259 .arg(
QObject::tr(
"Generated CRS",
"A CRS automatically generated from layer info get this prefix for description" ) )
1277 QDomElement myLayerNode = theNode.toElement();
1278 QDomElement mySrsElement = theDoc.createElement(
"spatialrefsys" );
1280 QDomElement myProj4Element = theDoc.createElement(
"proj4" );
1281 myProj4Element.appendChild( theDoc.createTextNode(
toProj4() ) );
1282 mySrsElement.appendChild( myProj4Element );
1284 QDomElement mySrsIdElement = theDoc.createElement(
"srsid" );
1285 mySrsIdElement.appendChild( theDoc.createTextNode( QString::number(
srsid() ) ) );
1286 mySrsElement.appendChild( mySrsIdElement );
1288 QDomElement mySridElement = theDoc.createElement(
"srid" );
1289 mySridElement.appendChild( theDoc.createTextNode( QString::number(
postgisSrid() ) ) );
1290 mySrsElement.appendChild( mySridElement );
1292 QDomElement myEpsgElement = theDoc.createElement(
"authid" );
1293 myEpsgElement.appendChild( theDoc.createTextNode(
authid() ) );
1294 mySrsElement.appendChild( myEpsgElement );
1296 QDomElement myDescriptionElement = theDoc.createElement(
"description" );
1297 myDescriptionElement.appendChild( theDoc.createTextNode(
description() ) );
1298 mySrsElement.appendChild( myDescriptionElement );
1300 QDomElement myProjectionAcronymElement = theDoc.createElement(
"projectionacronym" );
1301 myProjectionAcronymElement.appendChild( theDoc.createTextNode(
projectionAcronym() ) );
1302 mySrsElement.appendChild( myProjectionAcronymElement );
1304 QDomElement myEllipsoidAcronymElement = theDoc.createElement(
"ellipsoidacronym" );
1305 myEllipsoidAcronymElement.appendChild( theDoc.createTextNode(
ellipsoidAcronym() ) );
1306 mySrsElement.appendChild( myEllipsoidAcronymElement );
1308 QDomElement myGeographicFlagElement = theDoc.createElement(
"geographicflag" );
1309 QString myGeoFlagText =
"false";
1312 myGeoFlagText =
"true";
1315 myGeographicFlagElement.appendChild( theDoc.createTextNode( myGeoFlagText ) );
1316 mySrsElement.appendChild( myGeographicFlagElement );
1318 myLayerNode.appendChild( mySrsElement );
1335 QString myDatabaseFileName;
1336 QString myProjString;
1337 QString mySql = QString(
"select parameters from tbl_srs where srs_id = %1 order by deprecated" ).arg( theSrsId );
1339 QgsDebugMsg(
"mySrsId = " + QString::number( theSrsId ) );
1350 QFileInfo myFileInfo;
1351 myFileInfo.setFile( myDatabaseFileName );
1352 if ( !myFileInfo.exists( ) )
1366 rc =
openDb( myDatabaseFileName, &db );
1373 sqlite3_stmt *ppStmt;
1375 rc = sqlite3_prepare( db, mySql.toUtf8(), mySql.toUtf8().length(), &ppStmt, &pzTail );
1378 if ( rc == SQLITE_OK )
1380 if ( sqlite3_step( ppStmt ) == SQLITE_ROW )
1382 myProjString = QString::fromUtf8((
char* )sqlite3_column_text( ppStmt, 0 ) );
1386 sqlite3_finalize( ppStmt );
1388 sqlite3_close( db );
1391 return myProjString;
1397 int myResult = readonly
1398 ? sqlite3_open_v2( path.toUtf8().data(), db, SQLITE_OPEN_READONLY, NULL )
1399 : sqlite3_open( path.toUtf8().data(), db );
1401 if ( myResult != SQLITE_OK )
1403 QgsDebugMsg(
"Can't open database: " + QString( sqlite3_errmsg( *db ) ) );
1410 .arg( sqlite3_errmsg( *db ) ),
QObject::tr(
"CRS" ) );
1470 QString proj4String =
mProj4;
1471 if ( proj4String.isEmpty() )
1482 mySql =
"insert into tbl_srs (srs_id,description,projection_acronym,ellipsoid_acronym,parameters,is_geo) values ("
1492 mySql =
"insert into tbl_srs (description,projection_acronym,ellipsoid_acronym,parameters,is_geo) values ("
1501 sqlite3_stmt *myPreparedStatement;
1505 if ( myResult != SQLITE_OK )
1507 QgsDebugMsg( QString(
"Can't open or create database %1: %2" )
1509 .arg( sqlite3_errmsg( myDatabase ) ) );
1512 QgsDebugMsg( QString(
"Update or insert sql \n%1" ).arg( mySql ) );
1513 myResult = sqlite3_prepare( myDatabase, mySql.toUtf8(), mySql.toUtf8().length(), &myPreparedStatement, &myTail );
1514 sqlite3_step( myPreparedStatement );
1519 if ( myResult == SQLITE_OK )
1521 return_id = sqlite3_last_insert_rowid( myDatabase );
1527 QStringList projectionsProj4 = settings.value(
"/UI/recentProjectionsProj4" ).toStringList();
1528 QStringList projectionsAuthId = settings.value(
"/UI/recentProjectionsAuthId" ).toStringList();
1531 projectionsProj4.append(
toProj4() );
1532 projectionsAuthId.append(
authid() );
1533 settings.setValue(
"/UI/recentProjectionsProj4", projectionsProj4 );
1534 settings.setValue(
"/UI/recentProjectionsAuthId", projectionsAuthId );
1546 sqlite3_stmt *myPreparedStatement;
1548 long myRecordCount = 0;
1551 if ( myResult != SQLITE_OK )
1553 QgsDebugMsg( QString(
"Can't open database: %1" ).arg( sqlite3_errmsg( myDatabase ) ) );
1557 QString mySql =
"select count(*) from tbl_srs";
1558 myResult = sqlite3_prepare( myDatabase, mySql.toUtf8(), mySql.toUtf8().length(), &myPreparedStatement, &myTail );
1560 if ( myResult == SQLITE_OK )
1562 if ( sqlite3_step( myPreparedStatement ) == SQLITE_ROW )
1564 QString myRecordCountString = QString::fromUtf8((
char * )sqlite3_column_text( myPreparedStatement, 0 ) );
1565 myRecordCount = myRecordCountString.toLong();
1569 sqlite3_finalize( myPreparedStatement );
1570 sqlite3_close( myDatabase );
1571 return myRecordCount;
1576 value.replace(
"'",
"''" );
1577 return value.prepend(
"'" ).append(
"'" );
1583 qDebug(
"Loading %s", filename );
1584 const char *pszFilename = CPLFindFile(
"gdal", filename );
1588 QFile csv( pszFilename );
1589 if ( !csv.open( QIODevice::ReadOnly ) )
1592 QTextStream lines( &csv );
1596 QString line = lines.readLine();
1597 if ( line.isNull() )
1600 if ( line.startsWith(
'#' ) )
1604 else if ( line.startsWith(
"include " ) )
1606 if ( !
loadWkts( wkts, line.mid( 8 ).toUtf8() ) )
1611 int pos = line.indexOf(
"," );
1616 int epsg = line.left( pos ).toInt( &ok );
1620 wkts.insert( epsg, line.mid( pos + 1 ) );
1633 foreach ( QString csv, QStringList() <<
"gcs.csv" <<
"pcs.csv" <<
"vertcs.csv" <<
"compdcs.csv" <<
"geoccs.csv" )
1635 QString filename = CPLFindFile(
"gdal", csv.toUtf8() );
1637 QFile f( filename );
1638 if ( !f.open( QIODevice::ReadOnly ) )
1641 QTextStream lines( &f );
1648 QString line = lines.readLine();
1649 if ( line.isNull() )
1652 int pos = line.indexOf(
"," );
1657 int epsg = line.left( pos ).toInt( &ok );
1662 if ( epsg == 2218 || epsg == 2221 || epsg == 2296 || epsg == 2297 || epsg == 2298 || epsg == 2299 || epsg == 2300 || epsg == 2301 || epsg == 2302 ||
1663 epsg == 2303 || epsg == 2304 || epsg == 2305 || epsg == 2306 || epsg == 2307 || epsg == 2963 || epsg == 2985 || epsg == 2986 || epsg == 3052 ||
1664 epsg == 3053 || epsg == 3139 || epsg == 3144 || epsg == 3145 || epsg == 3173 || epsg == 3295 || epsg == 3993 || epsg == 4087 || epsg == 4088 ||
1665 epsg == 5017 || epsg == 5221 || epsg == 5224 || epsg == 5225 || epsg == 5514 || epsg == 5515 || epsg == 5516 || epsg == 5819 || epsg == 5820 ||
1666 epsg == 5821 || epsg == 32600 || epsg == 32663 || epsg == 32700 )
1669 if ( OSRImportFromEPSG( crs, epsg ) != OGRERR_NONE )
1671 qDebug(
"EPSG %d: not imported", epsg );
1676 if ( OSRExportToWkt( crs, &wkt ) != OGRERR_NONE )
1678 qWarning(
"EPSG %d: not exported to WKT", epsg );
1682 wkts.insert( epsg, wkt );
1690 qDebug(
"Loaded %d/%d from %s", n, l, filename.toUtf8().constData() );
1693 OSRDestroySpatialReference( crs );
1703 int inserted = 0, updated = 0, deleted = 0, errors = 0;
1708 if ( sqlite3_open( dbFilePath.toUtf8().constData(), &database ) != SQLITE_OK )
1714 if ( sqlite3_exec( database,
"BEGIN TRANSACTION", 0, 0, 0 ) != SQLITE_OK )
1716 qCritical(
"Could not begin transaction: %s [%s]\n",
QgsApplication::srsDbFilePath().toLocal8Bit().constData(), sqlite3_errmsg( database ) );
1722 if ( sqlite3_exec( database,
"alter table tbl_srs add noupdate boolean", 0, 0, 0 ) == SQLITE_OK )
1723 sqlite3_exec( database,
"update tbl_srs set noupdate=(auth_name='EPSG' and auth_id in (5513,5514,5221,2065,102067,4156,4818))", 0, 0, 0 );
1725 sqlite3_exec( database,
"UPDATE tbl_srs SET srid=141001 WHERE srid=41001 AND auth_name='OSGEO' AND auth_id='41001'", 0, 0, 0 );
1729 sqlite3_stmt *select;
1730 char *errMsg = NULL;
1734 QHash<int, QString> wkts;
1738 qDebug(
"%d WKTs loaded", wkts.count() );
1740 for ( QHash<int, QString>::const_iterator it = wkts.constBegin(); it != wkts.constEnd(); ++it )
1742 QByteArray ba( it.value().toUtf8() );
1743 char *psz = ba.data();
1744 OGRErr ogrErr = OSRImportFromWkt( crs, &psz );
1745 if ( ogrErr != OGRERR_NONE )
1748 if ( OSRExportToProj4( crs, &psz ) != OGRERR_NONE )
1752 proj4 = proj4.trimmed();
1756 if ( proj4.isEmpty() )
1759 sql = QString(
"SELECT parameters,noupdate FROM tbl_srs WHERE auth_name='EPSG' AND auth_id='%1'" ).arg( it.key() );
1760 if ( sqlite3_prepare( database, sql.toAscii(), sql.size(), &select, &tail ) != SQLITE_OK )
1762 qCritical(
"Could not prepare: %s [%s]\n", sql.toAscii().constData(), sqlite3_errmsg( database ) );
1767 if ( sqlite3_step( select ) == SQLITE_ROW )
1769 srsProj4 = (
const char * ) sqlite3_column_text( select, 0 );
1771 if ( QString::fromUtf8((
char * )sqlite3_column_text( select, 1 ) ).toInt() != 0 )
1775 sqlite3_finalize( select );
1777 if ( !srsProj4.isEmpty() )
1779 if ( proj4 != srsProj4 )
1782 sql = QString(
"UPDATE tbl_srs SET parameters=%1 WHERE auth_name='EPSG' AND auth_id=%2" ).arg(
quotedValue( proj4 ) ).arg( it.key() );
1784 if ( sqlite3_exec( database, sql.toUtf8(), 0, 0, &errMsg ) != SQLITE_OK )
1786 qCritical(
"Could not execute: %s [%s/%s]\n",
1787 sql.toLocal8Bit().constData(),
1788 sqlite3_errmsg( database ),
1789 errMsg ? errMsg :
"(unknown error)" );
1795 QgsDebugMsgLevel( QString(
"SQL: %1\n OLD:%2\n NEW:%3" ).arg( sql ).arg( srsProj4 ).arg( proj4 ), 3 );
1801 QRegExp projRegExp(
"\\+proj=(\\S+)" );
1802 if ( projRegExp.indexIn( proj4 ) < 0 )
1804 QgsDebugMsg( QString(
"EPSG %1: no +proj argument found [%2]" ).arg( it.key() ).arg( proj4 ) );
1808 QRegExp ellipseRegExp(
"\\+ellps=(\\S+)" );
1810 if ( ellipseRegExp.indexIn( proj4 ) >= 0 )
1812 ellps = ellipseRegExp.cap( 1 );
1815 QString name( OSRIsGeographic( crs ) ? OSRGetAttrValue( crs,
"GEOCS", 0 ) : OSRGetAttrValue( crs,
"PROJCS", 0 ) );
1816 if ( name.isEmpty() )
1819 sql = QString(
"INSERT INTO tbl_srs(description,projection_acronym,ellipsoid_acronym,parameters,srid,auth_name,auth_id,is_geo,deprecated) VALUES (%1,%2,%3,%4,%5,'EPSG',%5,%6,0)" )
1825 .arg( OSRIsGeographic( crs ) );
1828 if ( sqlite3_exec( database, sql.toUtf8(), 0, 0, &errMsg ) == SQLITE_OK )
1834 qCritical(
"Could not execute: %s [%s/%s]\n",
1835 sql.toLocal8Bit().constData(),
1836 sqlite3_errmsg( database ),
1837 errMsg ? errMsg :
"(unknown error)" );
1841 sqlite3_free( errMsg );
1846 sql =
"DELETE FROM tbl_srs WHERE auth_name='EPSG' AND NOT auth_id IN (";
1848 foreach (
int i, wkts.keys() )
1850 sql += delim + QString::number( i );
1853 sql +=
") AND NOT noupdate";
1855 if ( sqlite3_exec( database, sql.toUtf8(), 0, 0, 0 ) == SQLITE_OK )
1857 deleted = sqlite3_changes( database );
1862 qCritical(
"Could not execute: %s [%s]\n",
1863 sql.toLocal8Bit().constData(),
1864 sqlite3_errmsg( database ) );
1867 #if !defined(PJ_VERSION) || PJ_VERSION!=470
1868 sql = QString(
"select auth_name,auth_id,parameters from tbl_srs WHERE auth_name<>'EPSG' AND NOT deprecated AND NOT noupdate" );
1869 if ( sqlite3_prepare( database, sql.toAscii(), sql.size(), &select, &tail ) == SQLITE_OK )
1871 while ( sqlite3_step( select ) == SQLITE_ROW )
1873 const char *auth_name = (
const char * ) sqlite3_column_text( select, 0 );
1874 const char *auth_id = (
const char * ) sqlite3_column_text( select, 1 );
1875 const char *params = (
const char * ) sqlite3_column_text( select, 2 );
1877 QString input = QString(
"+init=%1:%2" ).arg( QString( auth_name ).toLower() ).arg( auth_id );
1878 projPJ pj = pj_init_plus( input.toAscii() );
1881 input = QString(
"+init=%1:%2" ).arg( QString( auth_name ).toUpper() ).arg( auth_id );
1882 pj = pj_init_plus( input.toAscii() );
1887 char *def = pj_get_def( pj, 0 );
1893 input.prepend(
' ' ).append(
' ' );
1894 if ( proj4.startsWith( input ) )
1896 proj4 = proj4.mid( input.size() );
1897 proj4 = proj4.trimmed();
1900 if ( proj4 != params )
1902 sql = QString(
"UPDATE tbl_srs SET parameters=%1 WHERE auth_name=%2 AND auth_id=%3" )
1907 if ( sqlite3_exec( database, sql.toUtf8(), 0, 0, &errMsg ) == SQLITE_OK )
1910 QgsDebugMsgLevel( QString(
"SQL: %1\n OLD:%2\n NEW:%3" ).arg( sql ).arg( params ).arg( proj4 ), 3 );
1914 qCritical(
"Could not execute: %s [%s/%s]\n",
1915 sql.toLocal8Bit().constData(),
1916 sqlite3_errmsg( database ),
1917 errMsg ? errMsg :
"(unknown error)" );
1924 QgsDebugMsg( QString(
"could not retrieve proj string for %1 from PROJ" ).arg( input ) );
1929 QgsDebugMsgLevel( QString(
"could not retrieve crs for %1 from PROJ" ).arg( input ), 3 );
1938 qCritical(
"Could not execute: %s [%s]\n",
1939 sql.toLocal8Bit().constData(),
1940 sqlite3_errmsg( database ) );
1944 OSRDestroySpatialReference( crs );
1946 if ( sqlite3_exec( database,
"COMMIT", 0, 0, 0 ) != SQLITE_OK )
1948 qCritical(
"Could not commit transaction: %s [%s]\n",
QgsApplication::srsDbFilePath().toLocal8Bit().constData(), sqlite3_errmsg( database ) );
1952 sqlite3_close( database );
1954 qWarning(
"CRS update (inserted:%d updated:%d deleted:%d errors:%d)", inserted, updated, deleted, errors );
1959 return updated + inserted;
1964 const char *filename = CSVFilename(
"datum_shift.csv" );
1965 FILE *fp = VSIFOpen( filename,
"rb" );
1971 char **fieldnames = CSVReadParseLine( fp );
1983 {
"SOURCE_CRS_CODE",
"source_crs_code", -1 },
1984 {
"TARGET_CRS_CODE",
"target_crs_code", -1 },
1985 {
"REMARKS",
"remarks", -1 },
1986 {
"COORD_OP_SCOPE",
"scope", -1 },
1987 {
"AREA_OF_USE_CODE",
"area_of_use_code", -1 },
1993 {
"DEPRECATED",
"deprecated", -1 },
1994 {
"COORD_OP_METHOD_CODE",
"coord_op_method_code", -1 },
2002 {
"PREFERRED",
"preferred", -1 },
2003 {
"COORD_OP_CODE",
"coord_op_code", -1 },
2006 QString update =
"UPDATE tbl_datum_transform SET ";
2007 QString insert, values;
2009 int n = CSLCount( fieldnames );
2011 int idxid = -1, idxrx = -1, idxry = -1, idxrz = -1, idxmcode = -1;
2012 for (
unsigned int i = 0; i <
sizeof( map ) /
sizeof( *map ); i++ )
2014 bool last = i ==
sizeof( map ) /
sizeof( *map ) - 1;
2016 map[i].idx = CSLFindString( fieldnames, map[i].src );
2017 if ( map[i].idx < 0 )
2019 qWarning(
"field %s not found", map[i].src );
2020 CSLDestroy( fieldnames );
2025 if ( strcmp( map[i].src,
"COORD_OP_CODE" ) == 0 )
2027 if ( strcmp( map[i].src,
"RX" ) == 0 )
2029 if ( strcmp( map[i].src,
"RY" ) == 0 )
2031 if ( strcmp( map[i].src,
"RZ" ) == 0 )
2033 if ( strcmp( map[i].src,
"COORD_OP_METHOD_CODE" ) == 0 )
2043 update +=
" WHERE ";
2051 update += QString(
"%1=%%2" ).arg( map[i].dst ).arg( i + 1 );
2053 insert += map[i].dst;
2054 values += QString(
"%%1" ).arg( i + 1 );
2056 qWarning(
"%d: src=%s dst=%s idx=%d", i, map[i].src, map[i].dst, map[i].idx );
2059 insert =
"INSERT INTO tbl_datum_transform(" + insert +
") VALUES (" + values +
")";
2064 CSLDestroy( fieldnames );
2066 Q_ASSERT( idxid >= 0 );
2067 Q_ASSERT( idxrx >= 0 );
2068 Q_ASSERT( idxry >= 0 );
2069 Q_ASSERT( idxrz >= 0 );
2072 int openResult = sqlite3_open( dbPath.toUtf8().constData(), &db );
2073 if ( openResult != SQLITE_OK )
2079 if ( sqlite3_exec( db,
"BEGIN TRANSACTION", 0, 0, 0 ) != SQLITE_OK )
2082 sqlite3_close( db );
2088 v.reserve(
sizeof( map ) /
sizeof( *map ) );
2090 while ( !feof( fp ) )
2092 char **values = CSVReadParseLine( fp );
2096 if ( CSLCount( values ) < n )
2098 qWarning(
"Only %d columns", CSLCount( values ) );
2102 for (
unsigned int i = 0; i <
sizeof( map ) /
sizeof( *map ); i++ )
2104 int idx = map[i].idx;
2105 Q_ASSERT( idx != -1 );
2106 Q_ASSERT( idx < n );
2107 v.insert( i, *values[ idx ] ?
quotedValue( values[idx] ) :
"NULL" );
2111 if ( v.at( idxmcode ).compare( QString(
"'9607'" ) ) == 0 )
2113 v[ idxmcode ] =
"'9606'";
2114 v[ idxrx ] =
"'" +
qgsDoubleToString( -( v[ idxrx ].
remove(
"'" ).toDouble() ) ) +
"'";
2115 v[ idxry ] =
"'" +
qgsDoubleToString( -( v[ idxry ].
remove(
"'" ).toDouble() ) ) +
"'";
2116 v[ idxrz ] =
"'" +
qgsDoubleToString( -( v[ idxrz ].
remove(
"'" ).toDouble() ) ) +
"'";
2122 QString sql = QString(
"SELECT coord_op_code FROM tbl_datum_transform WHERE coord_op_code=%1" ).arg( v[ idxid ] );
2123 int prepareRes = sqlite3_prepare( db, sql.toAscii(), sql.size(), &stmt, NULL );
2124 if ( prepareRes != SQLITE_OK )
2127 if ( sqlite3_step( stmt ) == SQLITE_ROW )
2129 cOpCode = (
const char * ) sqlite3_column_text( stmt, 0 );
2131 sqlite3_finalize( stmt );
2133 sql = cOpCode.isEmpty() ? insert : update;
2134 for (
int i = 0; i < v.size(); i++ )
2136 sql = sql.arg( v[i] );
2139 if ( sqlite3_exec( db, sql.toUtf8(), 0, 0, 0 ) != SQLITE_OK )
2141 qCritical(
"SQL: %s", sql.toUtf8().constData() );
2142 qCritical(
"Error: %s", sqlite3_errmsg( db ) );
2146 if ( sqlite3_exec( db,
"COMMIT", 0, 0, 0 ) != SQLITE_OK )
2152 sqlite3_close( db );
2164 return OSRGetAuthorityName(
mCRS,
"GEOGCS" ) + QString(
":" ) + OSRGetAuthorityCode(
mCRS,
"GEOGCS" );