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

Export activities to json? #41

Closed
emilkarl opened this issue Oct 27, 2017 · 1 comment
Closed

Export activities to json? #41

emilkarl opened this issue Oct 27, 2017 · 1 comment

Comments

@emilkarl
Copy link

Is there a way to export records to json?

@F3L1X79
Copy link

F3L1X79 commented Nov 9, 2017

This is what I managed to do so far:

from fitparse import FitFile
import datetime
import sys
import json

fitfile = FitFile(sys.argv[1])

# Get all data messages that are of type record
records=[]
for record in fitfile.get_messages('record'):

    # Go through all the data entries in this record
    activities=[]
    activity_line={}
    for record_data in record:
        value = record_data.value
		
        if isinstance(value, datetime.datetime):
            value = record_data.value.strftime("%Y-%m-%d %H:%M:%S")
        if (record_data.name is 'position_lat' or record_data.name is 'position_long'):
            value = record_data.value * (180./2**31)
			
        activity_line[record_data.name] = value	
    records.append(activity_line)

# Make it work for Python 2+3 and with Unicode
import io
try:
    to_unicode = unicode
except NameError:
    to_unicode = str

# Write JSON file
with io.open('records.json', 'w', encoding='utf8') as outfile:
    str_ = json.dumps(records, indent=4, sort_keys=True, separators=(',', ': '), ensure_ascii=False)
    outfile.write(to_unicode(str_))
	
# Get all data messages that are of type lap
laps=[]
for record in fitfile.get_messages('lap'):

    # Go through all the data entries in this lap
    activities=[]
    activity_line={}
    for record_data in record:
        value = record_data.value
		
        if isinstance(value, datetime.datetime):
            value = record_data.value.strftime("%Y-%m-%d %H:%M:%S")
        if (record_data.name is 'position_lat' or record_data.name is 'position_long' or
        record_data.name is 'start_position_lat' or record_data.name is 'start_position_long' or
        record_data.name is 'end_position_lat' or record_data.name is 'end_position_long'):
            value = record_data.value * (180./2**31)
			
        activity_line[record_data.name] = value
    laps.append(activity_line)

# Make it work for Python 2+3 and with Unicode
import io
try:
    to_unicode = unicode
except NameError:
    to_unicode = str

# Write JSON file
with io.open('laps.json', 'w', encoding='utf8') as outfile:
    str_ = json.dumps(laps, indent=4, sort_keys=True, separators=(',', ': '), ensure_ascii=False)
    outfile.write(to_unicode(str_))

output={'records':records, 'laps':laps}
print json.dumps(output)

It creates a records.json and a laps.json files and output them as json array if needed.

pR0Ps added a commit that referenced this issue Dec 1, 2017
- Removed non-implemented output formats
- Fixed writing data to a file

Fixes #41
pR0Ps added a commit that referenced this issue Dec 1, 2017
- Removed non-implemented output formats
- Fixed writing data to a file
- Removed the restrction on dumping non-readable formats to stdout

Fixes #41
pR0Ps added a commit that referenced this issue Dec 1, 2017
Other minor things:
- Removed non-implemented output formats
- Removed the restrction on dumping non-readable formats to stdout
- Allow Python to buffer the output for faster execution

Fixes #41
pR0Ps added a commit that referenced this issue Feb 18, 2018
Other minor things:
- Removed non-implemented output formats
- Removed the restrction on dumping non-readable formats to stdout
- Allow Python to buffer the output for faster execution

Fixes #41
@pR0Ps pR0Ps closed this as completed in #45 Feb 26, 2018
pR0Ps added a commit that referenced this issue Feb 26, 2018
Other minor things:
- Removed non-implemented output formats
- Removed the restrction on dumping non-readable formats to stdout
- Allow Python to buffer the output for faster execution

Fixes #41
dtcooper pushed a commit that referenced this issue Mar 4, 2018
Other minor things:
- Removed non-implemented output formats
- Removed the restrction on dumping non-readable formats to stdout
- Allow Python to buffer the output for faster execution

Fixes #41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants