We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When exporting data from CAWS the timezone information is missing in the json data. A timezone measurement looks like this from CAWS:
{ "sequenceId": 1, "studyDeploymentId": "15c12adb-b6ce-408f-99a0-f54c944416d9", "deviceRoleName": "Primary Phone", "measurement": { "sensorStartTime": 1737381487894357, "data": { "__type": "dk.cachet.carp.timezone" } }, ... },
But when uploaded, it looks like this:
{ "sensorStartTime": 1737381487894357, "data": { "__type": "dk.cachet.carp.timezone", "timezone": "Europe/Copenhagen" } }
Hence the timezone part is missing (note that this is the same measurement, based on the timestamp).
timezone
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When exporting data from CAWS the timezone information is missing in the json data. A timezone measurement looks like this from CAWS:
But when uploaded, it looks like this:
Hence the
timezone
part is missing (note that this is the same measurement, based on the timestamp).The text was updated successfully, but these errors were encountered: