bug fix power plot (expecting serialized value)
This commit is contained in:
@@ -10,6 +10,8 @@ def serialize_list(value,token=','):
|
||||
def deserialize_list(value,token=','):
|
||||
if isinstance(value, list):
|
||||
return value
|
||||
elif isinstance(value, np.ndarray):
|
||||
return value
|
||||
return value.split(token)
|
||||
|
||||
def geo_distance(lat1,lon1,lat2,lon2):
|
||||
|
||||
Reference in New Issue
Block a user