This image represents a list of components location in UTM coordinates in zone 17S.
However, I would like to visualize them in ArcGis Pro or Google Earth and must be a KMZ/KML or SHAPEFILE. Each coordinate should be displayed as a point, not a polygon
data = [['ROO01', 558635, 9303470],
['ROO02', 559203, 9303470]]
columns = ['ID', 'Easthing', 'Northing']
df = pd.DataFrame(data=data, columns=columns)
How could I do that and obtain something like this?


You can use
pyproj.Output: