Article

Tests

BeginPackage["Wikicode`Niobium`"]

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

Begin["`Private`"]

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

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

End[]
EndPackage[]