2baae0a182c2d83cff4f6a2830ffdb3b077e0676,skyalignments.py,,,#,251

Before Change


    alignments = find_alignments(observer, waypoints, allpoints=args.allpoints)
    if alignments:
        print("\nFound Alignments from %s:" % observer.name)
        pprint(alignments)
        // save_alignments_as_GPX(alignments)

    else:
        print("Couldn"t find any alignments with %s" % observer.name)

After Change


    if alignments:
        // pprint(alignments)
        cur_observer = None
        for a in alignments:
            if a["observer"] != cur_observer:
                cur_observer = a["observer"]
                print("\nFrom %s:" % cur_observer)

            print("%s, %s at %s (az %d +/- %.2f)"
                  % ( a["event"], a["target"],
                      a["time"],
                      a["azimuth"], a["slop"]))
        // save_alignments_as_GPX(alignments)

    else:
        print("Couldn"t find any alignments with %s" % observer.name)

Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: akkana/scripts
Commit Name: 2baae0a182c2d83cff4f6a2830ffdb3b077e0676
Time: 2019-04-29
Author: akkana@shallowsky.com
File Name: skyalignments.py
Class Name:
Method Name:


Project Name: akkana/scripts
Commit Name: 37b633d2ac3f2e020f41f27d0769b57201f66f7d
Time: 2019-09-21
Author: akkana@shallowsky.com
File Name: censusdata.py
Class Name:
Method Name:


Project Name: mozilla/TTS
Commit Name: d96690f83f5bc804f532b6c2d5cca208de401e7a
Time: 2018-11-02
Author: egolge@mozilla.com
File Name: utils/audio.py
Class Name: AudioProcessor
Method Name: __init__