This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """Code to read .mca region files | |
| I modified the javascript library mca-js to create this file. | |
| mca-js: https://github.com/thejonwithnoh/mca-js | |
| This is largely just a python interpretation of that script. | |
| ----------- | |
| MIT License | |
| Copyright (c) 2019 Nicholas Westerhausen |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Generate a DNSSEC DS record based on the incoming DNSKEY record | |
| The DNSKEY can be found using for example 'dig': | |
| $ dig DNSKEY secure.widodh.nl | |
| The output can then be parsed with the following code to generate a DS record | |
| for in the parent DNS zone |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ''' | |
| A simple tool for exporting from a PostGIS table to GeoJSON and TopoJSON. Assumes Python 2.7+, | |
| psycopg2, and TopoJSON are already installed and in your PATH. | |
| Adapted from Bryan McBride's PHP implementation | |
| (https://gist.github.com/bmcbride/1913855/) | |
| by John Czaplewski | jczaplew@gmail.com | @JJCzaplewski | |
| TODO: | |
| - Add argument for SRS |