From 98e3770e8c8a07a5b3c454f07d73e23c606de789 Mon Sep 17 00:00:00 2001 From: gitee-bot Date: Sat, 19 Jul 2025 08:49:54 +0000 Subject: [PATCH] Update README.md --- README.en.md | 1 + README.md | 47 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 48 insertions(+) create mode 100644 README.en.md create mode 100644 README.md diff --git a/README.en.md b/README.en.md new file mode 100644 index 0000000..a573ffa --- /dev/null +++ b/README.en.md @@ -0,0 +1 @@ +Sure! Please provide the content of the README.md document you'd like translated into English. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..9524c51 --- /dev/null +++ b/README.md @@ -0,0 +1,47 @@ +# Map Matching + +This project provides a map matching solution, primarily used for aligning GPS trajectories to a road network. It can be applied in scenarios such as vehicle tracking, route reconstruction, and location-based services. + +## Features + +- Converts raw GPS coordinates into meaningful paths on a map. +- Uses advanced algorithms to improve the accuracy of trajectory alignment. +- Supports integration with various map data formats. + +## Requirements + +- C++11 or higher +- Boost library +- GDAL library + +## Installation + +1. Clone the repository: + ```bash + git clone https://gitee.com/tgraphdb/map-matching.git + ``` + +2. Build the project: + ```bash + mkdir build && cd build + cmake .. + make + ``` + +## Usage + +After building, you can run the main program: + +```bash +./map_matching +``` + +Make sure to configure the input data paths and parameters in the configuration file before running. + +## Contributing + +Contributions are welcome! If you find any issues or have suggestions for improvements, feel free to open an issue or submit a pull request. + +## License + +This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details. \ No newline at end of file -- Gitee