Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Understanding of the existing code and model of TULIP developed by Faran
  2. Disintegration of  Code from GUI.
    1. A separate command line tool is needed so that it can run this from cronjob for larger set of data
    2. Structuring of code so that classes can be found according to functionalities they diliver.
      1. Current Structure of code is :
      2. Code Block
        `-- tulip
            |-- core
            |   |-- AutomateTest.java
            |   |-- GetPingDataPL-08-27-2008
            |   |-- GetPingDataPL.java
            |   |-- Locate.java
            |   `-- PhysicalDistance.java
            `-- util
                |-- AnalyzeLog.java
                |-- Conversions.java
                |-- JScience.java.bak
                |-- LatLngToXYZ.java
                |-- LatLontoXY.java
                |-- Normalize.java
                |-- PingParser.java
                |-- Point.java
                |-- SAXParserTulip.java
                |-- Sites.java
                |-- XYtoLatLon.java
                |-- sites.xml
                `-- test.java.bak
        
      3. Code Block
        
        To solve the compilation problems and running of large number of java files, the code was made complaint to 'ANT' package management tool
                       1. Single command explained here is used to compile the entire code.
                       2. Binaries files are generarted for every compile in a serparte folder. This helps us to upload code on SVN
        
      4. Code Block
        
        Docuement the code\[here\].