Metacity
  • Welcome
  • Metacity
    • Installation
    • [dev] CGAL Dependency
    • Data Import
    • Models and Attributes
    • Layers
    • Grids
    • Quad-trees
    • Dockerized Processor
    • Development notes
  • Archives
    • DataAPI
      • Development
    • MetacityGL
      • Installation
      • Creating a MetacityGL App
      • Writing Custom Layers
      • Loading Metacity Data
      • Development notes
    • BananaGL
      • Development
    • AMOS
      • Synthetic Population
        • Case Studies
        • Data Specification
        • Activity Chains
        • Spatial Distribution
        • MATSim population input and comparison
        • Households
      • MATSim
        • Basic Info
        • Running Scenario
          • Config File
          • Current state
        • Input information
          • OSM
          • Filtering GTFS
          • Coordinates
        • Output
          • Processing
      • OICT
        • MapResolver
      • Resources
        • Trafic Simulation
        • MATSim
        • Vis and Meta Software
        • Synthetic Population
        • Public Relations
        • Inspiration
    • Metacity Block Edition
      • Epic Games Mega Grant
      • 🧠Internal notes
  • Links
    • Homepage
    • GitHub
  • Code of Conduct
Powered by GitBook
On this page
Edit on GitHub
  1. Archives
  2. AMOS
  3. OICT

MapResolver

Metacity repository dedicated to mapping FCD data from simplified net to CEDA network.

PreviousOICTNextResources

Last updated 2 years ago

Pipeline for reading FCD dynamic data and transforming it to .sim format.

Structure:

.
├── code
│   ├── ceda_file.py
│   ├── ceda_mapper.py
│   ├── exporter.py
│   ├── fcd_bd_file.py
│   ├── fcd_file.py
│   ├── linker.py
│   ├── ndic_export.py
│   ├── tmc_file.py
│   └── transform.py
├── data
│   ├── CEDA
│   ├── csv
│   ├── FCD
│   ├── out
│   ├── png
│   └── shp
└── README.md

Pipeline:

  1. fcd_bd_file.py -- reads FCD data, removes redundant data and stores it to smaller chunks

  2. ceda_mapper.py -- reads map data, creates graph for mapping, iteratively maps FCD data onto realistic geometry

  3. *optional - exporter.py -- outputs fcd data as a csv file of geometries with a list of attributes: times and speeds

  4. transform.py -- transforms (generates agents for each segment) mapped fcd data to .sim file

GitHub repository