LeonceNsh's picture
Upload README.md with huggingface_hub
789b58f verified

Tennessee Mobility Data

This dataset contains the data files for the Tennessee Mobility Analysis project.

Contents

Geographic Boundaries

  • County Boundaries: Tennessee county shapefiles (FIPS code 47)
  • HSA Boundaries: Hospital Service Area boundaries for Tennessee
  • HRR Boundaries: Hospital Referral Region boundaries for Tennessee

Mobility Data

  • tn_weekly_mobility_2019.parquet: SafeGraph weekly mobility data for Tennessee (2019)
    • POI visit patterns
    • Visitor counts
    • Geographic information

Demographic Data

  • cbg_geographic_data.csv: Census Block Group demographic and geographic data
  • location-of-auto-businesses.csv: Auto business locations in Tennessee

Commuting Data

  • location_zones.pkl: Commuting zone definitions
  • trajectories_count.csv: Traffic trajectory data

Additional Files

  • RDS files: R data structures for county information
  • Shapefiles: Complete sets including .shp, .dbf, .prj, .shx files

Usage

This dataset is automatically used by the Tennessee Mobility Space.

To use it in your own project:

from huggingface_hub import hf_hub_download

# Download a specific file
file_path = hf_hub_download(
    repo_id="LeonceNsh/tennessee-mobility-data",
    filename="data/mobility/tn_weekly_mobility_2019.parquet",
    repo_type="dataset"
)

# Load the data
import pandas as pd
df = pd.read_parquet(file_path)

License

The data is provided for educational and research purposes.

Citation

If you use this data, please cite:

  • SafeGraph for mobility data
  • US Census Bureau for demographic and geographic data