Exemplo n.º 1
0
    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)
Exemplo n.º 2
0
    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)
Exemplo n.º 3
0
    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)
Exemplo n.º 4
0
    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)
Exemplo n.º 5
0
    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)
Exemplo n.º 6
0
def build(key):
    """  build key

    or:
        pick a pear
           ask pear to help
    """
    return base.build(key)
Exemplo n.º 7
0
def build(key):
    """  build key

    or:
        pick a pear
           ask pear to help
    """
    return base.build(key)
Exemplo n.º 8
0
    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)
Exemplo n.º 9
0
    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)
Exemplo n.º 10
0
    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)
Exemplo n.º 11
0
 def post(self, **kwargs):
     """ Create monthly totals for each month of data
 """
     path = request.url[len(request.url_root):]
     return base.build(parms)
Exemplo n.º 12
0
"""
Build a path
"""
import sys
from karmapi import base

if __name__ == '__main__':

    base.build(sys.argv[1])
Exemplo n.º 13
0
 def post(self, **kwargs):
     """ Create monthly totals for each month of data
 """
     path = request.url[len(request.url_root):]
     return base.build(parms)