Cliffield / pogo_heatmaps

creates heatmaps from PokemonGo-Map database

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pogo_heatmaps

creates heatmaps from PokemonGo-Map gathered data
With code from ferazambuja's Gist.

It creates for every particular pokemon a heatmap in the subfolder "maps". The mapped spawnpoints are weightet by the count of spaws of the particular pokemon at this spawnpiont. The heatmaps are just html-files with coordinates and the weigth using google maps api for heatmaps.

Data import from sqlite and MySQL-Database possible. Just set configs at head of script.

########################################################
## define settings here
########################################################
input_type = "sqlite" # "sqlite" or "MySQL"

# for sqlite
database = "pogom.db" # sqlite filename e.g. "pogom.db" 

# for MySQL
host="127.0.0.1" #host
user="dbuser" # user
password="foo" # password
db="bar" # database

output_folder = "maps" # output folder for maps e.g. "maps"

# startpoint of map; change to your poi
lat_start = "52.211184" # latitude
lng_start = "13.047870" # longitude

GoogleMapsKey = "insert_key_here" # GMAPS_API_KEY 

language = "en" # pokemon names in "en", "fr" or "de"
########################################################

Alt text

About

creates heatmaps from PokemonGo-Map database


Languages

Language:JavaScript 67.8%Language:HTML 19.3%Language:Python 12.9%