This overpass query works to find all the untouched tiger imports. In areas that have not seen much improvements this works.

// gather all Dave Hansen TIGER import edits in an area
[out:json][timeout:25];
// gather results
(
  way(user:"DaveHansenTiger")({{bbox}});
);
out body;
>;
out skel qt;
1 Like