File:USD rate to EUR.svg
Summary
| Description |
English: Exchange rate US Dollar - Euro
Deutsch: Wechselkurs US Dollar - Euro |
| Date | |
| Source | Own work based on: data from http://www.federalreserve.gov |
| Author | Gorgo |
| SVG development | Category:Valid SVG created with Gnuplot#USD%20rate%20to%20EUR.svg |
gnuplot script to generate this plot
#!/usr/bin/gnuplot
# gnuplot 4.2 / Ubuntu 8.10
# 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.
! [ -f eurofxref-hist.csv ] || wget http://www.ecb.int/stats/eurofxref/eurofxref-hist.zip
! [ -f eurofxref-hist.csv ] || unzip eurofxref-hist.zip
#input
set timefmt "%Y-%m-%d"
set datafile missing 'N/A'
set datafile separator ','
#output
set key top left
set style data lines
set grid
set xdata time
set format x '%Y'
set xrange ['1999-01-01':*]
set xtics 31536000
#set mxtics 4
set ylabel 'EUR'
set format y '%.2f'
set term svg size 800,400 font "Arial,10"
set outp 'USD rate to EUR.svg'
set style line 1 lt rgb 'blue' lw 1
#available currencies:
#first one is $2, second $3 and so on
#USD,JPY,BGN,CYP,CZK,DKK,EEK,GBP,HUF,LTL,LVL,MTL,PLN,ROL,RON,SEK,SIT,SKK,CHF,ISK,NOK,HRK,RUB,TRL,TRY,AUD,BRL,CAD,CNY,HKD,IDR,INR,KRW,MXN,MYR,NZD,PHP,SGD,THB,ZAR
plot 'eurofxref-hist.csv' usi 1:(1/$2) title '1 USD in EUR' ls 1
Licensing
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. |
| This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license. | ||
| ||
| This licensing tag was added to this file as part of the GFDL licensing update. |
Category:CC-BY-SA-3.0-migrated
Category:Euro exchange rate charts
Category:GFDL
Category:Images with Gnuplot source code
Category:License migration completed
Category:Self-published work
Category:Translation possible - SVG
Category:United States dollar exchange rate charts
Category:Valid SVG created with Gnuplot