ovid.txt 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. Summary of files:
  2. ovid.pl
  3. Generates a single report of platform share from a Ovi Publish report
  4. Usage: ovid.pl filename.tsv
  5. Input: filename.tsv
  6. Output: to standard output
  7. ovid.bat
  8. Runs ovid.pl on all .tsv files and then generates a chart
  9. Input: *.tsv, ovid.plt
  10. Usage: ovid.bat
  11. Output: to standard output and ovid.png
  12. ovid.plt
  13. Used by gnuplot in ovid.bat to generate the chart
  14. ovid.data
  15. Generated by ovid.pl, used to generate the chart
  16. ===
  17. How to create a platform share chart
  18. Step 1. Download the scripts from http://projects.forum.nokia.com/ovid
  19. Step 2. The boring manual step. Paste the tab seperated devices list from Ovi Publish reports into .tsv files, one per month. For example 2011-03.tsv:
  20. #1 Nokia N8-00 11.2 %
  21. #2 Nokia 5800 XpressMusic 10.2 %
  22. <snip>
  23. #68 Nokia N93 0.0 %
  24. Step 3. To generate a single report, call:
  25. ovid.pl 2011-03.tsv
  26. It outputs to standard output:
  27. #1 11.2% Symbian^3 Nokia N8-00
  28. #2 10.2% Symbian^1 Nokia 5800 XpressMusic
  29. <snip>
  30. #68 0.0% S60 3.0 Nokia N93
  31. =============================
  32. 4 Symbian^3 models: 16.3%
  33. 12 Symbian^1 models: 39%
  34. 51 S60 3rd edition: 44%
  35. -----------------------------
  36. 25 S60 3.2 models: 18.5%
  37. 13 S60 3.1 models: 20.6%
  38. 13 S60 3.0 models: 4.9%
  39. -----------------------------
  40. 1 unknown models: 0.3%
  41. =============================
  42. 68 total models: 99.6%
  43. =============================
  44. Ignoring the unknown:
  45. =============================
  46. 4 Symbian^3 models: 16.3%
  47. 12 Symbian^1 models: 39.1%
  48. 51 S60 3rd ed. models: 44%
  49. -----------------------------
  50. 25 S60 3.2 models: 18.6%
  51. 13 S60 3.1 models: 20.7%
  52. 13 S60 3.0 models: 4.9%
  53. =============================
  54. 67 total models: 99.6%
  55. =============================
  56. Step 4. To generate a chart for several months, download gnuplot from http://www.gnuplot.info/download.html and stick it in your PATH. (Tested with version 4.4.0.)
  57. Step 5. Edit ovid.plt to set a title for your chart.
  58. Step 6. Run ovid.bat. There's usually at least one unknown model: "Unresolved". If you get any more, the missing models need adding to the lists at the top of ovid.pl. Please let me know and I'll update the script as well.
  59. If you use this, please post links to your charts too!