could someone advise me on the most efficient way to gather data from one source, select a specific piece of data and insert it in a web page? Specifically, I wish to:

  1. Call up this buoy data text file: http://www.ndbc.noaa.gov/data/realtime2/46237.txt
  2. Find the water temperature and insert that value in my web page.

First big question: What scripting language should I use? (I'm assuming Fortran is not an option :-)

Second not so big question: This same data set is available in graphic and xml format. Would either of these data formats be more useful than the .txt file?

Thanks in advance.

link|improve this question
feedback

2 Answers

Use Perl.

(Hey, you asked. Normally one programs in whatever language one would normally use.)

The XML format won't be much more useful than the text format.

link|improve this answer
Thanks Satya, googling 'Perl tutorial' now. – Hugh Jan 22 '11 at 17:42
feedback

This text file format is just about as simple as it could ever get. Just about any scripting or general purpose programming language will work. The critical part is to split each line on a regex "\s+". i.e. in Python it would be:

import re

theFileObject = open('/path/to/downloaded/file.txt')
for line in theFileObject.readlines():
    columns = re.split(r'\s+', line)
    # each column is columns[0] through columns[19]

So basically choose whatever programming language seems easiest to you. Any .NET language would be equally capable, as well as ruby, python, scheme, etc. I personally have a distaste for perl because I find it very difficult to read

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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