Skip to content
Snippets Groups Projects
Unverified Commit 33e3bd4a authored by David Hoese's avatar David Hoese
Browse files

Clean up style and rename netcdf module

parent c1f5d51e
No related branches found
No related tags found
No related merge requests found
File moved
......@@ -9,7 +9,7 @@ import time
import sys
import requests
from metobscommon import influxdb
from aosstower.l00.parser import read_frames
from aosstower.level_00.parser import read_frames
LOG = logging.getLogger(__name__)
# map station name to InfluxDB tags
......
File moved
File moved
File moved
This diff is collapsed.
......@@ -12,7 +12,7 @@ class ParserV0Tests(unittest.TestCase):
"WDIR05305 143.380000\n")
def _cut(self):
from aosstower.l00.parser import ParserV0
from aosstower.level_00.parser import ParserV0
return ParserV0()
def test_maybe_mine(self):
......@@ -38,7 +38,7 @@ class ParserV1V2Tests(unittest.TestCase):
"22.669,10.417,145.2,22.665,163.94,0,0,30.015\n")
def _cut(self):
from aosstower.l00.parser import ParserV1V2
from aosstower.level_00.parser import ParserV1V2
return ParserV1V2()
def test_maybe_mine(self):
......
......@@ -4,7 +4,7 @@ from datetime import datetime
import requests
from metobs.data import wind_vector_components
from aosstower.l00.parser import read_frames
from aosstower.level_00.parser import read_frames
LOG = logging.getLogger(__name__)
......
......@@ -5,8 +5,8 @@ import logging
from datetime import datetime
from metobscommon.model import RrdModel, ModelError
from aosstower.l00.parser import read_records
from aosstower.l00.rrd import initialize_rrd
from aosstower.level_00.parser import read_records
from aosstower.level_00.rrd import initialize_rrd
LOG = logging
......
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