home *** CD-ROM | disk | FTP | other *** search
/ Kids Cube / 4_History.iso / fastmap / example.dat < prev    next >
Text File  |  1992-05-17  |  2KB  |  56 lines

  1. ; The user data file lets you add data to be drawn on the map.
  2. ;
  3. ; The format of the file is comma delimited fields of:
  4. ;    "label", latitude, longitude, code, action   ; semicolon starts comments
  5. ;
  6. ; Quotes cannot appear in a quoted label, but quotes are optional.
  7. ; If the label is not quoted, the characters until the first comma
  8. ; are taken to be the label.
  9. ;
  10. ; Latitude and longitude are integers specifying degrees in minutes
  11. ; (multiply degrees by 60 to get minutes).  Positive numbers are north
  12. ; and east, respectively.
  13. ;
  14. ; code is: 1 for Coast lines
  15. ;          2 for Country boundries
  16. ;          4 for State boundries
  17. ;          5 for Islands
  18. ;          6 for Lakes
  19. ;          7 for Rivers
  20. ;         10 for Capital cities
  21. ;         11 for State capitals
  22. ;         12 for Other cities
  23. ;         13 for User data 1
  24. ;         14 for User data 2
  25. ;
  26. ; action is: 1 to draw a big marker
  27. ;            2 to draw a medium marker
  28. ;            3 to draw a small marker
  29. ;            4 to draw a tiny marker
  30. ;            5 to draw nothing
  31. ;
  32. ; Add 64 to the above draws a line from previous label to the current label.
  33. ; e.g. 66 draws a line with a big marker at each point or 69 just draws lines.
  34. ;
  35. ; The city file also has exactly the same format.  You can add more data
  36. ; to the city file instead of creating a separate user data file.
  37. ;
  38. "Big",0,0,13,1           ; this is a sample comment
  39. "Medium",-100,0,13,2
  40. "Small",-200,0,13,3
  41. "Tiny",-300,0,13,4
  42. "No mark",-400,0,13,5
  43. Connected lines,-100,-200,14,1
  44. line 1 (big),-200,-200,14,65
  45. line 2 (medium),-250,-250,14,66
  46. line 3 (small),-200,-300,14,67
  47. line 4 (tiny),-300,-300,14,68
  48. line 5 (no mark),-300,-400,14,69
  49. line 6 (no mark),-400,-500,14,69
  50. line 7 (no mark),-100,-500,14,69
  51. Label with a " quote,100,100,13,1  ; but a label can't have a leading quote
  52. "Label with a , comma",100,200,13,1
  53. ,-100,100,14,1                     ; no label, will appear as "<none>"
  54. "",-100,200,14,1                   ; no label, will appear as "<none>"
  55.  
  56.