mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-06 00:07:29 -04:00
Fix malformed python docs
This commit is contained in:
parent
f831914584
commit
b5164a1b18
@ -105,9 +105,11 @@ Sets the id of the STAC Collection this Item references to
|
||||
QDateTime dateTime() const;
|
||||
%Docstring
|
||||
Returns the single nominal date/time for the item, stored in the item's
|
||||
``properties``(). If a temporal interval is more appropriate for this
|
||||
item then a null QDateTime is returned and the interval may be retrieved
|
||||
with :py:func:`~QgsStacItem.dateTimeRange`
|
||||
:py:func:`~QgsStacItem.properties`.
|
||||
|
||||
If a temporal interval is more appropriate for this item then a null
|
||||
QDateTime is returned and the interval may be retrieved with
|
||||
:py:func:`~QgsStacItem.dateTimeRange`.
|
||||
|
||||
.. seealso:: :py:func:`hasDateTimeRange`
|
||||
|
||||
@ -126,7 +128,8 @@ Returns ``True`` if a temporal interval is available for this item,
|
||||
|
||||
QgsDateTimeRange dateTimeRange() const;
|
||||
%Docstring
|
||||
Returns the temporal interval stored in the item's ``properties``()
|
||||
Returns the temporal interval stored in the item's
|
||||
:py:func:`~QgsStacItem.properties`.
|
||||
|
||||
.. seealso:: :py:func:`hasDateTimeRange`
|
||||
|
||||
|
@ -105,9 +105,11 @@ Sets the id of the STAC Collection this Item references to
|
||||
QDateTime dateTime() const;
|
||||
%Docstring
|
||||
Returns the single nominal date/time for the item, stored in the item's
|
||||
``properties``(). If a temporal interval is more appropriate for this
|
||||
item then a null QDateTime is returned and the interval may be retrieved
|
||||
with :py:func:`~QgsStacItem.dateTimeRange`
|
||||
:py:func:`~QgsStacItem.properties`.
|
||||
|
||||
If a temporal interval is more appropriate for this item then a null
|
||||
QDateTime is returned and the interval may be retrieved with
|
||||
:py:func:`~QgsStacItem.dateTimeRange`.
|
||||
|
||||
.. seealso:: :py:func:`hasDateTimeRange`
|
||||
|
||||
@ -126,7 +128,8 @@ Returns ``True`` if a temporal interval is available for this item,
|
||||
|
||||
QgsDateTimeRange dateTimeRange() const;
|
||||
%Docstring
|
||||
Returns the temporal interval stored in the item's ``properties``()
|
||||
Returns the temporal interval stored in the item's
|
||||
:py:func:`~QgsStacItem.properties`.
|
||||
|
||||
.. seealso:: :py:func:`hasDateTimeRange`
|
||||
|
||||
|
@ -89,25 +89,29 @@ class CORE_EXPORT QgsStacItem : public QgsStacObject
|
||||
void setCollection( const QString &collection );
|
||||
|
||||
/**
|
||||
* Returns the single nominal date/time for the item, stored in the item's \a properties().
|
||||
* If a temporal interval is more appropriate for this item then a null QDateTime is returned
|
||||
* and the interval may be retrieved with dateTimeRange()
|
||||
* \see hasDateTimeRange()
|
||||
* \see dateTimeRange()
|
||||
* Returns the single nominal date/time for the item, stored in the item's properties().
|
||||
*
|
||||
* If a temporal interval is more appropriate for this item then a null QDateTime is returned
|
||||
* and the interval may be retrieved with dateTimeRange().
|
||||
*
|
||||
* \see hasDateTimeRange()
|
||||
* \see dateTimeRange()
|
||||
*/
|
||||
QDateTime dateTime() const;
|
||||
|
||||
/**
|
||||
* Returns TRUE if a temporal interval is available for this item, FALSE if a single QDateTime is available.
|
||||
* \see hasDateTimeRange()
|
||||
* \see dateTime()
|
||||
* Returns TRUE if a temporal interval is available for this item, FALSE if a single QDateTime is available.
|
||||
*
|
||||
* \see hasDateTimeRange()
|
||||
* \see dateTime()
|
||||
*/
|
||||
bool hasDateTimeRange() const;
|
||||
|
||||
/**
|
||||
* Returns the temporal interval stored in the item's \a properties()
|
||||
* \see hasDateTimeRange()
|
||||
* \see dateTime()
|
||||
* Returns the temporal interval stored in the item's properties().
|
||||
*
|
||||
* \see hasDateTimeRange()
|
||||
* \see dateTime()
|
||||
*/
|
||||
QgsDateTimeRange dateTimeRange() const;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user