def post(self, **kwargs): """ Copy data over from raw files into day folders Assume path is relative to current working directory. """ path = request.url[len(request.url_root):] return base.build(parms)
def post(self, **kwargs): """ Sum all the days in the month Create some stats on the totals """ path = request.url[len(request.url_root):] return base.build(parms)
def post(self, **kwargs): """ Extract all the data for all latitudes. This then allows us to get the data for any lat/lat quickly """ path = request.url[len(request.url_root):] return base.build(parms)
def build(key): """ build key or: pick a pear ask pear to help """ return base.build(key)
def post(self, **kwargs): """ Extract all the data for a given latitude. This then allows us to get the data for any lat/lon quickly. Alternatively, use build_space and do everythng in one. """ path = request.url[len(request.url_root):] return base.build(parms)
def post(self, **kwargs): """ Create monthly totals for each month of data """ path = request.url[len(request.url_root):] return base.build(parms)
""" Build a path """ import sys from karmapi import base if __name__ == '__main__': base.build(sys.argv[1])