Article

Tests

BeginPackage["Wikicode`Beryllium`"]

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

Begin["`Private`"]

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

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

End[]
EndPackage[]