diff --git a/python/PyQt6/core/auto_generated/tiledscene/qgstiledscenerequest.sip.in b/python/PyQt6/core/auto_generated/tiledscene/qgstiledscenerequest.sip.in index 18ee422683ac..cf7913a198bb 100644 --- a/python/PyQt6/core/auto_generated/tiledscene/qgstiledscenerequest.sip.in +++ b/python/PyQt6/core/auto_generated/tiledscene/qgstiledscenerequest.sip.in @@ -60,8 +60,8 @@ An null ``box`` removes the filter. double requiredGeometricError() const; %Docstring -Returns the required geometric error threshold for the returned tiles, in -scene CRS units. +Returns the required geometric error threshold for the returned tiles, +in meters. If the error is 0 then no geometric error filtering will be applied. @@ -70,8 +70,8 @@ If the error is 0 then no geometric error filtering will be applied. void setRequiredGeometricError( double error ); %Docstring -Sets the required geometric ``error`` threshold for the returned tiles, in -scene CRS units. +Sets the required geometric ``error`` threshold for the returned tiles, +in meters. If the ``error`` is 0 then no geometric error filtering will be applied. diff --git a/python/PyQt6/core/auto_generated/tiledscene/qgstiledscenetile.sip.in b/python/PyQt6/core/auto_generated/tiledscene/qgstiledscenetile.sip.in index ee5eb7354b66..0647d6414729 100644 --- a/python/PyQt6/core/auto_generated/tiledscene/qgstiledscenetile.sip.in +++ b/python/PyQt6/core/auto_generated/tiledscene/qgstiledscenetile.sip.in @@ -118,16 +118,16 @@ Sets the ``resources`` ``attached`` to the tile. double geometricError() const; %Docstring -Returns the tile's geometric error, which is the error, in scene CRS units, of the tile's -simplified representation of its source geometry. +Returns the tile's geometric error, which is the error, in meters, of +the tile's simplified representation of its source geometry. .. seealso:: :py:func:`setGeometricError` %End void setGeometricError( double error ); %Docstring -Sets the tile's geometric ``error``, which is the error, in scene CRS units, of the tile's -simplified representation of its source geometry. +Sets the tile's geometric ``error``, which is the error, in meters, of +the tile's simplified representation of its source geometry. .. seealso:: :py:func:`geometricError` %End diff --git a/python/core/auto_generated/tiledscene/qgstiledscenerequest.sip.in b/python/core/auto_generated/tiledscene/qgstiledscenerequest.sip.in index 18ee422683ac..cf7913a198bb 100644 --- a/python/core/auto_generated/tiledscene/qgstiledscenerequest.sip.in +++ b/python/core/auto_generated/tiledscene/qgstiledscenerequest.sip.in @@ -60,8 +60,8 @@ An null ``box`` removes the filter. double requiredGeometricError() const; %Docstring -Returns the required geometric error threshold for the returned tiles, in -scene CRS units. +Returns the required geometric error threshold for the returned tiles, +in meters. If the error is 0 then no geometric error filtering will be applied. @@ -70,8 +70,8 @@ If the error is 0 then no geometric error filtering will be applied. void setRequiredGeometricError( double error ); %Docstring -Sets the required geometric ``error`` threshold for the returned tiles, in -scene CRS units. +Sets the required geometric ``error`` threshold for the returned tiles, +in meters. If the ``error`` is 0 then no geometric error filtering will be applied. diff --git a/python/core/auto_generated/tiledscene/qgstiledscenetile.sip.in b/python/core/auto_generated/tiledscene/qgstiledscenetile.sip.in index ee5eb7354b66..0647d6414729 100644 --- a/python/core/auto_generated/tiledscene/qgstiledscenetile.sip.in +++ b/python/core/auto_generated/tiledscene/qgstiledscenetile.sip.in @@ -118,16 +118,16 @@ Sets the ``resources`` ``attached`` to the tile. double geometricError() const; %Docstring -Returns the tile's geometric error, which is the error, in scene CRS units, of the tile's -simplified representation of its source geometry. +Returns the tile's geometric error, which is the error, in meters, of +the tile's simplified representation of its source geometry. .. seealso:: :py:func:`setGeometricError` %End void setGeometricError( double error ); %Docstring -Sets the tile's geometric ``error``, which is the error, in scene CRS units, of the tile's -simplified representation of its source geometry. +Sets the tile's geometric ``error``, which is the error, in meters, of +the tile's simplified representation of its source geometry. .. seealso:: :py:func:`geometricError` %End diff --git a/src/core/tiledscene/qgstiledscenerequest.h b/src/core/tiledscene/qgstiledscenerequest.h index 4ea2b98f868f..84c6ecac5c54 100644 --- a/src/core/tiledscene/qgstiledscenerequest.h +++ b/src/core/tiledscene/qgstiledscenerequest.h @@ -73,8 +73,8 @@ class CORE_EXPORT QgsTiledSceneRequest void setFilterBox( const QgsOrientedBox3D &box ) { mFilterBox = box; } /** - * Returns the required geometric error threshold for the returned tiles, in - * scene CRS units. + * Returns the required geometric error threshold for the returned tiles, + * in meters. * * If the error is 0 then no geometric error filtering will be applied. * @@ -83,8 +83,8 @@ class CORE_EXPORT QgsTiledSceneRequest double requiredGeometricError() const { return mRequiredGeometricError; } /** - * Sets the required geometric \a error threshold for the returned tiles, in - * scene CRS units. + * Sets the required geometric \a error threshold for the returned tiles, + * in meters. * * If the \a error is 0 then no geometric error filtering will be applied. * diff --git a/src/core/tiledscene/qgstiledscenetile.h b/src/core/tiledscene/qgstiledscenetile.h index 93e57279c2e1..841ffccd6ae8 100644 --- a/src/core/tiledscene/qgstiledscenetile.h +++ b/src/core/tiledscene/qgstiledscenetile.h @@ -131,16 +131,16 @@ class CORE_EXPORT QgsTiledSceneTile void setResources( const QVariantMap &resources ); /** - * Returns the tile's geometric error, which is the error, in scene CRS units, of the tile's - * simplified representation of its source geometry. + * Returns the tile's geometric error, which is the error, in meters, of + * the tile's simplified representation of its source geometry. * * \see setGeometricError() */ double geometricError() const { return mGeometricError; } /** - * Sets the tile's geometric \a error, which is the error, in scene CRS units, of the tile's - * simplified representation of its source geometry. + * Sets the tile's geometric \a error, which is the error, in meters, of + * the tile's simplified representation of its source geometry. * * \see geometricError() */