I have a json file that has a 2263 projection and i want to change it to 4326 using pyproj?
问题 How do i use the pyproj module to take a file from a path and just change it automatically? The file also includes multiple rows of data. It would probably need to run a loop on all the coordinates and just change them? I've added this code into the question based on your suggestions. import os,shutil import json from pyproj import Proj,transform #Create Desktop Folder path= os.path.expanduser('~/Desktop/NAD83_to_WGS84') path2=os.path.expanduser(path+'/EPSG_4326.json') #Any file path for