Skip to content

Commit

Permalink
Switch back to ISO georeferencing format
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 17, 2019
1 parent b3d4faa commit ab6e3fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/layout/qgslayoutgeopdfexporter.cpp
Expand Up @@ -304,8 +304,8 @@ QString QgsLayoutGeoPdfExporter::createCompositionXml( const QList<ComponentLaye
// georeferencing - TODO
QDomElement georeferencing = doc.createElement( QStringLiteral( "Georeferencing" ) );
georeferencing.setAttribute( QStringLiteral( "id" ), QStringLiteral( "georeferenced" ) );
georeferencing.setAttribute( QStringLiteral( "OGCBestPracticeFormat" ), QStringLiteral( "true" ) );
georeferencing.setAttribute( QStringLiteral( "ISO32000ExtensionFormat" ), QStringLiteral( "false" ) );
georeferencing.setAttribute( QStringLiteral( "OGCBestPracticeFormat" ), QStringLiteral( "false" ) );
georeferencing.setAttribute( QStringLiteral( "ISO32000ExtensionFormat" ), QStringLiteral( "true" ) );
QDomElement srs = doc.createElement( QStringLiteral( "SRS" ) );
srs.setAttribute( QStringLiteral( "dataAxisToSRSAxisMapping" ), QStringLiteral( "2,1" ) );
srs.appendChild( doc.createTextNode( QStringLiteral( "EPSG:4326" ) ) );
Expand Down

0 comments on commit ab6e3fe

Please sign in to comment.