Article

Tests

BeginPackage["Wikicode`Tantalum`"]

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

Begin["`Private`"]

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

tantalumData["Production"] = 
 MapAt[{Round@#} &, #, 1] & /@ 
  Import["http://minerals.usgs.gov/ds/2005/140/ds140-tanta.xlsx"][[1, 
   11 ;; 53, {1, 12}]]

End[]
EndPackage[]