Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geoyee/etmap
Geo temporal and spatial visualization of epidemic track.
https://github.com/geoyee/etmap
covid-19 flask gis leaflet map paddlenlp paddleocr paddlepaddle python3 track
Last synced: 27 days ago
JSON representation
Geo temporal and spatial visualization of epidemic track.
- Host: GitHub
- URL: https://github.com/geoyee/etmap
- Owner: geoyee
- Created: 2022-05-19T01:13:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-05-25T08:11:34.000Z (over 2 years ago)
- Last Synced: 2024-01-30T00:19:41.766Z (9 months ago)
- Topics: covid-19, flask, gis, leaflet, map, paddlenlp, paddleocr, paddlepaddle, python3, track
- Language: JavaScript
- Homepage: https://github.com/geoyee/ETMap
- Size: 11.8 MB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ETMap
Geo temporal and spatial visualization of epidemic track. The main contents include Character detection and recognition (based on PaddleOCR), Named entity recognition (based on PaddleNLP), Map display and interaction (based on Leaflet) and Front and end interaction (based on Flask).
![btm](https://user-images.githubusercontent.com/71769312/170213925-2f7d1503-372b-4bc9-9e05-932d41329875.png)
## How to use
1. Clone this repo:
```shell
git clone https://github.com/geoyee/ETMap.git
```2. Install dependencies:
```shell
pip install -r requirements.txt
```3. Start server:
```shell
python app.py
```View the demo by navigating to `http://localhost:5000`.
## TODO
- [x] Add OCR.
- [x] Add geocoding.
- [x] Add Map.
- [x] Merge functions and update display.
- [x] Add GCJ02 to WGS84.
- [x] Add draw lines.
- [x] Update geo-text-split and place merge.
- [x] Add about time.
- [x] Update UI about image input.
- [x] Add file selection.
- [x] Add province selection.
- [ ] Add arrows to polyline.## Reference
1. [playing-with-leaflet](https://github.com/geoyee/playing-with-leaflet)
2. [flask-leaflet-demo](https://github.com/adwhit/flask-leaflet-demo)
3. [leaflet-tutorials-interesting](https://github.com/twtrubiks/leaflet-tutorials-interesting)
4. [PaddleOCR](https://github.com/PaddlePaddle/PaddleOCR/blob/release/2.5/doc/doc_en/models_list_en.md)
5. [PaddleNLP](https://github.com/PaddlePaddle/PaddleNLP/blob/develop/docs/model_zoo/taskflow.md)
6. [JioNLP](https://github.com/dongrixinyu/JioNLP)
7. [NameExtractor](https://github.com/samyak1999/NameExtractor)
8. [全国三级联动----省市县 原生js前端](https://blog.csdn.net/sqL520lT/article/details/111051811)