GithubHelp home page GithubHelp logo

monitor's People

Contributors

bartnijssen avatar

Watchers

 avatar  avatar

monitor's Issues

Implement VIC 5

This calls for changes in the current Run VIC step. VIC 5 can be implemented once the sub-daily met generation step has been added.

Move historic CDFs to single netCDF file

Historic CDFs are currently written (once) to one ascii file per variable per grid cell per day of year (365). A single file is read in per variable for grid cell every day in the real-time system. The Weibull plotting positions are also calculated each day. It should be faster to write these values (once) to a separate netCDF file for each day of year (365) so that only one file needs to be read in in real-time everyday when calculating current percentiles.

This would look something like:

netcdf cdf.mm-dd {
dimensions:
        lon = 245;
        lat = 195;
        rank = 150;
variables:
	double lon(lon) ;
		lon:long_name = "longitude" ;
		lon:units = "degrees_east" ;
		lon:standard_name = "longitude" ;
	double lat(lat) ;
		lat:long_name = "latitude" ;
		lat:units = "degrees_north" ;
		lat:standard_name = "latitude" ;
	int rank(rank) ;
		rank:long_name = "rank" ;
                rank:description = "rank of variable relative to its own time series" ;
		rank:units = " " ;
	double weibull(rank) ;
		weibull:long_name = "weibull_plotting_position" ;
                weibull:description = "calculated as rank/(n+1)"
		weibull:units = "percent" ;
	double swe(lat, lon, rank) ;
		swe:long_name = "snow water equivalent" ;
		swe:units = "mm" ;
	double sm(lat, lon, rank) ;
		swe:long_name = "soil moisture" ;
		swe:units = "mm" ;
	double tm(lat, lon, rank) ;
		swe:long_name = "total moisture" ;
		swe:units = "mm" ;

Generate sub-daily forcings for VIC 5

A step needs to be added to the workflow: Generate sub-daily forcings for VIC 5. At first, we will simply use the sub-daily forcing generator embedded in VIC 4.2.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.