Create training dataset from regobs data


In [ ]:
import pandas as pd
import numpy as np
import json
from flatten_json import flatten
from pprint import pprint
# make sure the aps module is in the pythonpath
import sys
from pathlib import Path

APS_dir = str(Path.cwd().parents[1])
if APS_dir not in sys.path:
    sys.path.append(APS_dir)
import aps.aps_io.get_forecasts as gf