Hi Bernd, Kai and Johannes, thanks for the help. I have tried your advice, but unfortunately have not progressed. We do not need to pursue this further. Thanks! Greetings Nils
-----Ursprüngliche Nachricht----- Von: Qgis-user <[email protected]> Im Auftrag von Kai Borgolte Gesendet: Dienstag, 14. September 2021 14:22 An: [email protected] Betreff: Re: [Qgis-user] Open-sky network Am 13.09.2021 um 17:12 schrieb Nils Schneekloth: Adding to Bernd's answer: > #CSV OUPUT PATH > csv_data='C:\Users\nschn\Documents\geodaten\Qgis\Flightdata\data.csv' Make it a raw string (r string): #CSV OUPUT PATH csv_data = r'C:\Users\nschn\Documents\geodaten\Qgis\Flightdata\data.csv' Because in standard strings Python sees backslashes as escape char, especially \n means newline. -- Kai Borgolte, Bonn _______________________________________________ Qgis-user mailing list [email protected] List info: https://lists.osgeo.org/mailman/listinfo/qgis-user Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user _______________________________________________ Qgis-user mailing list [email protected] List info: https://lists.osgeo.org/mailman/listinfo/qgis-user Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user
