close Warning: Can't synchronize with repository "(default)" ("(default)" is not readable or not a Git repository.). Look in the Trac log for more information.

Changes between Version 6 and Version 7 of Internal/StudentPages/XiruoLiu


Ignore:
Timestamp:
Feb 21, 2012, 11:36:19 PM (12 years ago)
Author:
sissiok
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Internal/StudentPages/XiruoLiu

    v6 v7  
    13134. compute destination AS (prob: how to match AS to grid in probability matrix)[[BR]]
    1414
     15----
     16table TAXIDATA has all data loaded, table TAXI1 loads only the first data file[[BR]]
     17
     18table contents are below[[BR]]
     19CREATE TABLE TAXIDATA[[BR]]
     20([[BR]]   
     21ID NUMBER(10) CONSTRAINT TAXIDATA_ID NOT NULL, [[BR]]
     22TAXIID NUMBER(7), [[BR]]
     23LONGITUDE NUMBER(9,6),[[BR]]
     24LATITUDE NUMBER(8,6), [[BR]]
     25SPEED NUMBER(3), [[BR]]
     26ANGLE NUMBER(3), [[BR]]
     27DATETIME TIMESTAMP(6),[[BR]]
     28STATUS NUMBER(1), [[BR]]
     29EXTENDSTATUS NUMBER(1),[[BR]]
     30REVISED NUMBER(1), [[BR]]
     31PRIMARY KEY(ID) )[[BR]]
     32TABLESPACE USERS;[[BR]]
     33----
     34
     35
     36