Maptitude - http://research.umbc.edu/~roswell/maptitude.html

> 
> Does anyone know a quick way to get an ASCII list of field names?
> 

If this is a binary or ascii table, you can just open the
"dictionary" file for it, which is the filename.dcb, or
filename.dcc file.  It contains all the field names of the
attribute table.

If you want GISDK macro to write out the fields, here is one:

   fp = OpenFile("test.txt", "w")
   {fields, field_specs} = GetFields( , )
   for i = 1 to fields.length do
       WriteLine(fp, fields[i])
   end
   CloseFile(fp)

-Kjartan


______________________________________________________________________
To unsubscribe, write to [EMAIL PROTECTED]

Taking Care of Business is always a snap when you shop with the
world's largest seller of office products.  From pencils to PDAs,
Office Depot has what you're looking for, plus FREE delivery on all
orders over $50.  Click here to start saving:


http://www.bcentral.com/listbot/Office_Depot

Reply via email to