Create kml from csv in Python

前端 未结 5 1393
名媛妹妹
名媛妹妹 2021-02-06 03:54

I am new to Python. I am working on gps files. I need to convert a CSV file having all the gps data to kml file. Below is the code in python I am using :

import          


        
5条回答
  •  日久生厌
    2021-02-06 04:34

    You didn't answer the query above, but my guess is that the error is that you're not closing your output file (which would flush your output).

    f.close()
    

提交回复
热议问题