-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix faulty translations * mention landmark first instead of last in gh instruction * add blacklist * first draft direction determination for landmark * use threshold from request, if set * save landmark meta data in gh response * save osm tags for landmark for now * add name to landmark model * reduce threshold to 30m * fix intervall index * use blacklist for unhelpful osm tags * add translations * add translations * add low priority tags * remove redundant code * sort osm-tags * add low priority tags * add translations * add osm categories * add new categories to low_priority and blacklist * add new categories to low_priority and blacklist * add query parameter to decide if graphhopper query should be replaced or extended * polishing
- Loading branch information
1 parent
f1d0963
commit dd39a41
Showing
6 changed files
with
1,647 additions
and
736 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
backend/pois/migrations/0004_landmark_tags_alter_landmark_id.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Generated by Django 4.2.13 on 2024-07-12 09:12 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('pois', '0003_landmark'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='landmark', | ||
name='tags', | ||
field=models.TextField(default='none'), | ||
preserve_default=False, | ||
), | ||
migrations.AlterField( | ||
model_name='landmark', | ||
name='id', | ||
field=models.TextField(primary_key=True, serialize=False), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Generated by Django 4.2.13 on 2024-07-12 09:27 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('pois', '0004_landmark_tags_alter_landmark_id'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='landmark', | ||
name='name', | ||
field=models.TextField(default=''), | ||
preserve_default=False, | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.