SuperMap.Analyst.TrafficAnalyst.xml 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>SuperMap.Analyst.TrafficAnalyst</name>
  5. </assembly>
  6. <members>
  7. <member name="T:SuperMap.Analyst.TrafficAnalyst.FareFieldInfo">
  8. <summary>
  9. This class is used for getting and setting the fields which contains the bus fare information. Using this class, you can get or set the field contains the type of the bus fare, the start fare, the range of the start fare and the step of the fare.
  10. </summary>
  11. </member>
  12. <member name="M:SuperMap.Analyst.TrafficAnalyst.FareFieldInfo.#ctor">
  13. <summary>
  14. The default constructor, initializes a new instance of the FareFieldInfo class.
  15. </summary>
  16. </member>
  17. <member name="M:SuperMap.Analyst.TrafficAnalyst.FareFieldInfo.#ctor(SuperMap.Analyst.TrafficAnalyst.FareFieldInfo)">
  18. <summary>
  19. Initializes a new instance of the FareFieldInfo class which is a copy of the specified Feature3D object.
  20. </summary>
  21. <param name="fareFieldInfo">The specified FareFieldInfos object.</param>
  22. </member>
  23. <member name="P:SuperMap.Analyst.TrafficAnalyst.FareFieldInfo.FareTypeField">
  24. <summary>
  25. Gets or sets the field used to represent the type of the bus fare. 0 indicates Single, 1 indicates Distance, and 2 indicates Stops.
  26. </summary>
  27. <value>The default is a null string.</value>
  28. </member>
  29. <member name="P:SuperMap.Analyst.TrafficAnalyst.FareFieldInfo.StartFareRangeField">
  30. <summary>
  31. Gets or sets the field used to represent the range of the start fare.
  32. </summary>
  33. <value>The default is a null string.</value>
  34. </member>
  35. <member name="P:SuperMap.Analyst.TrafficAnalyst.FareFieldInfo.StartFareField">
  36. <summary>
  37. Gets or sets the field used to represent the start fare.
  38. </summary>
  39. <value>The default is a null string.</value>
  40. </member>
  41. <member name="P:SuperMap.Analyst.TrafficAnalyst.FareFieldInfo.FareStepField">
  42. <summary>
  43. Gets or sets the FareStepField. FareStepField is the price to add for adding each <see cref="P:SuperMap.Analyst.TrafficAnalyst.FareFieldInfo.FareStepRangeField">FareStepRangeField</see>.
  44. </summary>
  45. <value>The default is a null string.</value>
  46. </member>
  47. <member name="P:SuperMap.Analyst.TrafficAnalyst.FareFieldInfo.FareStepRangeField">
  48. <summary>
  49. Gets or sets the fare step range field.
  50. </summary>
  51. <value>The default is a null string.</value>
  52. </member>
  53. <member name="T:SuperMap.Analyst.TrafficAnalyst.FareInfo">
  54. <summary>
  55. The FareInfo class. This class is used to get the relative information about the bus fare, including the type of the bus fare, the start fare, the range of the start fare, and the step of the fare.
  56. </summary>
  57. </member>
  58. <member name="P:SuperMap.Analyst.TrafficAnalyst.FareInfo.Type">
  59. <summary>
  60. Gets the type of the bus fare.
  61. </summary>
  62. </member>
  63. <member name="P:SuperMap.Analyst.TrafficAnalyst.FareInfo.StartFareRange">
  64. <summary>
  65. Gets the range of the start fare.
  66. </summary>
  67. </member>
  68. <member name="P:SuperMap.Analyst.TrafficAnalyst.FareInfo.StartFare">
  69. <summary>
  70. Gets the start fare.
  71. </summary>
  72. </member>
  73. <member name="P:SuperMap.Analyst.TrafficAnalyst.FareInfo.FareStep">
  74. <summary>
  75. Gets the step of the fare.The step of the fare is the fare added for every stop or a unit distance.
  76. </summary>
  77. </member>
  78. <member name="P:SuperMap.Analyst.TrafficAnalyst.FareInfo.FareStepRange">
  79. <summary>
  80. Gets the fare step range.
  81. </summary>
  82. </member>
  83. <member name="T:SuperMap.Analyst.TrafficAnalyst.TransferLine">
  84. <summary>
  85. The transfer line class. This class is used to the get-on stop, get-down stop and the line name.
  86. </summary>
  87. </member>
  88. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferLine.#ctor(System.Int64,System.Int32,System.Int32)">
  89. <summary>
  90. Initialize a new TransferLine object with the parameters specified.
  91. </summary>
  92. <param name="lineID">The line ID of the transfer line.</param>
  93. <param name="startIndex">The get-on stop ID of the transfer line.</param>
  94. <param name="endIndex">The get-off stop ID of the transfer line.</param>
  95. </member>
  96. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferLine.OnName">
  97. <summary>
  98. Gets the get-on name of the transfer line.
  99. </summary>
  100. </member>
  101. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferLine.DownName">
  102. <summary>
  103. Gets the get-off name of the transfer line.
  104. </summary>
  105. </member>
  106. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferLine.LineName">
  107. <summary>
  108. Gets the line name of the transfer line.
  109. </summary>
  110. </member>
  111. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferLine.LineID">
  112. <summary>
  113. Gets the line ID of the transfer line.
  114. </summary>
  115. </member>
  116. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferLine.StartIndex">
  117. <summary>
  118. Gets the index of the get-off stop of the transfer line. The number counts from 0.
  119. </summary>
  120. </member>
  121. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferLine.EndIndex">
  122. <summary>
  123. Gets the index of the get-on stop of the transfer line. The number counts from 0.
  124. </summary>
  125. </member>
  126. <member name="T:SuperMap.Analyst.TrafficAnalyst.TransferLines">
  127. <summary>
  128. The transfer lines class. This class is used to get the transfer line and the count.
  129. </summary>
  130. </member>
  131. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferLines.GetEnumerator">
  132. <summary>
  133. Returns an enumerator that can iterate through the collection.
  134. </summary>
  135. <returns>An IEnumerator object used to iterate through a collection.</returns>
  136. </member>
  137. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferLines.Count">
  138. <summary>
  139. Gets number of the transfer lines.
  140. </summary>
  141. </member>
  142. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferLines.Item(System.Int32)">
  143. <summary>
  144. Gets the transfer line of the specified index.
  145. </summary>
  146. <param name="index">The specified index, which begins with 0.</param>
  147. <returns>Gets the transfer line of the specified index.</returns>
  148. </member>
  149. <member name="T:SuperMap.Analyst.TrafficAnalyst.TransferPreference">
  150. <summary>
  151. This enumeration defines the transfer preference constants.
  152. </summary>
  153. </member>
  154. <member name="F:SuperMap.Analyst.TrafficAnalyst.TransferPreference.None">
  155. <summary>
  156. None.
  157. </summary>
  158. </member>
  159. <member name="F:SuperMap.Analyst.TrafficAnalyst.TransferPreference.Bus">
  160. <summary>
  161. Bus. If you set this, bus will be first considered during exchange. But the result way is composed by multiple parameters. So bus may not be contained.
  162. </summary>
  163. </member>
  164. <member name="F:SuperMap.Analyst.TrafficAnalyst.TransferPreference.Subway">
  165. <summary>
  166. Subway. If you set this, subway will be first considered during exchange. But the result way is composed by multiple parameters. So subway may not be contained.
  167. </summary>
  168. </member>
  169. <member name="F:SuperMap.Analyst.TrafficAnalyst.TransferPreference.NoSubway">
  170. <summary>
  171. No subway. If you set this, the subway won't be contained in the result.
  172. </summary>
  173. </member>
  174. <member name="T:SuperMap.Analyst.TrafficAnalyst.TransferSearchMode">
  175. <summary>
  176. The enumeration defines the search mode constants during transfer.
  177. </summary>
  178. </member>
  179. <member name="F:SuperMap.Analyst.TrafficAnalyst.TransferSearchMode.ID">
  180. <summary>
  181. ID mode. Use the start stop ID and the end stop ID as the start and the end of the interchange.
  182. </summary>
  183. </member>
  184. <member name="F:SuperMap.Analyst.TrafficAnalyst.TransferSearchMode.Point">
  185. <summary>
  186. Point mode. Use any two points (<see cref="T:SuperMap.Data.Point2D">Point2D</see>) as the start and the end of the interchange.
  187. </summary>
  188. </member>
  189. <member name="T:SuperMap.Analyst.TrafficAnalyst.TransferAnalyst">
  190. <summary>
  191. This class is used to make interchange analysis, query bus line, query bus stop, etc.
  192. </summary>
  193. </member>
  194. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalyst.#ctor">
  195. <summary>
  196. Constructs a new TransferAnalyst object.
  197. </summary>
  198. </member>
  199. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalyst.Load(SuperMap.Analyst.TrafficAnalyst.LineSetting,SuperMap.Analyst.TrafficAnalyst.StopSetting,SuperMap.Analyst.TrafficAnalyst.RelationSetting)">
  200. <summary>
  201. Loads the transfer data when making transfer analyst. Note that this method doesn't support multi-thread processing.
  202. </summary>
  203. <param name="lineSetting">The specified lineSetting object.</param>
  204. <param name="stopSetting">The specified stopSetting object.</param>
  205. <param name="relationSetting">The specified relationSetting object.</param>
  206. <returns>Returns true if successful; otherwise, false.</returns>
  207. </member>
  208. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalyst.Check(SuperMap.Analyst.TrafficAnalyst.TransferAnalystSetting)">
  209. <summary>
  210. Check the trasfer data based on TransferAnalystSetting. The check result will be written to the attribute table of the source data. Note that this method doesn't support multi-threading.
  211. </summary>
  212. <param name="transferAnalystSetting">The specified TrafficTransferAnalystSetting object.</param>
  213. <returns>A bool value that represents whether it has error. true, if there is no error; otherwise, false.</returns>
  214. </member>
  215. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalyst.Load(SuperMap.Analyst.TrafficAnalyst.TransferAnalystSetting)">
  216. <summary>
  217. Loads the transfer data when making transfer analyst. Note that this method doesn't support multi-thread processing.
  218. </summary>
  219. <param name="transferAnalystSetting">The specified transferAnalystSetting object.</param>
  220. <returns>Returns true if successful; otherwise, false.</returns>
  221. </member>
  222. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalyst.FindTransferLines(SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter)">
  223. <summary>
  224. The transfer lines. Return the transfer analyst result.
  225. </summary>
  226. <param name="parameter">The specified TrafficTransferAnalystParameter object.</param>
  227. <returns>The TrafficTransferAnalystResult class.</returns>
  228. </member>
  229. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalyst.FindTransferSolutions(SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter)">
  230. <summary>
  231. Make transfer analsyst based on the specified parameters. Return the transfer solutions.
  232. </summary>
  233. <param name="parameter">The specified TrafficTransferAnalystParameter object.</param>
  234. <returns>The transfer solutions.</returns>
  235. </member>
  236. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalyst.GetDetailInfo(System.Int64,System.Int64,SuperMap.Analyst.TrafficAnalyst.TransferLine[])">
  237. <summary>
  238. Gets the complete transfer guide based on the start stop ID, the end stop ID and the items.
  239. </summary>
  240. <param name="startID">The start stop ID.</param>
  241. <param name="endID">The end stop ID.</param>
  242. <param name="transferLines">The transfer lines.</param>
  243. <returns>The complete transfer guide.</returns>
  244. </member>
  245. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalyst.GetDetailInfo(SuperMap.Data.Point2D,SuperMap.Data.Point2D,SuperMap.Analyst.TrafficAnalyst.TransferLine[])">
  246. <summary>
  247. Gets the complete transfer guide based on the start, the end and the items.
  248. </summary>
  249. <param name="startPoint">The specified start.</param>
  250. <param name="endPoint">The specified end.</param>
  251. <param name="transferLines">The transfer lines.</param>
  252. <returns>The complete transfer guide.</returns>
  253. </member>
  254. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalyst.FindLinesByStop(System.Int64)">
  255. <summary>
  256. Finds the lines pass by the specified stop ID.
  257. </summary>
  258. <param name="stopID">The stop ID.</param>
  259. <returns>The collection of bus lines that cross this stop.</returns>
  260. </member>
  261. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalyst.FindStopsByLine(System.Int64)">
  262. <summary>
  263. Finds the stops of the specified line ID.
  264. </summary>
  265. <param name="lineID">The line ID.</param>
  266. <returns>The collection of bus lines that cross this stop.</returns>
  267. </member>
  268. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalyst.Dispose">
  269. <summary>
  270. Releases the resources occupied by TransferAnalyst.
  271. </summary>
  272. </member>
  273. <member name="T:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter">
  274. <summary>
  275. This class is used to set the transfer analyst parameters, including start stop, end stop, solution count, walking ratio, tactic, preference, evade, etc.
  276. </summary>
  277. </member>
  278. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.#ctor">
  279. <summary>
  280. Initializes a new instance of the TrafficTransferAnalystParameter class.
  281. </summary>
  282. </member>
  283. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.#ctor(SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter)">
  284. <summary>
  285. Initializes a new instance of the TrafficTransferAnalystParameter class which is identical with the specified TrafficTransferAnalystParameter object.
  286. </summary>
  287. <param name="transferAnalystParameter">The specified TrafficTransferAnalystParameter object.</param>
  288. </member>
  289. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.Dispose">
  290. <summary>
  291. Releases the resources occupied by TransferAnalystParameter.
  292. </summary>
  293. </member>
  294. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.StartStopID">
  295. <summary>
  296. Gets or sets the ID of the start stop.
  297. </summary>
  298. <value>The default value is -1.</value>
  299. </member>
  300. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.EndStopID">
  301. <summary>
  302. Gets or sets the ID of the end stop.
  303. </summary>
  304. <value>The default value is -1.</value>
  305. </member>
  306. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.StartPosition">
  307. <summary>
  308. Gets or sets the start position.
  309. </summary>
  310. <value>The default is an empty <see cref="T:SuperMap.Data.Point2D">Point2D</see> object.</value>
  311. </member>
  312. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.EndPosition">
  313. <summary>
  314. Gets or sets the end position.
  315. </summary>
  316. <value>The default is an empty <see cref="T:SuperMap.Data.Point2D">Point2D</see> object.</value>
  317. </member>
  318. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.SolutionCount">
  319. <summary>
  320. Gets or sets the maximum count of solutions to return in the transfer analysis. The maximum value is 20.
  321. </summary>
  322. <value>The default value is 5.</value>
  323. </member>
  324. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.WalkingRatio">
  325. <summary>
  326. Gets or sets the ratio of walking to taking bus.
  327. </summary>
  328. <value>The default value is 10.</value>
  329. </member>
  330. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.Tactic">
  331. <summary>
  332. Gets or sets the transfer tactic type.
  333. </summary>
  334. <value>The default value is <b>TransferTactic.LessTransfer。</b>.</value>
  335. </member>
  336. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.Preference">
  337. <summary>
  338. Gets or sets transfer preference.
  339. </summary>
  340. <value>The default value is <b>TransferPreference.None</b>,there is no preference.</value>
  341. </member>
  342. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.SearchMode">
  343. <summary>
  344. Gets or sets the search mode of the transfer.
  345. </summary>
  346. <value>The default value is ID mode,there is <b>TransferSearchMode.ID</b>.</value>
  347. </member>
  348. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.EvadeLines">
  349. <summary>
  350. Gets or sets the line ID collection of the evade lines.
  351. </summary>
  352. </member>
  353. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.EvadeStops">
  354. <summary>
  355. Gets or sets the evade stop ID collection.
  356. </summary>
  357. </member>
  358. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.PriorLines">
  359. <summary>
  360. Gets or sets the prior line ID collection.
  361. </summary>
  362. </member>
  363. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.PriorStops">
  364. <summary>
  365. Gets or sets the prior stop ID collection.
  366. </summary>
  367. </member>
  368. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystParameter.TravelTime">
  369. <summary>
  370. Get or set travel time for bus transfer analysis.
  371. </summary>
  372. </member>
  373. <member name="T:SuperMap.Analyst.TrafficAnalyst.TransferAnalystResult">
  374. <summary>
  375. The TransferAnalystResult class is used to get the TransferGuides.
  376. </summary>
  377. </member>
  378. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalystResult.Dispose">
  379. <summary>
  380. Releases the resources occupied by TransferAnalystResult.
  381. </summary>
  382. </member>
  383. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystResult.TransferGuides">
  384. <summary>
  385. Gets the array of the TransferGuide object.
  386. </summary>
  387. </member>
  388. <member name="T:SuperMap.Analyst.TrafficAnalyst.TransferAnalystSetting">
  389. <summary>
  390. The settings for the parameter information in the traffic transfer analysis, including will determine the analysis result directly. It can set the information of the lines, the stops, the snapping tolerance, the merging tolerance and the walking tolerance.
  391. </summary>
  392. </member>
  393. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalystSetting.#ctor">
  394. <summary>
  395. Constructs a new TransferAnalystSetting object.
  396. </summary>
  397. </member>
  398. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferAnalystSetting.#ctor(SuperMap.Analyst.TrafficAnalyst.TransferAnalystSetting)">
  399. <summary>
  400. Initializes a new instance according to the specified TransferAnalystSetting object.
  401. </summary>
  402. <param name="transferAnalystSetting">The specified TrafficTransferAnalystSetting object.</param>
  403. </member>
  404. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystSetting.LineSetting">
  405. <summary>
  406. Gets or sets the LineSetting object.
  407. </summary>
  408. <value>The default value is null.</value>
  409. </member>
  410. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystSetting.StopSetting">
  411. <summary>
  412. Gets or sets the StopSetting object.
  413. </summary>
  414. <value>The default value is null.</value>
  415. </member>
  416. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystSetting.RelationSetting">
  417. <summary>
  418. Gets or sets the transfer relation setting.
  419. </summary>
  420. <value>The default value is null.</value>
  421. </member>
  422. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystSetting.SnapTolerance">
  423. <summary>
  424. Gets or sets the snapping tolerance of the bus stops.
  425. </summary>
  426. <value>The default value is 0.1.</value>
  427. </member>
  428. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystSetting.MergeTolerance">
  429. <summary>
  430. Gets or sets the merging tolerance of the bus stops. Obsolete. From version 7.0.1, you don't need to set the merging tolerance of the bus stops.
  431. </summary>
  432. <value>The default value is 100.</value>
  433. </member>
  434. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystSetting.WalkingTolerance">
  435. <summary>
  436. Gets or sets walking threshold, that is the maxinum walking distance from the current stop to the transfer stop.
  437. </summary>
  438. <value>The default value is 1500.</value>
  439. </member>
  440. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferAnalystSetting.Unit">
  441. <summary>
  442. Gets or sets the unit of the snap tolerance, merge tolerance and walking tolerance.
  443. </summary>
  444. <value>The default value is Unit.Meter.</value>
  445. </member>
  446. <member name="T:SuperMap.Analyst.TrafficAnalyst.TransferGuide">
  447. <summary>
  448. With this class, you can get the guide items, interchange count, distance, cost, time, etc.
  449. </summary>
  450. </member>
  451. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuide.Count">
  452. <summary>
  453. Gets the count of the TransferGuideItem objects in the TransferGuide.
  454. </summary>
  455. </member>
  456. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuide.Item(System.Int32)">
  457. <summary>
  458. Gets the TransferGuideItem object according to the specified index.
  459. </summary>
  460. <param name="index">The specified index which start with 0.</param>
  461. <returns>The TransferGuideItem object.</returns>
  462. </member>
  463. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuide.TotalDistance">
  464. <summary>
  465. Gets the total distance of transfer guide.
  466. </summary>
  467. </member>
  468. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuide.TotalFare">
  469. <summary>
  470. Gets the total cost of transfer guide.
  471. </summary>
  472. </member>
  473. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuide.TotalTime">
  474. <summary>
  475. Gets the total distance of transfer guide.
  476. </summary>
  477. </member>
  478. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuide.TransferCount">
  479. <summary>
  480. Gets the count of transfer in the current scheme. One traffic transfer scheme may have the segment represented by the TransferGuideItem object which is passed by walk, so the TransferCount property of the TransferGuide object does not equal to the Count property of it.
  481. </summary>
  482. </member>
  483. <member name="T:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem">
  484. <summary>
  485. This class is used to get the transfer guide items, including walking or by bus, the start and the end of walking, the start and the end of the bus line, index, distance, cost and time, etc.
  486. </summary>
  487. </member>
  488. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.LineName">
  489. <summary>
  490. Gets a line name represented by the guide item. It is valid only when <see cref="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.IsWalking">IsWalking</see> is false.
  491. </summary>
  492. </member>
  493. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.LineType">
  494. <summary>
  495. Gets a line type represented by the guide item. This can be obtained from the <see cref="P:SuperMap.Analyst.TrafficAnalyst.LineSetting.LineTypeField">LineTypeField</see> property of <see cref="T:SuperMap.Analyst.TrafficAnalyst.LineSetting">LineSetting</see>. It is valid only when <see cref="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.IsWalking">IsWalking</see> is false.
  496. </summary>
  497. </member>
  498. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.StartName">
  499. <summary>
  500. Gets the get-on stop name on a guide item represented by the guide item. It is valid only when <see cref="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.IsWalking">IsWalking</see> is false.
  501. </summary>
  502. </member>
  503. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.EndName">
  504. <summary>
  505. Gets the get-off line name represented by the guide item. It is valid only when <see cref="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.IsWalking">IsWalking</see> is false.
  506. </summary>
  507. </member>
  508. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.StartIndex">
  509. <summary>
  510. Gets the index of the end stop of the segment represented by the TransferGuideItem object in the whole traffic line which the segment belongs to. It is valid only when <see cref="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.IsWalking">IsWalking</see> is false.
  511. </summary>
  512. </member>
  513. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.EndIndex">
  514. <summary>
  515. Gets the index of the start stop of the segment represented by the TransferGuideItem object in the whole traffic line which the segment belongs to. It is valid only when <see cref="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.IsWalking">IsWalking</see> is false.
  516. </summary>
  517. </member>
  518. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.PassStopCount">
  519. <summary>
  520. Gets the number of the stops this segment represented by the TransferGuideItem object has.
  521. </summary>
  522. </member>
  523. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.StartPosition">
  524. <summary>
  525. Gets the coordinates of the get-on/start stop of the segment represented by the TransferGuideItem object.
  526. </summary>
  527. </member>
  528. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.EndPosition">
  529. <summary>
  530. The coordinates of the get-off/end stop of the segment represented by the TransferGuideItem object.
  531. </summary>
  532. </member>
  533. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.Distance">
  534. <summary>
  535. Gets the distance of the segment represented by the TransferGuideItem object.
  536. </summary>
  537. </member>
  538. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.Fare">
  539. <summary>
  540. Gets the fare of the segment represented by the TransferGuideItem object.
  541. </summary>
  542. </member>
  543. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.Time">
  544. <summary>
  545. Gets the time of the segment represented by the TransferGuideItem object.
  546. </summary>
  547. </member>
  548. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.IsWalking">
  549. <summary>
  550. Gets whether the TransferGuideItem represents walk path.
  551. </summary>
  552. </member>
  553. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.Route">
  554. <summary>
  555. Gets the distance of the segment represented by the TransferGuideItem object.
  556. </summary>
  557. </member>
  558. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.FirstTime">
  559. <summary>
  560. Gets the first bus departure time of the segment represented by the TransferGuideItem object.
  561. </summary>
  562. </member>
  563. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferGuideItem.LastTime">
  564. <summary>
  565. Gets the end bus departure time of the segment represented by the TransferGuideItem object.
  566. </summary>
  567. </member>
  568. <member name="T:SuperMap.Analyst.TrafficAnalyst.LineInfo">
  569. <summary>
  570. The TransferLineInfo object includes Dataset, ID, Name, FirstTime, LastTime, Interval, Speed, FareInfo, TotalDistance, TotalWeight and StopCount.
  571. </summary>
  572. </member>
  573. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineInfo.ID">
  574. <summary>
  575. Gets the SMID of the line.
  576. </summary>
  577. </member>
  578. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineInfo.LineID">
  579. <summary>
  580. Gets the ID of the line.
  581. </summary>
  582. </member>
  583. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineInfo.Name">
  584. <summary>
  585. Gets the name of the line.
  586. </summary>
  587. </member>
  588. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineInfo.Alias">
  589. <summary>
  590. Gets the alias of the line.
  591. </summary>
  592. </member>
  593. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineInfo.StartTime">
  594. <summary>
  595. Gets the time of the first bus of the traffic line.
  596. </summary>
  597. </member>
  598. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineInfo.TerminalTime">
  599. <summary>
  600. Gets the time of the last bus of the line.
  601. </summary>
  602. </member>
  603. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineInfo.Interval">
  604. <summary>
  605. Gets the interval between every two buses of the line.
  606. </summary>
  607. </member>
  608. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineInfo.Speed">
  609. <summary>
  610. Gets the speed of the bus of the line.
  611. </summary>
  612. </member>
  613. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineInfo.FareInfo">
  614. <summary>
  615. Gets the bus fare information.
  616. </summary>
  617. </member>
  618. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineInfo.TotalDistance">
  619. <summary>
  620. Gets the distance of the line.
  621. </summary>
  622. </member>
  623. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineInfo.TotalFare">
  624. <summary>
  625. Gets the total fare of the line.
  626. </summary>
  627. </member>
  628. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineInfo.TotalTime">
  629. <summary>
  630. Gets the total time.
  631. </summary>
  632. </member>
  633. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineInfo.StopCount">
  634. <summary>
  635. Gets the number of the stops the line has.
  636. </summary>
  637. </member>
  638. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineInfo.LineType">
  639. <summary>
  640. Gets the line type.
  641. </summary>
  642. </member>
  643. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineInfo.TotalLine">
  644. <summary>
  645. Gets the total line. It is a <see cref="T:SuperMap.Data.GeoLine">GeoLine</see> object.
  646. </summary>
  647. </member>
  648. <member name="T:SuperMap.Analyst.TrafficAnalyst.LineSetting">
  649. <summary>
  650. The TransferLineSetting class.This class is used for setting the traffic line.
  651. </summary>
  652. </member>
  653. <member name="M:SuperMap.Analyst.TrafficAnalyst.LineSetting.#ctor">
  654. <summary>
  655. Constructs a new LinkSettings object.
  656. </summary>
  657. </member>
  658. <member name="M:SuperMap.Analyst.TrafficAnalyst.LineSetting.#ctor(SuperMap.Analyst.TrafficAnalyst.LineSetting)">
  659. <summary>
  660. Initializes a new instance of the LineSetting class which is identical with the specified LineSetting.
  661. </summary>
  662. <param name="lineSetting">The TransferLineSetting object specified.</param>
  663. </member>
  664. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineSetting.Dataset">
  665. <summary>
  666. Gets or sets the bus line dataset. It must be a line dataset. If you set it to other type, an exception will be thrown.
  667. </summary>
  668. </member>
  669. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineSetting.LineIDField">
  670. <summary>
  671. Gets or sets the bus line ID field. This field is required. It must be 32-bit or 64-bit. If it is other type, an exception will be thrown.
  672. </summary>
  673. <value>The default is a null string.</value>
  674. </member>
  675. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineSetting.NameField">
  676. <summary>
  677. Gets or sets the name field of the bus line. It is required. If this field doesn't exist in the line dataset, an exception will be thrown.
  678. </summary>
  679. <value>The default is a null string.</value>
  680. </member>
  681. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineSetting.LengthField">
  682. <summary>
  683. Gets or sets the length field of the transfer line. The unit is in meters.
  684. </summary>
  685. <value>The default is a null string.</value>
  686. </member>
  687. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineSetting.AliasField">
  688. <summary>
  689. Gets or sets the alias field of the transfer line.
  690. </summary>
  691. <value>The default is a null string.</value>
  692. </member>
  693. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineSetting.FirstTimeField">
  694. <summary>
  695. Gets or sets the time field of the first bus of the traffic line. Field type must be the time type of DateTime.
  696. </summary>
  697. <value>The default is a null string.</value>
  698. </member>
  699. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineSetting.LastTimeField">
  700. <summary>
  701. Gets or sets the time field of the end bus of the traffic line. Field type must be the time type of DateTime.
  702. </summary>
  703. <value>The default is a null string.</value>
  704. </member>
  705. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineSetting.IntervalField">
  706. <summary>
  707. Gets or sets the field of the interval between every two buses of the traffic line.
  708. </summary>
  709. <value>The default is a null string.</value>
  710. </member>
  711. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineSetting.SpeedField">
  712. <summary>
  713. Gets or sets the speed field of the bus of the line.
  714. </summary>
  715. <value>The default is a null string.</value>
  716. </member>
  717. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineSetting.FareFieldInfo">
  718. <summary>
  719. Gets or sets the fields about the fare of the traffic line.
  720. </summary>
  721. <value>The default is a null <see cref="T:SuperMap.Analyst.TrafficAnalyst.FareFieldInfo">FareFieldInfo</see> object.</value>
  722. </member>
  723. <member name="P:SuperMap.Analyst.TrafficAnalyst.LineSetting.LineTypeField">
  724. <summary>
  725. Gets or sets the bus line type field.
  726. </summary>
  727. <value>The default is a null string.</value>
  728. </member>
  729. <member name="T:SuperMap.Analyst.TrafficAnalyst.RelationSetting">
  730. <summary>
  731. The RelationSetting class. This class sets the stop&amp;line relation dataset, stop&amp;gateway relation dataset, and network dataset.
  732. </summary>
  733. </member>
  734. <member name="M:SuperMap.Analyst.TrafficAnalyst.RelationSetting.#ctor">
  735. <summary>
  736. Creates a new RelationSetting object.
  737. </summary>
  738. </member>
  739. <member name="M:SuperMap.Analyst.TrafficAnalyst.RelationSetting.#ctor(SuperMap.Analyst.TrafficAnalyst.RelationSetting)">
  740. <summary>
  741. Initializes a new instance of the RelationSetting class which is a copy of the specified RelationSetting object.
  742. </summary>
  743. <param name="relationSetting">The RelationSetting object.</param>
  744. </member>
  745. <member name="P:SuperMap.Analyst.TrafficAnalyst.RelationSetting.Dataset">
  746. <summary>
  747. Gets or set the stop&amp;line relation dataset. It must be a tabular dataset. If you set it to other type, an exception will be thrown.
  748. </summary>
  749. </member>
  750. <member name="P:SuperMap.Analyst.TrafficAnalyst.RelationSetting.StopIDField">
  751. <summary>
  752. Gets or sets the stop ID field of the stop&amp;line relation dataset. This field is required. It must be 32-bit or 64-bit. If there is no this type or it is other type, an exception will be thrown.
  753. </summary>
  754. <value>The default is a null string.</value>
  755. </member>
  756. <member name="P:SuperMap.Analyst.TrafficAnalyst.RelationSetting.LineIDField">
  757. <summary>
  758. Gets or sets the line ID field of the stop&amp;line relation dataset. This field is required. It must be 32-bit or 64-bit. If there is no this type or it is other type, an exception will be thrown.
  759. </summary>
  760. <value>The default is a null string.</value>
  761. </member>
  762. <member name="P:SuperMap.Analyst.TrafficAnalyst.RelationSetting.SerialNumField">
  763. <summary>
  764. Gets or sets the serial number field of the stop&amp;line relation dataset.
  765. </summary>
  766. <value>The default is a null string.</value>
  767. </member>
  768. <member name="P:SuperMap.Analyst.TrafficAnalyst.RelationSetting.DatasetPath">
  769. <summary>
  770. Gets or sets the stop&amp;gateway dataset. It must be a line dataset. If you set it to other type, an exception will be thrown.
  771. </summary>
  772. </member>
  773. <member name="P:SuperMap.Analyst.TrafficAnalyst.RelationSetting.ExitIDField">
  774. <summary>
  775. Gets or sets the gateway ID field of the stop&amp;gateway relation dataset. This field is required. It must be 32-bit or 64-bit. If there is no this type or it is other type, an exception will be thrown.
  776. </summary>
  777. <value>The default is a null string.</value>
  778. </member>
  779. <member name="P:SuperMap.Analyst.TrafficAnalyst.RelationSetting.StationIDField">
  780. <summary>
  781. Gets or sets the stop ID field of the stop&amp;gateway relation dataset. This field is required. It must be 32-bit or 64-bit. If there is no this type or it is other type, an exception will be thrown.
  782. </summary>
  783. <value>The default is a null string.</value>
  784. </member>
  785. <member name="P:SuperMap.Analyst.TrafficAnalyst.RelationSetting.ExitNameCField">
  786. <summary>
  787. Gets or sets the gateway name field for the stop&amp;gateway relation dataset.
  788. </summary>
  789. <value>The default is a null string.</value>
  790. </member>
  791. <member name="P:SuperMap.Analyst.TrafficAnalyst.RelationSetting.ExitNamePYField">
  792. <summary>
  793. Gets or sets the gateway pinyin field for the stop&amp;gateway relation dataset.
  794. </summary>
  795. <value>The default is a null string.</value>
  796. </member>
  797. <member name="P:SuperMap.Analyst.TrafficAnalyst.RelationSetting.DatasetNetwork">
  798. <summary>
  799. Gets or sets the network dataset. Get the real walking path according to the edge and node information.
  800. </summary>
  801. </member>
  802. <member name="P:SuperMap.Analyst.TrafficAnalyst.RelationSetting.EdgeIDField">
  803. <summary>
  804. Gets or sets the edge ID field of the network dataset.
  805. </summary>
  806. <value>The default is a null string.</value>
  807. </member>
  808. <member name="P:SuperMap.Analyst.TrafficAnalyst.RelationSetting.NodeIDField">
  809. <summary>
  810. Gets or sets the node ID field of the network dataset.
  811. </summary>
  812. <value>The default is a null string.</value>
  813. </member>
  814. <member name="P:SuperMap.Analyst.TrafficAnalyst.RelationSetting.FNodeIDField">
  815. <summary>
  816. Gets or sets the field that identifies the ID of the start node in the network dataset.
  817. </summary>
  818. <value>The default is a null string.</value>
  819. </member>
  820. <member name="P:SuperMap.Analyst.TrafficAnalyst.RelationSetting.TNodeIDField">
  821. <summary>
  822. Gets or sets the field that identifies the ID of the end node in the network dataset.
  823. </summary>
  824. <value>The default is a null string.</value>
  825. </member>
  826. <member name="T:SuperMap.Analyst.TrafficAnalyst.StopInfo">
  827. <summary>
  828. This class is used for getting the information of transfer stop, including the dataset that the stop belongs to, ID, name, and alias of the stop.
  829. </summary>
  830. </member>
  831. <member name="P:SuperMap.Analyst.TrafficAnalyst.StopInfo.ID">
  832. <summary>
  833. Gets the SMID of the stop.
  834. </summary>
  835. </member>
  836. <member name="P:SuperMap.Analyst.TrafficAnalyst.StopInfo.StopID">
  837. <summary>
  838. Gets the ID of the stop.
  839. </summary>
  840. </member>
  841. <member name="P:SuperMap.Analyst.TrafficAnalyst.StopInfo.Name">
  842. <summary>
  843. Gets the name of the stop.
  844. </summary>
  845. </member>
  846. <member name="P:SuperMap.Analyst.TrafficAnalyst.StopInfo.Alias">
  847. <summary>
  848. Gets the alias of the stop.
  849. </summary>
  850. </member>
  851. <member name="P:SuperMap.Analyst.TrafficAnalyst.StopInfo.Position">
  852. <summary>
  853. Gets the position of the stop.
  854. </summary>
  855. </member>
  856. <member name="T:SuperMap.Analyst.TrafficAnalyst.StopSetting">
  857. <summary>
  858. The StopSetting class. This class is used for getting the settings of the transfer stop, including the dataset that the stop belongs to, the name field of the stop, and the alias field of the stop.
  859. </summary>
  860. </member>
  861. <member name="M:SuperMap.Analyst.TrafficAnalyst.StopSetting.#ctor">
  862. <summary>
  863. Constructs a new StopSetting object.
  864. </summary>
  865. </member>
  866. <member name="M:SuperMap.Analyst.TrafficAnalyst.StopSetting.#ctor(SuperMap.Analyst.TrafficAnalyst.StopSetting)">
  867. <summary>
  868. Initializes a new instance of the StopSetting class which is a copy of the specified StopSetting object.
  869. </summary>
  870. <param name="stopSetting">The specified TransferStopSetting object.</param>
  871. </member>
  872. <member name="P:SuperMap.Analyst.TrafficAnalyst.StopSetting.Dataset">
  873. <summary>
  874. Gets or sets the stop dataset. It must be a point dataset. If you set it to other type, an exception will be thrown.
  875. </summary>
  876. </member>
  877. <member name="P:SuperMap.Analyst.TrafficAnalyst.StopSetting.StopIDField">
  878. <summary>
  879. Gets or sets the bus stop ID field. This field is required. It must be 32-bit or 64-bit. If it is other type, an exception will be thrown.
  880. </summary>
  881. <value>The default is a null string.</value>
  882. </member>
  883. <member name="P:SuperMap.Analyst.TrafficAnalyst.StopSetting.NameField">
  884. <summary>
  885. Gets or sets the name field of the bus stop. It is required. If this field doesn't exist in the stop dataset, an exception will be thrown.
  886. </summary>
  887. <value>The default is a null string.</value>
  888. </member>
  889. <member name="P:SuperMap.Analyst.TrafficAnalyst.StopSetting.AliasField">
  890. <summary>
  891. Gets or sets the alias field of the transfer stop.
  892. </summary>
  893. <value>The default is a null string.</value>
  894. </member>
  895. <member name="T:SuperMap.Analyst.TrafficAnalyst.TransferSolution">
  896. <summary>
  897. The transfer solution class. This class is used to get the count of the interchange, and the transfer lines with the given index.
  898. </summary>
  899. </member>
  900. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferSolution.GetEnumerator">
  901. <summary>
  902. Returns an enumerator that can iterate through the collection.
  903. </summary>
  904. <returns>An IEnumerator object used to iterate through a collection.</returns>
  905. </member>
  906. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferSolution.TransferTime">
  907. <summary>
  908. Gets the count of the interchange.
  909. </summary>
  910. </member>
  911. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferSolution.Item(System.Int32)">
  912. <summary>
  913. Gets the Items with the given index.
  914. </summary>
  915. <param name="index">The specified index, which begins with 0.</param>
  916. <returns>The transfer lines with the given index.</returns>
  917. </member>
  918. <member name="T:SuperMap.Analyst.TrafficAnalyst.TransferSolutions">
  919. <summary>
  920. The transfer solutions class. This class is used to get the transfer solution with the given index, and the count of the solutions.
  921. </summary>
  922. </member>
  923. <member name="M:SuperMap.Analyst.TrafficAnalyst.TransferSolutions.GetEnumerator">
  924. <summary>
  925. Returns an enumerator that can iterate through the collection.
  926. </summary>
  927. <returns>An IEnumerator object used to iterate through a collection.</returns>
  928. </member>
  929. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferSolutions.Item(System.Int32)">
  930. <summary>
  931. Gets the transfer solution with the given index.
  932. </summary>
  933. <param name="index">The specified index, which begins with 0.</param>
  934. <returns>The transfer solution with the given index.</returns>
  935. </member>
  936. <member name="P:SuperMap.Analyst.TrafficAnalyst.TransferSolutions.Count">
  937. <summary>
  938. Gets the count of the solutions.
  939. </summary>
  940. </member>
  941. <member name="T:SuperMap.Analyst.TrafficAnalyst.TransferTactic">
  942. <summary>
  943. This enumeration defines the transfer tactic constants.
  944. </summary>
  945. </member>
  946. <member name="F:SuperMap.Analyst.TrafficAnalyst.TransferTactic.LessTransfer">
  947. <summary>
  948. Less interchange. Find the less interchange count from the start to the end.
  949. </summary>
  950. </member>
  951. <member name="F:SuperMap.Analyst.TrafficAnalyst.TransferTactic.MinDistance">
  952. <summary>
  953. Minimum distance. Find the shortest distance from the start to the end.
  954. </summary>
  955. </member>
  956. <member name="F:SuperMap.Analyst.TrafficAnalyst.TransferTactic.LessWalk">
  957. <summary>
  958. Less walking. Find the less walking distance from the start to the end.
  959. </summary>
  960. </member>
  961. <member name="F:SuperMap.Analyst.TrafficAnalyst.TransferTactic.LessTime">
  962. <summary>
  963. Less time. Find the least time cost from the start to the end.
  964. </summary>
  965. </member>
  966. </members>
  967. </doc>