19#include "moc_qgscoordinateutils.cpp" 
   32#include <QRegularExpression> 
   41  const bool automatic = project->
readBoolEntry( QStringLiteral( 
"PositionPrecision" ), QStringLiteral( 
"/Automatic" ) );
 
   60        dp = 
static_cast<int>( std::ceil( -1.0 * std::log10( mapUnitsPerPixel ) ) );
 
   77    dp = project->
readNumEntry( QStringLiteral( 
"PositionPrecision" ), QStringLiteral( 
"/DecimalPlaces" ) );
 
   94  const bool automatic = prj->
readBoolEntry( QStringLiteral( 
"PositionPrecision" ), QStringLiteral( 
"/Automatic" ) );
 
   97    return prj->
readNumEntry( QStringLiteral( 
"PositionPrecision" ), QStringLiteral( 
"/DecimalPlaces" ), 6 );
 
  100  return calculateCoordinatePrecision( 
crs );
 
  123  formatCoordinatePartsForProject( project, point, destCrs, 
precision, formattedX, formattedY );
 
  125  if ( formattedX.isEmpty() || formattedY.isEmpty() )
 
  163    x = QgsCoordinateFormatter::formatAsPair( point.
x(), 
precision );
 
  164    y = QgsCoordinateFormatter::formatAsPair( point.
y(), 
precision );
 
  174  if ( destCrs  != 
crs )
 
  179      p = ct.transform( point );
 
  190    format->setNumberDecimalPlaces( 
precision );
 
  194    x = format->formatDouble( p.
x(), context );
 
  196    y = format->formatDouble( p.
y(), context );
 
  201    x = QgsCoordinateFormatter::formatAsPair( p.
x(), 
precision );
 
  202    y = QgsCoordinateFormatter::formatAsPair( p.
y(), 
precision );
 
  210  return QStringLiteral( 
"%1 : %2" ).arg( QgsCoordinateUtils::formatCoordinateForProject( project, p1, destCrs, 
precision ),
 
  211                                          QgsCoordinateUtils::formatCoordinateForProject( project, p2, destCrs, 
precision ) );
 
  214double QgsCoordinateUtils::degreeToDecimal( 
const QString &
string, 
bool *ok, 
bool *isEasting )
 
  216  const QString negative( QStringLiteral( 
"swSW" ) );
 
  217  const QString easting( QStringLiteral( 
"eEwW" ) );
 
  219  bool okValue = 
false;
 
  230  const QLocale locale;
 
  231  QRegularExpression degreeWithSuffix( QStringLiteral( 
"^\\s*([-]?\\d{1,3}(?:[\\.\\%1]\\d+)?)\\s*([NSEWnsew])\\s*$" )
 
  232                                       .arg( locale.decimalPoint() ) );
 
  233  QRegularExpressionMatch match = degreeWithSuffix.match( 
string );
 
  234  if ( match.hasMatch() )
 
  236    const QString suffix = match.captured( 2 );
 
  237    value = std::abs( match.captured( 1 ).toDouble( ok ) );
 
  240      value = std::abs( locale.toDouble( match.captured( 1 ), ok ) );
 
  244      value *= ( negative.contains( suffix ) ? -1 : 1 );
 
  247        *isEasting = easting.contains( suffix );
 
  254double QgsCoordinateUtils::dmsToDecimal( 
const QString &
string, 
bool *ok, 
bool *isEasting )
 
  256  const QString negative( QStringLiteral( 
"swSW-" ) );
 
  257  const QString easting( QStringLiteral( 
"eEwW" ) );
 
  259  bool okValue = 
false;
 
  270  const QLocale locale;
 
  271  const QRegularExpression dms( QStringLiteral( 
"^\\s*(?:([-+nsew])\\s*)?(\\d{1,3})(?:[^0-9.]+([0-5]?\\d))?[^0-9.]+([0-5]?\\d(?:[\\.\\%1]\\d+)?)[^0-9.,]*?([-+nsew])?\\s*$" )
 
  272                                .arg( locale.decimalPoint() ), QRegularExpression::CaseInsensitiveOption );
 
  273  const QRegularExpressionMatch match = dms.match( 
string.trimmed() );
 
  274  if ( match.hasMatch() )
 
  276    const QString dms1 = match.captured( 2 );
 
  277    const QString dms2 = match.captured( 3 );
 
  278    const QString dms3 = match.captured( 4 );
 
  280    double v = dms3.toDouble( ok );
 
  283      v = locale.toDouble( dms3, ok );
 
  288    if ( !dms2.isEmpty() )
 
  290      v = dms2.toInt( ok ) + v / 60.0;
 
  294    v = dms1.toInt( ok ) + v / 60.0;
 
  298    const QString sign1 = match.captured( 1 );
 
  299    const QString sign2 = match.captured( 5 );
 
  301    if ( sign1.isEmpty() )
 
  303      value = !sign2.isEmpty() && negative.contains( sign2 ) ? -v : v;
 
  306        *isEasting = easting.contains( sign2 );
 
  309    else if ( sign2.isEmpty() )
 
  311      value = !sign1.isEmpty() && negative.contains( sign1 ) ? -v : v;
 
  314        *isEasting = easting.contains( sign1 );
 
@ MapGeographic
Map Geographic CRS equivalent (stays unchanged if the map CRS is geographic)
 
DistanceUnit
Units of distance.
 
@ Degrees
Degrees, for planar geographic CRS distance measurements.
 
CoordinateOrder
Order of coordinates.
 
@ XY
Easting/Northing (or Longitude/Latitude for geographic CRS)
 
@ Default
Respect the default axis ordering for the CRS, as defined in the CRS's parameters.
 
@ YX
Northing/Easting (or Latitude/Longitude for geographic CRS)
 
static Qgis::CoordinateOrder defaultCoordinateOrderForCrs(const QgsCoordinateReferenceSystem &crs)
Returns the default coordinate order to use for the specified crs.
 
Represents a coordinate reference system (CRS).
 
bool isValid() const
Returns whether this CRS is correctly initialized and usable.
 
Qgis::DistanceUnit mapUnits
 
Custom exception class for Coordinate Reference System related exceptions.
 
A context for numeric formats.
 
void setInterpretation(Interpretation interpretation)
Sets the interpretation of the numbers being converted.
 
@ Latitude
Latitude values.
 
@ Longitude
Longitude values.
 
const QgsGeographicCoordinateNumericFormat * geographicCoordinateFormat() const
Returns the project's geographic coordinate format, which controls how geographic coordinates associa...
 
QgsCoordinateReferenceSystem coordinateCustomCrs
 
Qgis::CoordinateOrder coordinateAxisOrder
 
Qgis::CoordinateDisplayType coordinateType
 
QgsCoordinateReferenceSystem coordinateCrs
 
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
 
int readNumEntry(const QString &scope, const QString &key, int def=0, bool *ok=nullptr) const
Reads an integer from the specified scope and key.
 
static QgsProject * instance()
Returns the QgsProject singleton instance.
 
QgsProjectDisplaySettings * displaySettings
 
bool readBoolEntry(const QString &scope, const QString &key, bool def=false, bool *ok=nullptr) const
Reads a boolean from the specified scope and key.
 
A rectangle specified with double values.
 
#define BUILTIN_UNREACHABLE
 
bool qgsDoubleNear(double a, double b, double epsilon=4 *std::numeric_limits< double >::epsilon())
Compare two doubles (but allow some difference)
 
const QgsCoordinateReferenceSystem & crs