I, the copyright holder of this work, hereby publish it under the following license:
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License.http://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue
to share – to copy, distribute and transmit the work
to remix – to adapt the work
Under the following conditions:
attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
This licensing tag was added to this file as part of the GFDL licensing update.http://creativecommons.org/licenses/by-sa/3.0/CC BY-SA 3.0Creative Commons Attribution-Share Alike 3.0truetrue
Gnuplot script to generate this plot
When run in Linux (and similar OS'es), this script will automatically download the data and generate an updated plot image. With some adaptations and a bit more manual work, it would work in the Windows version of Gnuplot.
#!/usr/bin/gnuplot# gnuplot 4.6 # gnuplot script for plotting eurofxref-hist.csv as obtained from# http://www.ecb.int/stats/exchange/eurofxref/html/index.en.html# download and unzip data if not available - delete eurofxref* to force new download.# remove or comment out these lines in Windows/MacOS.![-feurofxref-hist.csv]||wgethttp://www.ecb.int/stats/eurofxref/eurofxref-hist.zip![-feurofxref-hist.csv]||unzipeurofxref-hist.zip#inputsettimefmt"%Y-%m-%d"setdatafilemissing"N/A"setdatafileseparator','#outputsetkeytopleftsetstyledatalinessetgridsetxdatatimesetxlabel'Date'setxrange['1999-01-04':*]setmxtics4setformatx'%Y'setylabel'Indexed exchange rates'setformaty'%g%%'settermpngsmallsize1000,600font"Arial,10"setoutp'Euro exchange rate to USD, JPY, and GBP.png'setstyleline1ltrgb'green'lw1setstyleline2ltrgb'red'lw1setstyleline3ltrgb'blue'lw1plot\
'eurofxref-hist.csv'\
usi1:($2/0.011789)title'100%=1.18 USD'ls1,\
''usi1:($3/1.3373)title'100%=134 JPY'ls2,\
''usi1:($9/0.00711)title'100%=0.71 GBP'ls3
Captions
Add a one-line explanation of what this file represents