added with=4 to list of uninteresting tags, also source=PGS* (was: source=PGS exactly)

This commit is contained in:
Frederik Ramm 2007-09-24 09:11:33 +00:00
parent 0f91ad8966
commit 06a3213acd

View file

@ -467,8 +467,9 @@ static void mark_tagged_segs(struct data *d) {
strcmp(k, "tiger:county") && strcmp(k, "tiger:county") &&
strcmp(k, "tiger:upload_uuid") && strcmp(k, "tiger:upload_uuid") &&
strcmp(k, "converted_by") && strcmp(k, "converted_by") &&
(strcmp(k, "width") || strcmp(v, "4")) &&
(strcmp(k, "natural") || strcmp(v, "coastline")) && (strcmp(k, "natural") || strcmp(v, "coastline")) &&
(strcmp(k, "source") || strcmp(v, "PGS"))) { (strcmp(k, "source") || strncmp(v, "PGS", 3))) {
interesting_tags.insert(make_pair(string(k), string(v))); interesting_tags.insert(make_pair(string(k), string(v)));
} }
} }