def count_feature(mwm_path, feature_name):
    mwm = MWM(open(mwm_path, 'rb'))
    mwm.read_header()
    mwm.read_types(os.path.join(OMIM_ROOT, 'data', 'types.txt'))
    counter = 0
    for feature in mwm.iter_features():
        if feature_name in feature['header']['types']:
            counter += 1
    return counter
Exemple #2
0
if len(sys.argv) < 4:
    print('Finds features in an mwm file based on a query')
    print('Usage: {0} <country.mwm> <type> <string>'.format(sys.argv[0]))
    print('')
    print('Type:')
    print('  t for inside types ("t hwtag" will find all hwtags-*)')
    print('  et for exact type ("et shop" won\'t find shop-chemist)')
    print('  n for names, case-sensitive ("n Starbucks" for all starbucks)')
    print('  m for metadata keys ("m flats" for features with flats)')
    print('  id for feature id ("id 1234" for feature #1234)')
    sys.exit(1)

typ = sys.argv[2].lower()
find = sys.argv[3].decode('utf-8')

mwm = MWM(open(sys.argv[1], 'rb'))
mwm.read_header()
mwm.read_types(
    os.path.join(os.path.dirname(sys.argv[0]), '..', '..', '..', 'data',
                 'types.txt'))
for i, feature in enumerate(mwm.iter_features(metadata=True)):
    found = False
    if typ == 'n' and 'name' in feature['header']:
        for value in feature['header']['name'].values():
            if find in value:
                found = True
    elif typ in ('t', 'et'):
        for t in feature['header']['types']:
            if t == find:
                found = True
            elif typ == 't' and find in t: