This is the change in plain SQL:
INSERT INTO tbl_datum_transform VALUES (7709, 100018, 4277, 4258, 9615, 'OSTN15_NTv2_OSGBtoETRS.gsb',
null, null, null, null, null, null, 'UK National Transformation provided by Ordnance Survey',
'For applications requiring an accuracy of better than 10 centimetres.', 1, 0, 1264);
INSERT INTO tbl_datum_transform VALUES (7710, 100019, 4277, 4326, 9615, 'OSTN15_NTv2_OSGBtoETRS.gsb',
null, null, null, null, null, null, 'UK National Transformation provided by Ordnance Survey',
'For applications requiring an accuracy of better than 10 centimetres.', 1, 0, 1264);
(one still needs to manually download the .gsb grid file to use it but at least no need to modify system srs.db)
https://www.ordnancesurvey.co.uk/business-and-government/help-and-support/navigation-technology/os-net/formats-for-developers.html
NTv2 grid available here:
https://www.lgl-bw.de/lgl-internet/web/sites/default/de/05_Geoinformation/Galerien/Dokumente/BWTA2017.zip
More information:
https://www.lgl-bw.de/lgl-internet/opencms/de/05_Geoinformation/Liegenschaftskataster/ETRS89-UTM/
INSERT INTO "tbl_datum_transform" VALUES(NULL, 100017, "4314", "4258", "9615", "BWTA2017.gsb", NULL, NULL, NULL, NULL, NULL, NULL, "Transformation for the German federal state of Baden-Wuerttemberg: Diese NTv2-Datei deckt das Gebiet von Baden-Wuerttemberg ab und ist daher ausschliesslich für die Transformation von Geo(fach)daten innerhalb von Baden-Wuerttemberg geeignet. Dieser Ansatz ist für Geo(fach)daten zu verwenden welche auf Basis der ALKIS Daten gefuehrt und erstellt werden.", "For applications requiring an accuracy of better than 1 metre.", 1, 0, 3339);
- copy descriptions, preference and deprecation from GDAL
- remember position of dialog
- allow hiding of deprecated transformations
SQL:
ALTER TABLE tbl_datum_transform ADD remarks varchar;
ALTER TABLE tbl_datum_transform ADD scope varchar;
ALTER TABLE tbl_datum_transform ADD preferred boolean;
ALTER TABLE tbl_datum_transform ADD deprecated boolean;
ALTER TABLE tbl_datum_transform ADD area_of_use_code varchar;
sqlite3 resources/srs.db
sqlite> alter table tbl_srs add noupdate boolean;
sqlite> update tbl_srs set noupdate=(auth_name='EPSG' and auth_id in (5513,5514,5221,2065,102067,4156,4818));
- QgsDataProvider&QgsMapLayer: add dataChanged() signal, so that a provider can signal that the datasource changed
- use QNetworkAccessManager instead of QgsHttpTransaction (including caching and
dynamic authentification to website and proxies)
- resolve EPSG dependency in spatial reference systems and
included french IGNF definitions in srs.db
- wms provider:
- do request asynchronously through QNetworkAccessManager
- add support for WMS-C
- dataChanged() is to cause a redraw asynchronously, when new tiles arrive
- wms selection:
- add support for WMS-C tilesets
- allow inserting of all layers of a branch
- add support for more mime types
- move load/save to button box
- and more cleanups
- raster provider: reduce debugging noise
- allow adding parts to multi points and lines
git-svn-id: http://svn.osgeo.org/qgis/trunk@13093 c8812cc2-4d05-0410-92ff-de0c093fc19c
* Added a small README on the process on how to do the above
* Change the CRS recognition when reading from projects, so it tries to match the proj4 string if valid. This is a must when the srs.db now is updated
* Changed to read ellipsoid an projection acronyms from srs.db nistead of qgis.db (mostly)
* Misc. clean up of comments and deletion of stale code.
* Fixes#1534.
git-svn-id: http://svn.osgeo.org/qgis/trunk@11447 c8812cc2-4d05-0410-92ff-de0c093fc19c