Article

Tests

BeginPackage["Wikicode`Aluminum`"]

Production::usage = "Production[date] gives the annual world aluminum \
production from the specified date."

Begin["`Private`"]

Production[from_Integer] :=
 Select[aluminumData["Production"],
  DateDifference[{from}, #[[1]]] >= 0 &]

aluminumData["Production"] =
 MapAt[{Round@#} &, #, 1] & /@
  Import["http://minerals.usgs.gov/ds/2005/140/ds140-alumi.xlsx"][[1,
    6 ;; -16, {1, 16}]]

End[]
EndPackage[]