Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
300 views
in Technique[技术] by (71.8m points)

here api - Traffic flow data XML tags meaning

I am looking for real-time traffic flow data. I found the traffic API is what I need: Click here but I really don't know what the meanings are for those XML tags, such as <FI> <TMC PC="11531" DE="Linden" QD="-" LE="0.8535"/> <CF CN="0.86" FF="69.59" JF="0.17" SP="70.13" TY="TR"/> </FI> I found the meaning of TMC DE PC But I cannot find CF CN FF JF SP TY.

Anyone know these abbreviations ?

Many thanks,

Chuansheng

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I agree that it's quite hidden, but you can find the explanation for xsd schemas under the meta resources. You are most likely interested in the following REST call:

http://traffic.cit.api.here.com/traffic/6.0/xsd/flow.xsd?app_id=YOUR_APP_ID&app_code=YOUR_APP_CODE

Here is part of the output explaining what FF attribute stands for:

...
<xs:attribute name="FF" type="speed" use="required">
   <xs:annotation>
     <xs:documentation>The free flow speed on this stretch of road.</xs:documentation>
   </xs:annotation>
</xs:attribute>
...

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...