You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
as a naive implementation marking spawns that had no pokemon spawned on during last few hours would suffice, perfectly we'd need to track behavior between known extra-spawns events and regular times to permanently mark spawn points as event ones
The text was updated successfully, but these errors were encountered:
It's not fully doable the way you want it, since the game is not providing us details related to type of spawn (normal, event).
As I see it, it could be split using last seen field as:
Known spawn : Last Seen under X hours
Known spawn : Last Seen more than X hours
Unknown spawn
Where X could be set between 1, 168 (1 hour - 1 week) which would be enough to filter out SH and show CD only. Maybe as a list? eg: 2 hours, 1 day, 3 days, week.
So the query would have to distinguish active and inactive spawnpoints in addition to known, unknown.
In addition, here's example data we have saved in parser:
It would probably require using additional 2 colors to easily distinguish 4 types of spawns
verified regular, unverified regular, verified event, unverified event
as a naive implementation marking spawns that had no pokemon spawned on during last few hours would suffice, perfectly we'd need to track behavior between known extra-spawns events and regular times to permanently mark spawn points as event ones
The text was updated successfully, but these errors were encountered: