You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 24, 2021. It is now read-only.
as GeoCompare is meant to be used as a command-line program, being able to pass in a different filename using --config parameter to allow reading a config file from a custom file/path would be nice to have.
This shoulld be relatively simple and should just involve:
as GeoCompare is meant to be used as a command-line program, being able to pass in a different filename using
--config
parameter to allow reading a config file from a custom file/path would be nice to have.This shoulld be relatively simple and should just involve:
import argparse
line inmain.py
if __name__ == "__main__":
configfile = Config.from_file('./config.json')
line to use the values from argparse instead of a hardcoded filenameThe text was updated successfully, but these errors were encountered: