I want to transform a GeoJSON file in .txt format into shapefile, but I don't know how. The geometry of these is points.
According to the help for desktop.arcgis, the syntax is as follows:
import arcpy
geojson_point = {"type": "Point", "coordinates": [5.0, 5.0]}
point = arcpy.AsShape (geojson_point)
But the question arises in which way I tell the program where the file is on my C: drive?
Could you give me an example of a syntax of how to do it?
Geometrytype, not file-oriented dataset translation tools likearcpy.conversion.JSONToFeatures– Vince Jul 12 '21 at 01:18