commit
2fff3a6d45
|
@ -1,6 +1,5 @@
|
||||||
[settings]
|
[settings]
|
||||||
skip = workbench.py
|
skip = workbench.py
|
||||||
not_skip = __init__.py
|
|
||||||
known_third_party =
|
known_third_party =
|
||||||
antlr4,
|
antlr4,
|
||||||
dateutil,
|
dateutil,
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -51,7 +51,7 @@ setup(
|
||||||
'pytz',
|
'pytz',
|
||||||
'requests',
|
'requests',
|
||||||
'simplejson',
|
'simplejson',
|
||||||
'six',
|
'six>=1.13.0',
|
||||||
'stix2-patterns',
|
'stix2-patterns',
|
||||||
],
|
],
|
||||||
project_urls={
|
project_urls={
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
"""Python STIX2 Environment API."""
|
"""Python STIX2 Environment API."""
|
||||||
|
|
||||||
import copy
|
import copy
|
||||||
import logging
|
import logging
|
||||||
import time
|
import time
|
||||||
|
@ -463,7 +462,7 @@ def partial_location_distance(lat1, long1, lat2, long2, threshold):
|
||||||
float: Number between 0.0 and 1.0 depending on match.
|
float: Number between 0.0 and 1.0 depending on match.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
from haversine import haversine, Unit
|
from haversine import Unit, haversine
|
||||||
distance = haversine((lat1, long1), (lat2, long2), unit=Unit.KILOMETERS)
|
distance = haversine((lat1, long1), (lat2, long2), unit=Unit.KILOMETERS)
|
||||||
result = 1 - (distance / threshold)
|
result = 1 - (distance / threshold)
|
||||||
logger.debug(
|
logger.debug(
|
||||||
|
|
4
tox.ini
4
tox.ini
|
@ -30,8 +30,8 @@ max-line-length = 160
|
||||||
[testenv:isort-check]
|
[testenv:isort-check]
|
||||||
deps = isort
|
deps = isort
|
||||||
commands =
|
commands =
|
||||||
isort -rc stix2 examples -df
|
isort stix2 examples --df
|
||||||
isort -rc stix2 examples -c
|
isort stix2 examples -c
|
||||||
|
|
||||||
[testenv:packaging]
|
[testenv:packaging]
|
||||||
deps =
|
deps =
|
||||||
|
|
Loading…
Reference in New Issue