Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dev from main #24

Merged
merged 2 commits into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 61 additions & 0 deletions oceanstream/L0_unprocessed_data/template.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
"""
Module Name: module_name_here.py
Description: Brief description of what this module does.
Author: Your Name
Date: Creation date
"""

# Import necessary libraries
import os
import sys

# Constants (if any)
CONSTANT_NAME = "Constant Value"


def function_name_1(arg1, arg2):
"""
Brief description of the function.

Parameters:
- arg1 (type): Description of arg1.
- arg2 (type): Description of arg2.

Returns:
- type: Description of the return value.

Example:
>>> function_name_1(value1, value2)
Expected Output
"""
# Function implementation
path = os.path.join(["this", "and", "that"])
current_path = sys.path
return path, current_path


def function_name_2(arg1):
"""
Brief description of the function.

Parameters:
- arg1 (type): Description of arg1.

Returns:
- type: Description of the return value.

Example:
>>> function_name_2(value1)
Expected Output
"""
# Function implementation
pass


# Additional functions...


if __name__ == "__main__":
# Code to be executed if this module is run as a standalone script
# For example, for testing purposes
pass
61 changes: 61 additions & 0 deletions oceanstream/L2_calibrated_data/template.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
"""
Module Name: module_name_here.py
Description: Brief description of what this module does.
Author: Your Name
Date: Creation date
"""

# Import necessary libraries
import os
import sys

# Constants (if any)
CONSTANT_NAME = "Constant Value"


def function_name_1(arg1, arg2):
"""
Brief description of the function.

Parameters:
- arg1 (type): Description of arg1.
- arg2 (type): Description of arg2.

Returns:
- type: Description of the return value.

Example:
>>> function_name_1(value1, value2)
Expected Output
"""
# Function implementation
path = os.path.join(["this", "and", "that"])
current_path = sys.path
return path, current_path


def function_name_2(arg1):
"""
Brief description of the function.

Parameters:
- arg1 (type): Description of arg1.

Returns:
- type: Description of the return value.

Example:
>>> function_name_2(value1)
Expected Output
"""
# Function implementation
pass


# Additional functions...


if __name__ == "__main__":
# Code to be executed if this module is run as a standalone script
# For example, for testing purposes
pass
61 changes: 61 additions & 0 deletions oceanstream/L3_regridded_data/template.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
"""
Module Name: module_name_here.py
Description: Brief description of what this module does.
Author: Your Name
Date: Creation date
"""

# Import necessary libraries
import os
import sys

# Constants (if any)
CONSTANT_NAME = "Constant Value"


def function_name_1(arg1, arg2):
"""
Brief description of the function.

Parameters:
- arg1 (type): Description of arg1.
- arg2 (type): Description of arg2.

Returns:
- type: Description of the return value.

Example:
>>> function_name_1(value1, value2)
Expected Output
"""
# Function implementation
path = os.path.join(["this", "and", "that"])
current_path = sys.path
return path, current_path


def function_name_2(arg1):
"""
Brief description of the function.

Parameters:
- arg1 (type): Description of arg1.

Returns:
- type: Description of the return value.

Example:
>>> function_name_2(value1)
Expected Output
"""
# Function implementation
pass


# Additional functions...


if __name__ == "__main__":
# Code to be executed if this module is run as a standalone script
# For example, for testing purposes
pass
Loading