I hereby claim:
- I am patsweet on github.
- I am psweet (https://keybase.io/psweet) on keybase.
- I have a public key ASALuWtIWN_0UvJkSCN-MjxHg2VRc1tqmfEc4t5BiN2esAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/python | |
| import argparse | |
| import os | |
| from pyPdf import PdfFileWriter, PdfFileReader | |
| def is_valid_file(parser, arg): | |
| if not os.path.exists(arg): | |
| parser.error("The file %s does not exist." % arg) | |
| else: | |
| return arg |
| # Parse County Tax Records into pipe-delimited files. | |
| # The raw data are all in fixed-width format. The record layout, | |
| # includes the field names and the lengths of each record. Parsed | |
| # in order from the 0-character, it's easy to grab the correct | |
| # portion of the line for each record. E.g.: | |
| # 0-1 = period | |
| # 1-2 = bill_type | |
| # 2-17 = acct_num. | |
| # | |
| # The record layouts are found in the record_layouts directory. |
| var intersections, // Geojson | |
| map, | |
| delaware, // Lat/Lng of center of Delaware | |
| streetMapUrl, | |
| streetMapLayer, | |
| geosearch, | |
| legend, | |
| polyindex, // Custom ID for each point. | |
| highlightStyle = { | |
| fillColor: 'green', |