mapillary / mapillary-python-sdk

A Python 3 library built on the Mapillary API v4 to facilitate retrieving and working with Mapillary data.
MIT License
37 stars 15 forks source link

[Utility] Date check for map feature points and traffic signs #64

Closed OmarMuhammedAli closed 3 years ago

OmarMuhammedAli commented 3 years ago

Description

A filter needed for checking the max and min dates from user input against the returned first_seen_at and last_seen_at properties of the resulting GeoJSON

Related issue(s)

19

Extra context

We have first seen and last seen. So I would say just first_seen_at with operators >=, >, ==, <, <== then same with last_seen_at

Rubix982 commented 3 years ago

Can this be solved with max_date and min_date in filter.py? As in, looping over the tiles with for tile in tile, and then using this function separately with the first_seen_at and last_seen_at passed to whichever function, alongside the user provided max_date and min_date?

OmarMuhammedAli commented 3 years ago

Resolved with #68