Fix drop python 3.7
This commit is contained in:
parent
865f2b929b
commit
67f3cd471a
|
@ -1,6 +1,4 @@
|
||||||
"""Look up geolocation information for media objects."""
|
"""Look up geolocation information for media objects."""
|
||||||
from past.utils import old_div
|
|
||||||
|
|
||||||
|
|
||||||
from os import path
|
from os import path
|
||||||
|
|
||||||
|
@ -53,12 +51,10 @@ def decimal_to_dms(decimal):
|
||||||
|
|
||||||
def dms_to_decimal(degrees, minutes, seconds, direction=' '):
|
def dms_to_decimal(degrees, minutes, seconds, direction=' '):
|
||||||
sign = 1
|
sign = 1
|
||||||
if(direction[0] in 'WSws'):
|
if direction[0] in 'WSws':
|
||||||
sign = -1
|
sign = -1
|
||||||
return (
|
|
||||||
float(degrees) + old_div(float(minutes), 60) +
|
return (degrees + minutes / 60 + seconds / 3600) * sign
|
||||||
old_div(float(seconds), 3600)
|
|
||||||
) * sign
|
|
||||||
|
|
||||||
|
|
||||||
def dms_string(decimal, type='latitude'):
|
def dms_string(decimal, type='latitude'):
|
||||||
|
|
|
@ -5,7 +5,6 @@ Media :class:`Media` class to get file metadata
|
||||||
import logging
|
import logging
|
||||||
import mimetypes
|
import mimetypes
|
||||||
import os
|
import os
|
||||||
import six
|
|
||||||
|
|
||||||
# load modules
|
# load modules
|
||||||
from dateutil.parser import parse
|
from dateutil.parser import parse
|
||||||
|
|
|
@ -5,4 +5,5 @@ Send2Trash==1.3.0
|
||||||
configparser==3.5.0
|
configparser==3.5.0
|
||||||
tabulate==0.7.7
|
tabulate==0.7.7
|
||||||
Pillow==8.0
|
Pillow==8.0
|
||||||
|
pyheif_pillow_opener=0.1
|
||||||
six==1.9
|
six==1.9
|
||||||
|
|
Loading…
Reference in New Issue