2021-05-19 22:57:46 +03:00
|
|
|
#!/usr/bin/python3
|
|
|
|
import argparse
|
|
|
|
import geopandas
|
|
|
|
import psycopg2
|
|
|
|
import matplotlib.pyplot as plt
|
|
|
|
|
|
|
|
from matplotlib import rc
|
|
|
|
|
2021-05-19 22:57:47 +03:00
|
|
|
# CMAP = 'Set3' # this is nice too
|
2021-05-19 22:57:47 +03:00
|
|
|
CMAP = 'tab20c'
|
2021-05-19 22:57:47 +03:00
|
|
|
|
2021-05-19 22:57:46 +03:00
|
|
|
BOUNDS = ('xmin', 'ymin', 'xmax', 'ymax')
|
2021-05-19 22:57:47 +03:00
|
|
|
BLACK, GREEN, ORANGE, PURPLE = '#000000', '#1b9e77', '#d95f02', '#7570b3'
|
2021-05-19 22:57:47 +03:00
|
|
|
PSQL_CREDS = "host=127.0.0.1 dbname=osm user=osm password=osm"
|
2021-05-19 22:57:46 +03:00
|
|
|
|
|
|
|
|
|
|
|
def parse_args():
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
description='Convert geopackage to an image')
|
2021-05-19 22:57:47 +03:00
|
|
|
parser.add_argument('--group1-table')
|
|
|
|
parser.add_argument('--group1-where')
|
|
|
|
parser.add_argument('--group1-cmap', type=bool)
|
2021-05-19 22:57:46 +03:00
|
|
|
|
2021-05-19 22:57:47 +03:00
|
|
|
parser.add_argument('--group2-table')
|
|
|
|
parser.add_argument('--group2-where')
|
|
|
|
parser.add_argument('--group2-cmap', type=bool)
|
2021-05-19 22:57:46 +03:00
|
|
|
|
2021-05-19 22:57:47 +03:00
|
|
|
parser.add_argument('--group3-table')
|
|
|
|
parser.add_argument('--group3-where')
|
|
|
|
parser.add_argument('--group3-cmap', type=bool)
|
2021-05-19 22:57:46 +03:00
|
|
|
|
2021-05-19 22:57:47 +03:00
|
|
|
parser.add_argument('--widthdiv',
|
2021-05-19 22:57:47 +03:00
|
|
|
default=1, type=float, help='Size divisor')
|
|
|
|
|
2021-05-19 22:57:46 +03:00
|
|
|
parser.add_argument('-o', '--outfile', metavar='<file>')
|
2021-05-19 22:57:47 +03:00
|
|
|
parser.add_argument('--clip', type=float, nargs=4, metavar=BOUNDS)
|
2021-05-19 22:57:46 +03:00
|
|
|
return parser.parse_args()
|
|
|
|
|
|
|
|
|
2021-05-19 22:57:47 +03:00
|
|
|
def read_layer(table, maybe_where=None):
|
|
|
|
if not table:
|
|
|
|
return
|
|
|
|
conn = psycopg2.connect(PSQL_CREDS)
|
|
|
|
sql = "SELECT way FROM %s" % table
|
|
|
|
if maybe_where:
|
|
|
|
sql += " WHERE %s" % maybe_where
|
|
|
|
return geopandas.read_postgis(sql, con=conn, geom_col='way')
|
2021-05-19 22:57:46 +03:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
args = parse_args()
|
2021-05-19 22:57:47 +03:00
|
|
|
group1 = read_layer(args.group1_table, args.group1_where)
|
|
|
|
group2 = read_layer(args.group2_table, args.group2_where)
|
|
|
|
group3 = read_layer(args.group3_table, args.group3_where)
|
2021-05-19 22:57:47 +03:00
|
|
|
c1 = {'cmap': CMAP} if args.group1_cmap else {'color': BLACK}
|
|
|
|
c2 = {'cmap': CMAP} if args.group2_cmap else {'color': ORANGE}
|
|
|
|
c3 = {'cmap': CMAP} if args.group3_cmap else {'color': GREEN}
|
2021-05-19 22:57:46 +03:00
|
|
|
|
|
|
|
rc('text', usetex=True)
|
|
|
|
fig, ax = plt.subplots()
|
2021-05-19 22:57:47 +03:00
|
|
|
fig.set_figwidth(8.27 / args.widthdiv)
|
2021-05-19 22:57:46 +03:00
|
|
|
if c := args.clip:
|
|
|
|
ax.set_xlim(left=c[0], right=c[2])
|
|
|
|
ax.set_ylim(bottom=c[1], top=c[3])
|
|
|
|
|
2021-05-19 22:57:47 +03:00
|
|
|
group1 is not None and group1.plot(ax=ax, **c1)
|
|
|
|
group2 is not None and group2.plot(ax=ax, **c2)
|
|
|
|
group3 is not None and group3.plot(ax=ax, **c3)
|
2021-05-19 22:57:46 +03:00
|
|
|
|
|
|
|
ax.axis('off')
|
|
|
|
ax.margins(0, 0)
|
|
|
|
if args.outfile:
|
2021-05-19 22:57:47 +03:00
|
|
|
fig.savefig(args.outfile, bbox_inches='tight', dpi=600)
|
2021-05-19 22:57:46 +03:00
|
|
|
else:
|
|
|
|
plt.show()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|