I've been using an addon for Centrafuse (front end software) that will allow me to save my current location to a custom CSV file, so that the location can later be imported into other GPS applications. Now I'm looking for a standalone version.
Basically, the addon I use allows you to set up to 10 different fields of data (2 of which are reserved for the longitude & latitude).
For example, this is the setting I had (The format of the line to be written to the CSV file):
%1 (%2),%3,%2,%4,%5,%6,%lng,%lat
The data for that is:
%1 = Name
%2 = City
%3 = Address
%4 = State
%5 = Phone
%6 = Category
The addon itself had 2 buttons on the screen: Refresh & Save. If you pressed the Refresh, it temporarily saved the current location to memory. Once you hit Save, it'd prompt you for any of the %(number) fields and would then write the data to the CSV file. If the CSV file doesn't exist when you hit the Save, you can also specify that the program write out a header line before writing the data to the file. The header line for the above example would be:
Name (City),Address,City,State,Phone,Category,Longitude,Latitude
When you hit the Save button, it'd ask for input for each of the %(number) entries. Even though the City (%2) is in the line twice, it would only ask you to type it one time.
Since it's a pretty simple program, I tried finding a free gps toolkit so that I could try writing my own code. However, I'm not finding anything.
So, the question is, does anyone know of any free toolkits for Visual C#, Visual Basic, etc? or have the ability to create this useful little utility? I know I use that addon quite a bit - it makes it soooo easy to add new POI's/pushpins that it's unreal.