Changes between Version 4 and Version 5 of WikiStart


Ignore:
Timestamp:
Sep 3, 2014 9:55:41 AM (10 years ago)
Author:
AndyVick
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v4 v5  
    22== (Green House Observations of the Startosphere and Troposphere) ==
    33
     4== SVN Usage ==
     5===Typical use case===
     6None of this is compulsory, it's just a fairly complete example of how things work;
     7
     8  1. Check out the software to a local working directory
     9
     10{{{
     11svn co https://forge.roe.ac.uk/svn/GHOST ./GHOST-temp
     12}}}
     13
     14  2. Add a directory
     15
     16{{{
     17cd GHOST-temp/tests/redis      (now in GHOST-temp/tests/redis directory)
     18mkdir DataStore02
     19cd DataStore02       (now in GHOST-temp/tests/redis/DataStore02 directory)
     20}}}
     21
     22  3. Add some files
     23{{{
     24echo "A test of netCDF storage for GHSOT array data" >> readme.txt
     25}}}
     26
     27  4. Now tell SVN about the new directories and files
     28{{{
     29cd .. (now in GHOST-temp/tests/redis directory)
     30svn add DataStore02
     31}}}
     32
     33  5. Now commit your changes (files get written to SVN here)
     34{{{
     35cd ../..         (now in GHOST-temp directory)
     36svn commit
     37}}}
     38
    439
    540== Quick Links ==
     41=== Third party software ===
     42  * Redis [http://redis.io/]
     43  * Redis-py [https://github.com/andymccurdy/redis-py]
     44  * netCDF [http://www.unidata.ucar.edu/software/netcdf/]
     45  * IWG-1 [https://www.eol.ucar.edu/raf/Software/iwgadts/IWG1_Def.html]
     46
    647=== GHOST ===
    748  * [https://livelink.roe.ac.uk/Livelink/livelink.exe/Open/8853135 GHOST Livelink project]