-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdatabase_interface.py
52 lines (37 loc) · 1.34 KB
/
database_interface.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
class ExampleDatabaseInterface:
"""
an example database interface. All databases fed into mt-explore must
follow this pattern
"""
def __init__(self):
pass
def get_record(self,project : str,station : str,type : str = 'mtpy'):
"""
returns an mtpy object given a project and station string code
Parameters
==========
project : str
the desired project code of the queried station
station : str
the desired station string
type : str
the type of object to yield. mt-explore will assign this variable 'mtpy',
so make sure any interface that depends on the ExampleDatabaseInterface
can take these arguments
Returns
=======
mtpy_obj : MT
an mtpy.core.MT object representing the project and station desired
"""
pass
def get_df(self):
"""
returns a pandas dataframe representation of the databases's station data
Returns
=======
dataframe : pd.DataFrame
a pandas dataframe with columns:
station, project, latitude, longitude
must also have a sensible .index
"""
pass