Skip to content

Instantly share code, notes, and snippets.

@daniviga
Created August 1, 2018 13:34
Show Gist options
  • Save daniviga/da1cc545d3f49058e7f9071e51a5e9a6 to your computer and use it in GitHub Desktop.
Save daniviga/da1cc545d3f49058e7f9071e51a5e9a6 to your computer and use it in GitHub Desktop.
check_input.py standalone command for OQ Engine 3.1
#!/opt/openquake/bin/python3
# -*- coding: utf-8 -*-
# vim: tabstop=4 shiftwidth=4 softtabstop=4
#
# Copyright (C) 2018 GEM Foundation
#
# OpenQuake is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# OpenQuake is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with OpenQuake. If not, see <http://www.gnu.org/licenses/>.
import logging
from openquake.baselib import sap
from openquake.commonlib import readinput
from openquake.calculators import base
@sap.Script
def check_input(job_ini_or_zip):
logging.basicConfig(level=logging.INFO)
calc = base.calculators(readinput.get_oqparam(job_ini_or_zip))
calc.read_inputs()
check_input.arg('job_ini_or_zip', 'Check the input files')
if __name__ == '__main__':
check_input.callfunc()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment