Skip to content
Snippets Groups Projects
Commit b7893bf6 authored by Shavers, Nicholas H's avatar Shavers, Nicholas H
Browse files

linting

parent 2fbc6693
No related branches found
No related tags found
1 merge request!378Covjson mvp
...@@ -14,9 +14,9 @@ class CovJSONFactory(TimeseriesFactory): ...@@ -14,9 +14,9 @@ class CovJSONFactory(TimeseriesFactory):
def __init__( def __init__(
self, self,
time_format="iso8601", # could be "iso8601" or "numeric" time_format="iso8601", # could be "iso8601" or "numeric"
time_axis_mode="expanded", # could be "expanded" or "start-stop-num" time_axis_mode="expanded", # could be "expanded" or "start-stop-num"
**kwargs **kwargs,
): ):
""" """
Parameters Parameters
...@@ -307,16 +307,15 @@ class CovJSONFactory(TimeseriesFactory): ...@@ -307,16 +307,15 @@ class CovJSONFactory(TimeseriesFactory):
} }
# Optional: Possibly unsupported # Optional: Possibly unsupported
optional_fields = { optional_fields = {
"network": getattr(stats, "network", None), "network": getattr(stats, "network", None),
"location": getattr(stats, "location", None), "location": getattr(stats, "location", None),
"comments": getattr(stats, "filter_comments", None), "comments": getattr(stats, "filter_comments", None),
"declination_base":getattr(stats, "declincation_base", None), "declination_base": getattr(stats, "declincation_base", None),
"terms_of_use": getattr(stats, "conditions_of_use", None) "terms_of_use": getattr(stats, "conditions_of_use", None),
} }
for key, value in optional_fields.items(): for key, value in optional_fields.items():
if value is not None: if value is not None:
coverage["geomag:info"][key] = value coverage["geomag:info"][key] = value
covjson_str = json.dumps(coverage, indent=2) covjson_str = json.dumps(coverage, indent=2)
fh.write(covjson_str.encode("utf-8")) fh.write(covjson_str.encode("utf-8"))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment