Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Data errors #63

Closed
3 tasks done
153957 opened this issue Jun 22, 2014 · 6 comments
Closed
3 tasks done

Data errors #63

153957 opened this issue Jun 22, 2014 · 6 comments

Comments

@153957
Copy link
Member

153957 commented Jun 22, 2014

While processing events for the ESD we encourtered some errors as mentioned in #61.
We should try to find the cause of these errors:

  • 2012_11_05 - stations 10, 303, 504, 1003, 2201, 3103, 3302, 7001, 8003, 8004 and 8006 (different errors).
  • 2011_02_14 - station 3201.
  • 2009_03_01 up to and including 2009_05_15 - stations 98, 502, 503, 504, 505, 507, 601, 8101 and 8102.

update on 2015/5/6: added 2012_11_05 - 10, 303, 504, 1003, 2201, 3103, 3302, 7001, 8003

@153957
Copy link
Member Author

153957 commented Jul 8, 2014

Data from 2009_03_22 (or 23..) up to and including 2009_05_15 is broken because of extra quotes around the data, if these are stripped the data unpacks properly.

@153957
Copy link
Member Author

153957 commented Jul 8, 2014

Fixed the 2009 problems in HiSPARC/sapphire@4f8db5a

@davidfokkema
Copy link
Member

Great!

@153957
Copy link
Member Author

153957 commented Jul 11, 2014

SAPPHIRE v0.9.14 contains the fix.
It has been deployed on the publicdb.
Now processing; 2009_03_22 - 2009_05_16.
It now works for those events that it failed on before.

@153957
Copy link
Member Author

153957 commented Mar 16, 2016

Fixed for 2012-11-5, removed all (network)summaries for that date to let the publicdb (jobs) rediscover all data.

from django_publicdb.histograms.models import Summary, NetworkSummary
import datetime as dt
DATE = dt.date(2012, 11, 5)
summaries = Summary.objects.filter(date=DATE)
summaries.delete()
networksummary = NetworkSummary.objects.get(date=DATE)
networksummary.delete()

@153957
Copy link
Member Author

153957 commented Mar 16, 2016

Also fixed (by removing data) for 2011-2-14 in HiSPARC/datastore@41deafb

@153957 153957 closed this as completed Mar 16, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants