NCAR / NEON-visualization

Repository to include all neon-related visualization scripts.
GNU Affero General Public License v3.0
13 stars 8 forks source link

Notebook minor changes #9

Closed negin513 closed 2 years ago

negin513 commented 2 years ago

Some changes needed for the final release including:

  1. Before, download_eval function, downloaded all evaluation files for a neon site. Now we have the option to download for either one year or all available evaluation files for a neon site by giving the argument.

The following will download evaluation files for a neon site for the specified year.

download_eval_files (neon_site, eval_dir, year) 

The following options can be used to download all available eval files for one site.

download_eval_files(neon_site, eval_dir, "all")

or

download_eval_files(neon_site, eval_dir)
  1. We have added the optional section to save the data as .csv file and load it back for future use.

  2. We modified the diurnal cycle code to use local hour (local time) so the local noon would be in the middle of the 24 hour plot.

  3. Some clean ups and modifications.

danicalombardozzi commented 2 years ago

These changes look great Negin!