Because with the export of data from the projects they don't split a users data between the teams they contributed to, so there is no simple way to do it. Sure it is *possible* to store the data as movement is made but it would be incredibly convoluted and potentially data intensive to try to hold the individual totals. Instead of one row per user per project I would have to store multiples.
I do, however store what their points total was in moving into the team
here for instance.
Note that BOINC project pages themselves don't differentiate it so it shows Outlnder as the #1 on the team correctly
It might be interesting to have a page showing individual movement though. I can easily do that, that same page would show the contributions to each team.
Code:
mysql> select stat_date,fromteam,toteam,metric1,team from boinc_movement where proj = 'pgrid' and id = 3550 order by stat_date;
+------------+----------+--------+-----------------+--------------+
| stat_date | fromteam | toteam | metric1 | team |
+------------+----------+--------+-----------------+--------------+
| 2008-04-16 | 0 | 182 | 648544.829434 | Ars Technica |
| 2010-04-29 | 182 | 0 | 11738191.796552 | NULL |
| 2010-05-09 | 0 | 95 | 11765627.126508 | Free-DC |
+------------+----------+--------+-----------------+--------------+
3 rows in set (0.05 sec)
Bok