Kinda new to this, and writing a script that loads in latitudes and longitudes from a CSV file and converts the formatting for another program to read...finally got it all to work.
I was wondering how I might set this up so I could maybe run ./converter.py filename.csv from a command prompt rather then having the filename embedded in the script?
Currently I have this:
csv_file = open('Vicksburg_9mph_dm.csv') #Defines name of file to open
csv_reader = csv.reader(csv_file, delimiter=',') #Opens file as CSV File