I'm currently working on a report application. I can create CSV files to hold my data but I would like to add metadata to each row in order to do future grouping, categorize, etc.
I'm not aware what the proper syntax for metadata is in a CSV file but I've seen someone do:
# publisher City of Palo Alto
# updated 12/31/2010
# name GID on_street species trim_cycle inventory_date
# datatype string string string string date:M/D/YYYY
GID, On Street, Species, Trim Cycle ,Inventory, Date
1, ADDISON AV, Celtis australis, Large Tree, Routine Prune, 10/18/2010
2, EMERSON ST, Liquidambar styraciflua, Large Tree, Routine Prune, 6/2/2010
I attempted that and the data after #
was still shown as a field when the CSV file was opened up.
I'm creating my CSV file using Ruby.