MathGroup Archive 2012

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Importing data from the web

  • To: mathgroup at smc.vnet.net
  • Subject: [mg125179] Re: Importing data from the web
  • From: "Hans Michel" <hmichel at cox.net>
  • Date: Sun, 26 Feb 2012 04:21:19 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • References: <201202250655.BAA01311@smc.vnet.net>

Maria:

Try

data4 = {{"050318", "00111529"}, {"050401", "00113120"}};
 Do[
 ID = data4[[i, 2]];
 url = "http://www.swift.ac.uk/xrt_curves/"; <> ID ;
 s = Import[url, "Text"];
 Print[s],
 {i, 1, Length[data4]}
 ]

The string join you were attempting did not work. I moved the concatenation
of the url string external to the Import this way if you wish to test if the
url exist before import you can. Somewhere on MathGroup there is code to
test for existence of a URL.

Hans

-----Original Message-----
From: maria giovanna dainotti [mailto:mariagiovannadainotti at yahoo.it] 
Sent: Saturday, February 25, 2012 12:55 AM
To: mathgroup at smc.vnet.net
Subject: [mg125179] Importing data from the web


Dear Math Group,

I have a problem importing the data from a web page.

data4 = {{"050318", "00111529"}, {"050401", "00113120"}}
Do[
 ID = data4[[i, 2]];
 s = Import["http://www.swift.ac.uk/xrt_curves/<>ID<>", "Text"];
 Print[s],
 {i, 1, Length[data4]}]

The error message is
$Failed

I am really grateful if you could help me

Best regards,
Maria






  • Prev by Date: Re: Importing data from the web
  • Next by Date: Re: Reading Single and Double reals in Little-endian and Big-endian
  • Previous by thread: Re: Importing data from the web
  • Next by thread: Re: Importing data from the web