Skip to content

Commit 444bb69

Browse files
committed
add header to all files
1 parent 9dabab1 commit 444bb69

24 files changed

Lines changed: 220 additions & 4 deletions

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Amir Mardan
3+
Copyright (c) 2023 Les solutions Géostack, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

first_break_picking/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# -*- coding: utf-8 -*-
2+
# =============================================================================
3+
# Copyright (C) Les solutions géostack, Inc.
4+
#
5+
# This file is part of the First-Break Picking package.
6+
# Licensed under the terms of the MIT License.
7+
#
8+
# https://github.com/geo-stack/first_break_picking
9+
# =============================================================================
10+
111
import os
212
import sys
313
package_path = os.path.abspath(os.path.join(__file__, "../"))
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
1+
# -*- coding: utf-8 -*-
2+
# =============================================================================
3+
# Copyright (C) Les solutions géostack, Inc.
4+
#
5+
# This file is part of the First-Break Picking package.
6+
# Licensed under the terms of the MIT License.
7+
#
8+
# https://github.com/geo-stack/first_break_picking
9+
# =============================================================================
110
from first_break_picking.data.data_segy2npy import save_shots_fb

first_break_picking/data/_data_dc_del.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# -*- coding: utf-8 -*-
2+
# =============================================================================
3+
# Copyright (C) Les solutions géostack, Inc.
4+
#
5+
# This file is part of the First-Break Picking package.
6+
# Licensed under the terms of the MIT License.
7+
#
8+
# https://github.com/geo-stack/first_break_picking
9+
# =============================================================================
10+
111
from pathlib import Path
212
import os
313
import numpy as np

first_break_picking/data/_data_fb.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# -*- coding: utf-8 -*-
2+
# =============================================================================
3+
# Copyright (C) Les solutions géostack, Inc.
4+
#
5+
# This file is part of the First-Break Picking package.
6+
# Licensed under the terms of the MIT License.
7+
#
8+
# https://github.com/geo-stack/first_break_picking
9+
# =============================================================================
10+
111
import os
212
from typing import List, Tuple
313
import pandas as pd

first_break_picking/data/_datasets.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# -*- coding: utf-8 -*-
2+
# =============================================================================
3+
# Copyright (C) Les solutions géostack, Inc.
4+
#
5+
# This file is part of the First-Break Picking package.
6+
# Licensed under the terms of the MIT License.
7+
#
8+
# https://github.com/geo-stack/first_break_picking
9+
# =============================================================================
10+
111
from torch.utils.data import Dataset, random_split, DataLoader, ConcatDataset
212
import os
313
from typing import Tuple, List, Union

first_break_picking/data/data_generator.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# -*- coding: utf-8 -*-
2+
# =============================================================================
3+
# Copyright (C) Les solutions géostack, Inc.
4+
#
5+
# This file is part of the First-Break Picking package.
6+
# Licensed under the terms of the MIT License.
7+
#
8+
# https://github.com/geo-stack/first_break_picking
9+
# =============================================================================
10+
111
import numpy as np
212
from pathlib import Path
313
import argparse

first_break_picking/data/data_segy2npy.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# -*- coding: utf-8 -*-
2+
# =============================================================================
3+
# Copyright (C) Les solutions géostack, Inc.
4+
#
5+
# This file is part of the First-Break Picking package.
6+
# Licensed under the terms of the MIT License.
7+
#
8+
# https://github.com/geo-stack/first_break_picking
9+
# =============================================================================
10+
111
import numpy as np
212
import os
313
from typing import List, Union, Tuple, Optional

first_break_picking/data/data_utils.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# -*- coding: utf-8 -*-
2+
# =============================================================================
3+
# Copyright (C) Les solutions géostack, Inc.
4+
#
5+
# This file is part of the First-Break Picking package.
6+
# Licensed under the terms of the MIT License.
7+
#
8+
# https://github.com/geo-stack/first_break_picking
9+
# =============================================================================
10+
111
import random
212
from math import ceil
313
from typing import Tuple, List, Any, Union, Optional

first_break_picking/data/dataset.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# -*- coding: utf-8 -*-
2+
# =============================================================================
3+
# Copyright (C) Les solutions géostack, Inc.
4+
#
5+
# This file is part of the First-Break Picking package.
6+
# Licensed under the terms of the MIT License.
7+
#
8+
# https://github.com/geo-stack/first_break_picking
9+
# =============================================================================
110
from torch.utils.data import Dataset, random_split, DataLoader, ConcatDataset
211
import os
312
from typing import Tuple, List, Union

0 commit comments

Comments
 (0)