[Yr11 Information Technology] Re: data loggers

McDonald, Debra A1 mcdonald.debra.a1 at edumail.vic.gov.au
Tue Feb 20 22:24:42 EST 2007


Andrew email me tomorrow and I will put you onto our science technician who=
 does this all the time.

cheers
Debra McDonald
Lyndhurst Secondary College


-----Original Message-----
From: yr11it-bounces at edulists.com.au on behalf of Steven Bird
Sent: Tue 20/02/07 10:09 PM
To: yr11it at edulists.com.au
Subject: [Yr11 Information Technology] Re: data loggers
 
Andrew Grimshaw" <grimshaw.andrew.j at edumail.vic.gov.au> wrote:
> we are looking at getting some data loggers to link directly w laptops
>
> does any1 have any experience using these?

Instead of extra hardware and all the attendant issues, you might
consider using the web for a different kind of 'remote sensing'.  Many
websites present meteorological, astronomical, financial etc data in a
format that can be easily accessed by a program.

For example, here's a little Python program that grabs historical
rainfall data covering the last century, directly from the Bureau of
Meteorology website.  Its a simple matter to plot the data and analyze
trends.

--snip--
from urllib import urlopen
rainfall_data =3D
urlopen('http://www.bom.gov.au/web01/ncc/www/cli_chg/timeseries/rain/0112/au=
s/latest.txt')
for line in rainfall_data.readlines():
    date, rainfall =3D line.split()
    print date, rainfall
--snip--

Sometimes the data comes in CSV format, ready to drop into a
spreadsheet.  Often one has to do a bit of pre-processing to strip out
HTML tags, and for this a bit of simple scripting usually does the
trick.

-Steven Bird
http://www.csse.unimelb.edu.au/~sb/
_______________________________________________
http://www.edulists.com.au - FAQ, resources, subscribe, unsubscribe
Year 11 It Mailing List kindly supported by
http://www.vcaa.vic.edu.au - Victorian Curriculum and Assessment Authority a=
nd
http://www.vitta.org.au  - VITTA Victorian Information Technology Teachers A=
ssociation Inc


Important - This email and any attachments may be confidential. If received=
 in error, please contact us and delete all copies. Before opening or using=
 attachments check them for viruses and defects. Regardless of any loss, dam=
age or consequence, whether caused by the negligence of the sender or not, r=
esulting directly or indirectly from the use of any attached files our liabi=
lity is limited to resupplying any affected attachments. Any representations=
 or opinions expressed are those of the individual sender, and not necessari=
ly those of the Department of Education.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/ms-tnef
Size: 3707 bytes
Desc: not available
Url : http://www.edulists.com.au/pipermail/yr11it/attachments/20070220/f2e4d1e5/attachment.bin


More information about the yr11it mailing list