Thank you a lot! <br><br><div id="ymail_android_signature"><a id="ymail_android_signature_link" href="https://go.onelink.me/107872968?pid=InProduct&c=Global_Internal_YGrowth_AndroidEmailSig__AndroidUsers&af_wl=ym&af_sub1=Internal&af_sub2=Global_YGrowth&af_sub3=EmailSignature">Sent from Yahoo Mail on Android</a></div> <br> <blockquote style="margin: 0 0 20px 0;"> <div style="font-family:Roboto, sans-serif; color:#6D00F6;"> <div>On Mon, Nov 2, 2020 at 12:25 PM, Richard Duivenvoorde</div><div><rdmailings@duif.net> wrote:</div> </div> <div style="padding: 10px 0 0 20px; margin: 10px 0 0 0; border-left: 1px solid #6D00F6;"> <br clear="none">Ah, and to reproduce, I created a temporary(!) service:<br clear="none"><br clear="none"><a shape="rect" href="https://duif.net/geotest/points.geojson" target="_blank">https://duif.net/geotest/points.geojson</a><br clear="none"><br clear="none">which gives you one random point on the world every time you refresh<br clear="none"><br clear="none">Regards,<br clear="none"><br clear="none">Richard<br clear="none"><br clear="none"><br clear="none">On 11/2/20 12:23 PM, Richard Duivenvoorde wrote:<br clear="none">> I think you hit an old issue:<br clear="none">> <br clear="none">> <a shape="rect" href="https://github.com/qgis/QGIS/issues/28282" target="_blank">https://github.com/qgis/QGIS/issues/28282</a><br clear="none">> and<br clear="none">> <a shape="rect" href="https://github.com/qgis/QGIS/issues/28744" target="_blank">https://github.com/qgis/QGIS/issues/28744</a><br clear="none">> <br clear="none">> Not sure if I can tackle it, but I can give it a try.<br clear="none">> If a core-dev has a clue, please let me know...<br clear="none">> <br clear="none">> I think this should work, as this makes it supereasy to have a 'moving map'..<br clear="none">> <br clear="none">> Regards,<br clear="none">> <br clear="none">> Richard Duivenvoorde<br clear="none">> <br clear="none">> <br clear="none">> On 11/1/20 9:24 PM, <a shape="rect" ymailto="mailto:nagyrobi_r@yahoo.com" href="mailto:nagyrobi_r@yahoo.com">nagyrobi_r@yahoo.com</a> wrote:<br clear="none">>><br clear="none">>>     Hi All!<br clear="none">>><br clear="none">>>     I am trying to understand the behavior of Layer->Render-> Refresh layer at interval in QGIS<br clear="none">>><br clear="none">>>      1. I sat up a flask rest api which serves a geojson.<br clear="none">>>      2. I added the geojson to QGIS via Add Layer-> <br clear="none">>>          1. a. Protocol HTTP/cloud/etc <br clear="none">>>          2. b. Type: HTTP <br clear="none">>>          3. c.URI: localhost/points.geojson The points are represented on the map correctly<br clear="none">>>      3. I changed the layer->Properties->Rendering-> Refresh layer at interval (5 sec)<br clear="none">>><br clear="none">>>     I would have expected that there would be a call every 5 seconds towards the server and the map data would be updated accordingly. But the layer does not get refreshed. I don't see any changes neither when I remove a point from the json file on my local drive, nor if I change an attribute. If I press F5 then the canvas refreshes and it automatically loads the new data and I can see the changes. Is this the behavior that is wanted or am I misunderstanding the function of this tool? It seems like the data is cached somewhere?<br clear="none">>><br clear="none">>>     |from flask import Flask from flask_restful import Api, Resource import json app = Flask(__name__) api = Api(app) class point(Resource): def get(self): with open('C:/points/venv/src/points.geojson') as json_file: data = json.load(json_file) return data api.add_resource(point,"/points.geojson") if __name__=="__main__": app.run(debug=True)|<br clear="none">>><br clear="none">>>     |Robert Nagy|<br clear="none">>><br clear="none">>><br clear="none">>> _______________________________________________<br clear="none">>> Qgis-user mailing list<br clear="none">>> <a shape="rect" ymailto="mailto:Qgis-user@lists.osgeo.org" href="mailto:Qgis-user@lists.osgeo.org">Qgis-user@lists.osgeo.org</a><br clear="none">>> List info: <a shape="rect" href="https://lists.osgeo.org/mailman/listinfo/qgis-user" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-user</a><br clear="none">>> Unsubscribe: <a shape="rect" href="https://lists.osgeo.org/mailman/listinfo/qgis-user" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-user</a><br clear="none">>><br clear="none">> <br clear="none">> _______________________________________________<br clear="none">> QGIS-Developer mailing list<br clear="none">> <a shape="rect" ymailto="mailto:QGIS-Developer@lists.osgeo.org" href="mailto:QGIS-Developer@lists.osgeo.org">QGIS-Developer@lists.osgeo.org</a><br clear="none">> List info: <a shape="rect" href="https://lists.osgeo.org/mailman/listinfo/qgis-developer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-developer</a><div class="yqt1925388168" id="yqtfd16838"><br clear="none">> Unsubscribe: </div><a shape="rect" href="https://lists.osgeo.org/mailman/listinfo/qgis-developer" target="_blank">https://lists.osgeo.org/mailman/listinfo/qgis-developer</a><div class="yqt1925388168" id="yqtfd27943"><br clear="none">> <br clear="none"><br clear="none"></div> </div> </blockquote>