Skip to content

Commit

Permalink
Removing ground truth
Browse files Browse the repository at this point in the history
Removing the ground truth file + fixing a syntax error in my last commit.
  • Loading branch information
nataliejschultz committed Sep 28, 2023
1 parent ec73542 commit 4d46b20
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1,845 deletions.
2 changes: 1 addition & 1 deletion emission/net/ext_service/geocoder/nominatim.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
OPENSTREETMAP_QUERY_URL_env = os.environ.get("OPENSTREETMAP_QUERY_URL", "")
logging.info(f"OPENSTREETMAP_QUERY_URL_env: {OPENSTREETMAP_QUERY_URL_env}")
OPENSTREETMAP_QUERY_URL = OPENSTREETMAP_QUERY_URL_env if OPENSTREETMAP_QUERY_URL_env != "" else "http://nominatim.openstreetmap.org"
print("Open Street Map URL not configured, defaulting to nominatim:") if OPENSTREETMAP_QUERY_URL = "http://nominatim.openstreetmap.org" elif print "Open Street Map URL configured!"
print("Open Street Map URL not configured, defaulting to nominatim:") if OPENSTREETMAP_QUERY_URL == "http://nominatim.openstreetmap.org" elif print "Open Street Map URL configured!"
except:
print("URL not configured, place decoding must happen on the client")

Expand Down
Loading

0 comments on commit 4d46b20

Please sign in to comment.