output_file:Path=typer.Option(None,help="A file to output the data to, accepted filetypes are: .nc, .csv, .xlsx, .json"),
verbose:bool=typer.Option(False,help="print the input data and output data to terminal")
temperature:float=typer.Option(50,help="The temperature of the aquifer, if not provided this will be calculated using a Temperature gradient of 8°C + 31°C/km with the depth parameter,"),
thickness:float=typer.Option(500,help="The thickness of the aquifer, units: [m]"),
ntg:float=typer.Option(0.5,help="The net-to-gross of the aquifer, units: [0-1]"),
porosity:float=typer.Option(0.5,help="The porosity of the aquifer, between 0-1 (1 = 100%), units: [0-1]"),
depth:float=typer.Option(500,help="The depth of the aquifer, +ive downwards, units: [m]"),
)->None:
"""Perform the potential calculation for a given location."""