Skip to content

Commit

Permalink
Fix geolookup
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasNx committed Aug 22, 2023
1 parent 814c2e9 commit 7d58a56
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions conf/fix-enriched.fix
Original file line number Diff line number Diff line change
Expand Up @@ -275,17 +275,19 @@ if exists("latDbs")
elsif exists("latVisitor")
copy_field("latVisitor","@visitorLocation.geo.lat") # <!-- zdb sigel verzeichnis -->
elsif exists("@geoLookupDbs") # <!-- geo lookup pelias -->
lookup("@geoLookupDbs","addLatMap", delete:"true")
copy_field("@geoLookupDbs","@visitorLocation.geo.lat")
copy_field("@geoLookupDbs","@geoLookupDbsLat")
lookup("@geoLookupDbsLat","addLatMap", delete:"true")
copy_field("@geoLookupDbsLat","@visitorLocation.geo.lat")
end

if exists("lonDbs")
copy_field("lonDbs","@visitorLocation.geo.lon") # <!-- dbs verzeichnis -->
elsif exists("lonVisitor")
copy_field("lonVisitor","@visitorLocation.geo.lon") # <!-- zdb sigel verzeichnis -->
elsif exists("@geoLookupDbs")
lookup("@geoLookupDbs","addlongMap" , delete:"true") # <!-- geo lookup pelias -->
copy_field("@geoLookupDbs","@visitorLocation.eo.lon")
copy_field("@geoLookupDbs","@geoLookupDbsLon")
lookup("@geoLookupDbsLon","addLongMap" , delete:"true") # <!-- geo lookup pelias -->
copy_field("@geoLookupDbsLon","@visitorLocation.geo.lon")
end

if exists("@visitorLocation")
Expand Down

0 comments on commit 7d58a56

Please sign in to comment.