Mark McKinnon dc63b3134c Upgrade gpxpy to newer version
Upgrade gpxpy to version 1.3.5
2020-02-04 15:26:46 -05:00

93 lines
2.5 KiB
Python

# -*- coding: utf-8 -*-
# Copyright 2011 Tomo Krajina
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import sys as mod_sys
import math as mod_math
import xml.sax.saxutils as mod_saxutils
PYTHON_VERSION = mod_sys.version.split(' ')[0]
def to_xml(tag, attributes=None, content=None, default=None, escape=False, prettyprint=True, indent=''):
if not prettyprint:
indent = ''
attributes = attributes or {}
result = []
result.append('\n' + indent + '<{0}'.format(tag))
if content is None and default:
content = default
if attributes:
for attribute in attributes.keys():
result.append(make_str(' %s="%s"' % (attribute, attributes[attribute])))
if content is None:
result.append('/>')
else:
if escape:
result.append(make_str('>%s</%s>' % (mod_saxutils.escape(content), tag)))
else:
result.append(make_str('>%s</%s>' % (content, tag)))
result = make_str(''.join(result))
return result
def is_numeric(object):
try:
float(object)
return True
except TypeError:
return False
except ValueError:
return False
def to_number(s, default=0, nan_value=None):
try:
result = float(s)
if mod_math.isnan(result):
return nan_value
return result
except TypeError:
pass
except ValueError:
pass
return default
def total_seconds(timedelta):
""" Some versions of python don't have the timedelta.total_seconds() method. """
if timedelta is None:
return None
return (timedelta.days * 86400) + timedelta.seconds
def make_str(s):
""" Convert a str or unicode or float object into a str type. """
if isinstance(s, float):
result = str(s)
if not 'e' in result:
return result
# scientific notation is illegal in GPX 1/1
return format(s, '.10f').rstrip('0.')
if PYTHON_VERSION[0] == '2':
if isinstance(s, unicode):
return s.encode("utf-8")
return str(s)