A log file created that adds a new line for each pokémon found.If possible removing hearthbeat updates.
maybe an option to push all found pokémon over a socket (if the user wants that)
what we need is a data object having these properties:
pokemon_id = int(data['pokemon_id']) # the pokemon number
last_modified_time = int(data['last_modified_timestamp_ms']) # when you received the pokemon from pogo-servers
time_until_hidden_ms = int(data['time_till_hidden_ms']) # the time until the mon is hidden
encounter_id = str(data['encounter_id']) # the encounter id from pogo
spawnpoint_id = str(data['spawnpoint_id']) # the spawnpoint id from pogo
longitude = float(data['longitude']) # longitute of the spawn
latitude = float(data['latitude']) # latitude of the spawn
Sending a json object would be best but other formats are fine too. If you can give me a hint where to look for a pokemon received event, I could submit a pull request.
Hello there,
we are currently creating a big collection of pokémon spawns/nests and want to ask popular pokemon maps to share their data with us.
for reference: https://www.reddit.com/r/TheSilphRoad/comments/4uqlet/pokelyzer_setup_instructions_a_tool_for_finding/ https://github.com/Kostronor/pokelector
What we would need are:
what we need is a data object having these properties:
Sending a json object would be best but other formats are fine too. If you can give me a hint where to look for a pokemon received event, I could submit a pull request.