vote up 0 vote down star

How can I load a *.csv file which includes text and numerical data in LOGO?

e.g. N 43.876 W

flag
1  
@sara: notepad file.csv – John Saunders Jun 26 at 15:34
Brilliant edit, Rich B. – Shog9 Jun 26 at 16:35
Yeah, but adding LOGO was a bit too much, I think. – John Saunders Jun 26 at 16:49

closed as not a real question by Pesto, Rich B, Mark Biek, Mitch Wheat, Paolo Bergantino Jun 28 at 9:16

2 Answers

vote up 2 vote down

Since this is SO I assume you're meaning within code.

Basically you're reading in a line, and parsing it (looking for commas, spaces, pipes, whatever you use to delimit), and doing a split (most languages support this in their string libraries) to get an array of your values. If you know which value should be an int then you convert it.

If you mean so you can look at it yourself - use notepad, wordpad, word, excel, openoffice, pspad, vim, pico, whatever you want.

EDIT: Now that you've included more info - This resource includes file reading and extracting information from files in LOGO.

link|flag
vote up 1 vote down

Here's some very basic File IO code using LOGO.

I used FMSLogo on Windows.

Assuming the file test.csv is in the same directory as the fmslogo binary

OPENREAD "test.csv
SETREAD "test.csv
SHOW READLIST

The key part here is SHOW READLIST which prints out the contents of the current line and the moves the file pointer to the next line.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.