你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
纽约市出租车和豪华轿车委员会 - 绿色运营车辆 (FHV) 行程记录
营运车辆(“FHV”)的行程记录包含捕获调度基地许可证号,搭车日期、时间和出租车区域位置 ID 的字段(形成的文件如下)。 这些记录由基地所提交的 FHV 行程记录生成。
注意
Microsoft 按“原样”提供 Azure 开放数据集。 Microsoft 对数据集的使用不提供任何担保(明示或暗示)、保证或条件。 在当地法律允许的范围内,Microsoft 对使用数据集而导致的任何损害或损失不承担任何责任,包括直接、必然、特殊、间接、偶发或惩罚性损害或损失。
此数据集是根据 Microsoft 接收源数据的原始条款提供的。 数据集可能包含来自 Microsoft 的数据。
数量和保留期
此数据集以 Parquet 格式存储。 截至 2018 年,大约有 5 亿行 (5 GB)。
此数据集包括从 2009 年到 2018 年累积的历史记录。 可使用我们的 SDK 中的参数设置来提取特定时间范围内的数据。
存储位置
此数据集存储在美国东部 Azure 区域。 建议将计算资源分配到美国东部地区,以实现相关性。
其他信息
纽约出租车和豪华轿车委员会 (TLC):
数据是由 Taxicab & Livery Passenger Enhancement Programs (TPEP/LPEP) 授权的技术提供商收集并提供给纽约出租车和豪华轿车委员会 (TLC)。 行程数据不是由 TLC 创建的,因此 TLC 不对这些数据的准确性做任何声明。
列
名称 | 数据类型 | 唯一 | 值(示例) | 说明 |
---|---|---|---|---|
dispatchBaseNum | string | 1,144 | B02510 B02764 | 调度行程的基地的 TLC 基本许可证号 |
doLocationId | 字符串 | 267 | 265 132 | 行程结束时所处的 TLC 出租车区域。 |
dropOffDateTime | timestamp | 57,110,352 | 2017-07-31 23:59:00 2017-10-15 00:44:34 | 行程的落客日期和时间。 |
pickupDateTime | timestamp | 111,270,396 | 2016-08-16 00:00:00 2016-08-17 00:00:00 | 行程接送的日期和时间。 |
puLocationId | 字符串 | 266 | 79 161 | 行程开始的 TLC 出租车区域。 |
puMonth | int | 12 | 1 12 | |
puYear | int | 5 | 2018 2017 | |
srFlag | string | 44 | 1 2 | 指示该行程是否属于 High Volume FHV 公司(例如,Uber Pool、Lyft Line)提供的共享乘车链的一部分。 对于共享行程,值为 1。 对于非共享行程,该值为 NULL。 注意:对于大多数 High Volume FHV 公司,只有在行程中被请求并与其他共享乘车请求匹配的共享乘车才会被标记。 但是,Lyft(基地许可证编号 B02510 + B02844)也标记请求共享乘车,但另一个乘客未成功匹配以共享该行程的乘车。因此,来自这两个基地的 SR_Flag=1 的行程记录可能指示共享行程链中的第一个行程或请求共享乘车但从未匹配的行程。 用户应该能推测出对 Lyft 成功完成的共享行程的过度计数。 |
预览
dispatchBaseNum | pickupDateTime | dropOffDateTime | puLocationId | doLocationId | srFlag | puYear | puMonth |
---|---|---|---|---|---|---|---|
B03157 | 6/30/2019 11:59:57 PM | 7/1/2019 12:07:21 AM | 264 | Null | Null | 2019 | 6 |
B01667 | 6/30/2019 11:59:56 PM | 7/1/2019 12:28:06 AM | 264 | Null | Null | 2019 | 6 |
B02849 | 6/30/2019 11:59:55 PM | 7/1/2019 12:14:10 AM | 264 | Null | Null | 2019 | 6 |
B02249 | 6/30/2019 11:59:53 PM | 7/1/2019 12:15:53 AM | 264 | Null | Null | 2019 | 6 |
B00887 | 6/30/2019 11:59:48 PM | 7/1/2019 12:29:29 AM | 264 | Null | Null | 2019 | 6 |
B01626 | 6/30/2019 11:59:45 PM | 7/1/2019 12:18:20 AM | 264 | Null | Null | 2019 | 6 |
B01259 | 6/30/2019 11:59:44 PM | 7/1/2019 12:03:15 AM | 264 | Null | Null | 2019 | 6 |
B01145 | 6/30/2019 11:59:43 PM | 7/1/2019 12:11:15 AM | 264 | Null | Null | 2019 | 6 |
B00887 | 6/30/2019 11:59:42 PM | 7/1/2019 12:34:21 AM | 264 | Null | Null | 2019 | 6 |
B00821 | 6/30/2019 11:59:40 PM | 7/1/2019 12:02:57 AM | 264 | Null | Null | 2019 | 6 |
数据访问
Azure Notebooks
# This is a package in preview.
from azureml.opendatasets import NycTlcFhv
from datetime import datetime
from dateutil import parser
end_date = parser.parse('2018-06-06')
start_date = parser.parse('2018-05-01')
nyc_tlc = NycTlcFhv(start_date=start_date, end_date=end_date)
nyc_tlc_df = nyc_tlc.to_pandas_dataframe()
nyc_tlc_df.info()
Azure Databricks
# This is a package in preview.
# You need to pip install azureml-opendatasets in Databricks cluster. https://learn.microsoft.com/azure/data-explorer/connect-from-databricks#install-the-python-library-on-your-azure-databricks-cluster
from azureml.opendatasets import NycTlcFhv
from datetime import datetime
from dateutil import parser
end_date = parser.parse('2018-06-06')
start_date = parser.parse('2018-05-01')
nyc_tlc = NycTlcFhv(start_date=start_date, end_date=end_date)
nyc_tlc_df = nyc_tlc.to_spark_dataframe()
display(nyc_tlc_df.limit(5))
Azure Synapse
# This is a package in preview.
from azureml.opendatasets import NycTlcFhv
from datetime import datetime
from dateutil import parser
end_date = parser.parse('2018-06-06')
start_date = parser.parse('2018-05-01')
nyc_tlc = NycTlcFhv(start_date=start_date, end_date=end_date)
nyc_tlc_df = nyc_tlc.to_spark_dataframe()
# Display top 5 rows
display(nyc_tlc_df.limit(5))
后续步骤
查看开放数据集目录中的其余数据集。