Very experimental radar processing

This commit is contained in:
April
2022-10-16 00:41:11 -07:00
parent 0285fd3679
commit be61b145da
6 changed files with 466 additions and 0 deletions

7
Util/Util.py Normal file
View File

@ -0,0 +1,7 @@
import re
def sort_alphanumeric(data):
""" Sorts a list alphanumerically """
convert = lambda text: int(text) if text.isdigit() else text.lower()
alphanum_key = lambda key: [convert(c) for c in re.split('([0.9]+)', key)]
return(sorted(data, key=alphanum_key))

0
Util/__init__.py Normal file
View File