Skip to content

Commit

Permalink
organize nearby node searches into folders
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate-Wessel committed Jan 7, 2025
1 parent a1aa2c0 commit 654e8f7
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/app/nodes/byID/centreline.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import json
from app.db import getConnection
from app.get_nearest_here_nodes import get_here_nodes_within
from app.nodes.nearby.here import get_here_nodes_within
from app.nodes.byID.px import get_px_node

SQL = '''
Expand Down
2 changes: 1 addition & 1 deletion backend/app/nodes/byID/here.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import json
from app.db import getConnection
from app.get_nearest_centreline_node import get_nearest_centreline_node
from app.nodes.nearby.centreline import get_nearest_centreline_node

SQL = '''
SELECT
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion backend/app/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from flask import jsonify, request
from app import app
from app.db import getConnection
from app.get_nearest_here_nodes import get_here_nodes_within
from app.nodes.nearby.here import get_here_nodes_within
from app.nodes.byID.here import get_here_node
from app.nodes.byID.centreline import get_centreline_node
from app.get_travel_time import get_travel_time
Expand Down

0 comments on commit 654e8f7

Please sign in to comment.