<div dir="ltr"><div class="gmail_default" style="font-family:monospace">Thanks.</div><div class="gmail_default" style="font-family:monospace"><br></div><div class="gmail_default" style="font-family:monospace">While I no longer got a whole bunch of similar images, instead I got a series of partially rendered canvases in triplets. First the static, non-temporal-data layers and a few features of one of the temporal layers. Second is all the layers but no labels. Third is with the labels (including the date of the frame). Each triplet appears to be from the same time frame selected with setCurrentFrameNumber(), but the third image of the triplet shows a date that is is three items in the list after the previous one.</div><div class="gmail_default" style="font-family:monospace"><br></div><div class="gmail_default" style="font-family:monospace">I ended up with the following as the only way to make sure that all temporal controller and map canvas events were properly consumed before taking the snapshot to image:</div><div class="gmail_default" style="font-family:monospace"><br></div><div class="gmail_default" style="font-family:monospace"><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">listOfDates ['1815-06-09', …]</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff"><br></font></div></blockquote></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">navigator = iface.mapCanvas().temporalController()</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">dt = QDateTime.fromString(listOfDates[0], 'yyyy-MM-dd')</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">f = navigator.findBestFrameNumberForFrameStart(dt)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">navigator.setCurrentFrameNumber(f)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">QCoreApplication.processEvents(QEventLoop.AllEvents, 10000)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">time.sleep(1)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">QCoreApplication.processEvents(QEventLoop.WaitForMoreEvents, 10000)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">time.sleep(1)</font></div></blockquote><div class="gmail_default" style="font-family:monospace"><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div class="gmail_default" style="font-family:monospace"><font color="#0000ff"><br></font></div></blockquote></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">i = 1</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">for d in listOfDates:</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  dt = QDateTime.fromString(d, 'yyyy-MM-dd')</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  f = navigator.findBestFrameNumberForFrameStart(dt)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  navigator.setCurrentFrameNumber(f)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  fn = '/home/cory/Downloads/image-{:06d}.png'.format(i)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  print(d)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  print(f)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  i = i + 1<br></font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  QCoreApplication.processEvents(QEventLoop.AllEvents, 10000)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  time.sleep(1)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  QCoreApplication.processEvents(QEventLoop.AllEvents, 10000)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  time.sleep(1)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  QCoreApplication.processEvents(QEventLoop.AllEvents, 10000)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  time.sleep(1)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  QCoreApplication.processEvents(QEventLoop.AllEvents, 10000)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  time.sleep(1)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  QCoreApplication.processEvents(QEventLoop.AllEvents, 10000)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  iface.mapCanvas().saveAsImage(fn)</font></div><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">  print(fn)<br></font></div><div class="gmail_default" style="font-family:monospace"><div class="gmail_default"><font color="#0000ff">  print("\n")</font></div></div></blockquote><div class="gmail_default" style="font-family:monospace"><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div class="gmail_default" style="font-family:monospace"><font color="#0000ff"><br></font></div></blockquote></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div class="gmail_default" style="font-family:monospace"><font color="#0000ff">print('Done!')</font></div></blockquote><div class="gmail_default" style="font-family:monospace"><br></div><div class="gmail_default" style="font-family:monospace">Longer waits in processEvents() or time.sleep() after setting the frame didn't seem to matter, the key was sleeping and processing events multiple times and 5 seems to be the minimum. I also had to do the set frame to the first date before the loop, as for some reason inside the loop it required more than 5 times when jumping backwards from the final date to the beginning and would thus result in a bunch of incompletely drawn images and a few skipped dates.</div><div class="gmail_default" style="font-family:monospace"><br></div><div class="gmail_default" style="font-family:monospace">Next I need to find if there is a way to change the size of the output image to different than the map canvas, but I suspect that will require playing with the pyqgis stuff that controlls the Print Layout stuff, and that is probably beyond my nonexistent python skills.</div><div class="gmail_default" style="font-family:monospace"></div><div class="gmail_default" style="font-family:monospace"></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, Jan 24, 2022 at 6:27 PM Nyall Dawson <<a href="mailto:nyall.dawson@gmail.com">nyall.dawson@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Tue, 25 Jan 2022 at 04:39, Cory Albrecht <<a href="mailto:maps@hanfastolfe.com" target="_blank">maps@hanfastolfe.com</a>> wrote:<br>
><br>
> But the `navigator.setCurrentFrameNumber(f)` doesn't change the canvas' temporal frame.<br>
><br>
> If I do `f=54003` manually in the console and then `navigator.setCurrentFrameNumber(f)` manually as well, the frame changes. I've used time.sleep() with values up to 5 seconds to see if setting the frame was just a background task that returns early before actually completed, but that didn;t make any difference.<br>
><br>
<br>
Try QCoreApplication.processEvents() instead of time.sleep<br>
<br>
> Why does it not change the frame in the middle of the for loop?<br>
<br>
it's a bit technical, but you need to let the Qt "event loop" process<br>
in order for any GUI widgets to update. time.sleep doesn't do this --<br>
it just blocks the caller for the requested time, and doesn't let Qt<br>
do it's thing and update the screen.<br>
<br>
But a huge warning is needed here: processEvents() is very dangerous<br>
to call in certain circumstances. Here it's ok to do, but definitely<br>
use with caution!! (You'll know you're using it wrong if you get<br>
crashes...)<br>
<br>
Nyall<br>
<br>
<br>
<br>
><br>
> On Tue, Jan 18, 2022 at 2:32 PM Cory Albrecht <<a href="mailto:maps@hanfastolfe.com" target="_blank">maps@hanfastolfe.com</a>> wrote:<br>
>><br>
>> Thanks, I'll check it out.<br>
>><br>
>> On Sun, Jan 16, 2022 at 8:04 PM Nyall Dawson <<a href="mailto:nyall.dawson@gmail.com" target="_blank">nyall.dawson@gmail.com</a>> wrote:<br>
>>><br>
>>> On Mon, 17 Jan 2022 at 10:46, Cory Albrecht <<a href="mailto:maps@hanfastolfe.com" target="_blank">maps@hanfastolfe.com</a>> wrote:<br>
>>> ><br>
>>> > Thanks for the pointer, but unfortunately it is incomplete. It tells me this:<br>
>>> ><br>
>>> >     # get the current  responsible for the mapCanvas behaviour and Temporal Controller gui<br>
>>> >     navigator = iface.mapCanvas().temporalController()<br>
>>> ><br>
>>> > And a few other methods for that object, but it's all about mimicking the "Save Animation" button with no explanation how to choose a specific frame or even anything as simple as going forward or backward by a single frame. Is there no list anywhere of all that temporal controller object's methods?<br>
>>><br>
>>> Yes, in the usual place (the PyQGIS API reference):<br>
>>><br>
>>>  <a href="https://qgis.org/pyqgis/master/core/QgsTemporalNavigationObject.html" rel="noreferrer" target="_blank">https://qgis.org/pyqgis/master/core/QgsTemporalNavigationObject.html</a><br>
>>><br>
>>> Nyall<br>
>>><br>
>>> ><br>
>>> ><br>
>>> ><br>
>>> > On Sun, Jan 16, 2022 at 3:40 PM Delaz J <<a href="mailto:delazj@gmail.com" target="_blank">delazj@gmail.com</a>> wrote:<br>
>>> >><br>
>>> >> Hi Cory,<br>
>>> >><br>
>>> >> I don't know if it's still compatible with API and of any help, but there's that stale pull request in the docs by Richard (<a href="https://github.com/qgis/QGIS-Documentation/pull/5521" rel="noreferrer" target="_blank">https://github.com/qgis/QGIS-Documentation/pull/5521</a>) you might want to look at.<br>
>>> >><br>
>>> >> Regards,<br>
>>> >><br>
>>> >> Harrissou<br>
>>> >><br>
>>> >> Le 16/01/2022 à 18:34, Cory Albrecht a écrit :<br>
>>> >><br>
>>> >> Hello,<br>
>>> >><br>
>>> >> Is there a way I can access and change/set stuff for the dynamic temporal controller programmatically in python? I'm looking to make a simple script that I can just cut and paste into the python console that will change the current frame of the DTC to a given timestamp, export the canvas to a PNG, and repeat for all the timestamps in an array.<br>
>>> >><br>
>>> >> _______________________________________________<br>
>>> >> Qgis-user mailing list<br>
>>> >> <a href="mailto:Qgis-user@lists.osgeo.org" target="_blank">Qgis-user@lists.osgeo.org</a><br>
>>> >> List info: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-user" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-user</a><br>
>>> >> Unsubscribe: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-user" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-user</a><br>
>>> ><br>
>>> > _______________________________________________<br>
>>> > Qgis-user mailing list<br>
>>> > <a href="mailto:Qgis-user@lists.osgeo.org" target="_blank">Qgis-user@lists.osgeo.org</a><br>
>>> > List info: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-user" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-user</a><br>
>>> > Unsubscribe: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-user" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-user</a><br>
><br>
> _______________________________________________<br>
> Qgis-user mailing list<br>
> <a href="mailto:Qgis-user@lists.osgeo.org" target="_blank">Qgis-user@lists.osgeo.org</a><br>
> List info: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-user" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-user</a><br>
> Unsubscribe: <a href="https://lists.osgeo.org/mailman/listinfo/qgis-user" rel="noreferrer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-user</a><br>
</blockquote></div>