rename --match to --list

This commit is contained in:
Ilya Zverev 2018-05-26 08:46:55 +03:00
parent 49703be019
commit 74fb564646
2 changed files with 5 additions and 5 deletions

View file

@ -7,7 +7,7 @@
* Reduced default `max_request_boxes` to four.
* New argument `--alt-overpass` to use Kumi Systems' server (since the main one is blocked in Russia).
* Better handling of server runtime errors.
* Find matches in OSM with `--match <result.csv>`.
* Find matches in OSM with `--list <result.csv>`.
## 1.3.3

View file

@ -1350,7 +1350,7 @@ def run(profile=None):
help='Check for moveability of modified modes')
parser.add_argument('-f', '--for-filter', type=argparse.FileType('w'),
help='Prepare a file for the filtering script')
parser.add_argument('--match', '--matches', type=argparse.FileType('w'),
parser.add_argument('-l', '--list', type=argparse.FileType('w'),
help='Print a CSV list of matches')
parser.add_argument('-d', '--list_duplicates', action='store_true',
help='List all duplicate points in the dataset')
@ -1365,7 +1365,7 @@ def run(profile=None):
options = parser.parse_args()
if (not options.output and not options.changes and
not options.for_filter and not options.match):
not options.for_filter and not options.list):
parser.print_help()
return
@ -1433,8 +1433,8 @@ def run(profile=None):
fc = {'type': 'FeatureCollection', 'features': conflator.changes}
json.dump(fc, options.changes, ensure_ascii=False, sort_keys=True, indent=1)
if options.match:
writer = csv.writer(options.match)
if options.list:
writer = csv.writer(options.list)
writer.writerow(['ref', 'osm_type', 'osm_id', 'lat', 'lon', 'action'])
for row in conflator.matches:
writer.writerow(row)