Article

Tests

BeginPackage["Wikicode`Diamond`"]

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

Begin["`Private`"]

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

diamondData["Production"] = 
 MapAt[{Round@#} &, #, 1] & /@ 
  Import["http://minerals.usgs.gov/ds/2005/140/ds140-diamo.xlsx"][[1, 
   44 ;; 117, {1, 11}]]

End[]
EndPackage[]