Trying to filter data files based upon a date field

This should work:

{{ range where .Site.Data.events "startdate.Unix" "ge" .Now.Unix }}

In Hugo 0.15 this should also work:

{{ range where .Site.Data.events "startdate" "ge" .Now }}