Source code for eva.eva_path
# (C) Copyright 2021-2022 United States Government as represented by the Administrator of the
# National Aeronautics and Space Administration. All Rights Reserved.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
# --------------------------------------------------------------------------------------------------
import os
# --------------------------------------------------------------------------------------------------
[docs]def return_eva_path():
"""
Return the directory path of the current script file.
Returns:
str: Directory path of the current script file.
"""
return os.path.split(__file__)[0]
# --------------------------------------------------------------------------------------------------