• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!

Conversion Challenge

Collapse
X
  •  
  • Filter
  • Time
  • Show
Clear All
new posts

    #11
    I assume 'headway' means: a measurement of the distance or time between vehicles in a transit system.

    Seems to be a solution for Poisson for sure, can I be bothered understanding what the coefficients are..
    Last edited by scooterscot; 27 April 2018, 13:59.
    "Never argue with stupid people, they will drag you down to their level and beat you with experience". Mark Twain

    Comment


      #12
      Originally posted by WTFH View Post
      Are the 3 classes actually 3 lanes on the road, or 3 types of vehicle?
      Three classes of vehicle being small (bikes), medium (cars) and large (trucks).

      Comment


        #13
        Originally posted by NotAllThere View Post
        Do you have any more data points?
        Yup lots more courtesy of wireshark but will it help? Another example below which produces a headway figure of 21.36. Whether the headway is time or space I'm not sure but some bright person around here should be able to suss it?

        Code:
            <Message Type="Data">
              <Body Type="IntegratedData"
                    IntervalTime="300"
                    DataNumber="765"
                    Utc="1524800400"
                    MilliSeconds="19">
                <Zone ZoneId="1"
                      Occupancy="1"
                      Confidence="8"
                      Length="32"
                      HeadWay="376"
                      Density="3">
                  <Class ClassNr="1"
                         NumVeh="6"
                         Speed="62"
                         GapTime="236" />
                  <Class ClassNr="2"
                         NumVeh="7"
                         Speed="65"
                         GapTime="218" />
                  <Class ClassNr="3"
                         NumVeh="1"
                         Speed="60"
                         GapTime="130" />
                </Zone>
              </Body>
            </Message>

        Comment


          #14
          Originally posted by tazdevil View Post
          Three classes of vehicle being small (bikes), medium (cars) and large (trucks).
          Then some of your data (or the data units) don't make sense.


          Code:
              <Message Type="Data">
                <Body Type="IntegratedData"
                      IntervalTime="300"          - seconds
                      DataNumber="759"
                      Utc="1524800100"           - seconds since 1/1/1970
                      MilliSeconds="27">
                  <Zone ZoneId="1"
                        Occupancy="0"
                        Confidence="8"
                        Length="27"
                        HeadWay="678"
                        Density="1">
                    <Class ClassNr="1"
                           NumVeh="5"
                           Speed="63"
                           GapTime="400" />
                    <Class ClassNr="2"
                           NumVeh="2"
                           Speed="66"
                           GapTime="408" />
                  </Zone>
                </Body>
              </Message>
          If the data is 300 seconds worth, then the GapTime cannot be 400 seconds.

          If the gap time is 400 milliseconds, that means the vehicles are approx 7 metres apart at 63km/h. Not 7m from rear bumper of one to front of the next, but from front of one to front of the next. For a 6m long truck, that would mean there's 1m between it and the next one.
          That's kinda beyond dangerously close.
          …Maybe we ain’t that young anymore

          Comment


            #15
            OK, can you find a piece of data where you have the headway and there's only 1 class of vehicle?
            …Maybe we ain’t that young anymore

            Comment


              #16
              Sorted, see initial post

              Comment

              Working...
              X