|
1 | 1 | __author__ = 'stephanie'
|
2 |
| -import sys |
3 |
| -import os |
| 2 | + |
4 | 3 |
|
5 | 4 |
|
6 | 5 | import matplotlib.pyplot as plt
|
7 | 6 | from matplotlib import dates
|
8 | 7 |
|
9 | 8 |
|
10 |
| -#this will be removed when we can installthe api |
11 |
| -# this_file = os.path.realpath(__file__) |
12 |
| -# directory = os.path.dirname(os.path.dirname(this_file)) |
13 |
| -# print directory |
14 |
| -# sys.path.insert(0, directory) |
15 | 9 |
|
16 | 10 | from odm2api.ODMconnection import dbconnection
|
17 | 11 | from odm2api.ODM2.services.readService import *
|
| 12 | +from odm2api.ODM2.services import CreateODM2 |
18 | 13 | # Create a connection to the ODM2 database
|
19 | 14 | # ----------------------------------------
|
20 | 15 |
|
21 | 16 |
|
22 | 17 | #connect to database
|
23 |
| -#createconnection (dbtype, servername, dbname, username, password) |
24 |
| -#session_factory = dbconnection.createConnection('mysql', 'localhost', 'odm2', 'ODM', 'odm') |
25 |
| -#session_factory = dbconnection.createConnection('connection type: sqlite|mysql|mssql|postgresql', '/your/path/to/db/goes/here', 2.0) |
26 |
| -session_factory = dbconnection.createConnection('sqlite', '/Users/denversmith/Downloads/ODM2.sqlite', 2.0) |
27 |
| -# session_factory= dbconnection.createConnection('mssql') |
| 18 | +# createconnection (dbtype, servername, dbname, username, password) |
| 19 | +# session_factory = dbconnection.createConnection('connection type: sqlite|mysql|mssql|postgresql', '/your/path/to/db/goes/here', 2.0)#sqlite |
| 20 | +# session_factory = dbconnection.createConnection('mysql', 'localhost', 'odm2', 'ODM', 'odm')#mysql |
| 21 | +# session_factory= dbconnection.createConnection('mssql', "(local)", "LBRODM2", "ODM", "odm")#win MSSQL |
| 22 | +session_factory= dbconnection.createConnection('mssql', "arroyoodm2", "", "ODM", "odm")#mac/linux MSSQL |
| 23 | +# session_factory = dbconnection.createConnection('sqlite', '/Users/Stephanie/Desktop/TestODM2.db', 2.0) |
28 | 24 |
|
29 | 25 |
|
30 | 26 |
|
31 | 27 | #_session = session_factory.getSession()
|
32 |
| - |
33 | 28 | read = ReadODM2(session_factory)
|
| 29 | +create =CreateODM2(session_factory) |
34 | 30 |
|
35 | 31 |
|
36 | 32 |
|
37 | 33 | # Run some basic sample queries.
|
38 | 34 | # ------------------------------
|
39 | 35 | # Get all of the variables from the database and print their names to the console
|
40 | 36 | allVars = read.getVariables()
|
41 |
| - |
| 37 | +print ("\n-------- Information about Variables ---------") |
42 | 38 | for x in allVars:
|
43 | 39 | print(x.VariableCode + ": " + x.VariableNameCV)
|
44 | 40 |
|
45 | 41 |
|
46 | 42 |
|
47 | 43 | # Get all of the people from the database
|
48 | 44 | allPeople = read.getPeople()
|
49 |
| - |
| 45 | +print ("\n-------- Information about People ---------") |
50 | 46 | for x in allPeople:
|
51 | 47 | print(x.PersonFirstName + " " + x.PersonLastName)
|
52 | 48 |
|
53 | 49 | try:
|
54 | 50 | print("\n-------- Information about an Affiliation ---------")
|
55 |
| - allaff = read.getAllAffiliations() |
| 51 | + allaff = read.getAffiliations() |
56 | 52 | for x in allaff:
|
57 | 53 | print(x.PersonObj.PersonFirstName + ": " + str(x.OrganizationID))
|
58 | 54 | except Exception as e:
|
59 | 55 | print("Unable to demo getAllAffiliations", e)
|
60 | 56 |
|
61 | 57 | # Get all of the SamplingFeatures from the database that are Sites
|
62 | 58 | try:
|
63 |
| - siteFeatures = read.getSamplingFeaturesByType('Site') |
| 59 | + print ("\n-------- Information about Sites ---------") |
| 60 | + siteFeatures = read.getSamplingFeatures() |
| 61 | + # siteFeatures = read.getSamplingFeatures(type='Site') |
64 | 62 | numSites = len(siteFeatures)
|
65 | 63 |
|
66 | 64 | for x in siteFeatures:
|
67 |
| - print(x.SamplingFeatureCode + ": " + x.SamplingFeatureName) |
| 65 | + print(x.SamplingFeatureCode + ": " + x.SamplingFeatureTypeCV ) |
68 | 66 | except Exception as e:
|
69 | 67 | print("Unable to demo getSamplingFeaturesByType", e)
|
70 | 68 |
|
71 | 69 |
|
72 | 70 | # Now get the SamplingFeature object for a SamplingFeature code
|
73 | 71 | try:
|
74 |
| - sf = read.getSamplingFeatureByCode('USU-LBR-Mendon') |
| 72 | + sf = read.getSamplingFeatures(code=['USU-LBR-Mendon'])[0] |
75 | 73 | print(sf)
|
76 | 74 | print("\n-------- Information about an individual SamplingFeature ---------")
|
77 | 75 | print("The following are some of the attributes of a SamplingFeature retrieved using getSamplingFeatureByCode(): \n")
|
|
87 | 85 | #add sampling feature
|
88 | 86 | print("\n------------ Create Sampling Feature --------- \n")
|
89 | 87 | try:
|
90 |
| - from odm2api.ODM2.models import SamplingFeatures |
91 |
| - newsf = SamplingFeatures() |
| 88 | + # from odm2api.ODM2.models import SamplingFeatures |
92 | 89 | session = session_factory.getSession()
|
93 |
| - newsf.FeatureGeometry = "POINT(-111.946 41.718)" |
94 |
| - newsf.Elevation_m=100 |
95 |
| - newsf.ElevationDatumCV=sf.ElevationDatumCV |
96 |
| - newsf.SamplingFeatureCode= "TestSF" |
97 |
| - newsf.SamplingFeatureDescription = "this is a test to add Feature Geomotry" |
98 |
| - newsf.SamplingFeatureGeotypeCV= "Point" |
99 |
| - newsf.SamplingFeatureTypeCV=sf.SamplingFeatureTypeCV |
100 |
| - newsf.SamplingFeatureUUID= sf.SamplingFeatureUUID+"2" |
101 |
| - session.add(newsf) |
| 90 | + newsf = Sites(FeatureGeometryWKT = "POINT(-111.946 41.718)", Elevation_m=100, ElevationDatumCV=sf.ElevationDatumCV, |
| 91 | + SamplingFeatureCode= "TestSF",SamplingFeatureDescription = "this is a test to add Feature Geomotry", |
| 92 | + SamplingFeatureGeotypeCV= "Point", SamplingFeatureTypeCV=sf.SamplingFeatureTypeCV,SamplingFeatureUUID= sf.SamplingFeatureUUID+"2", |
| 93 | + SiteTypeCV="cave", Latitude= "100", Longitude= "-100", SpatialReferenceID= 0) |
| 94 | + |
| 95 | + create.createSamplingFeature(newsf) |
102 | 96 | #session.commit()
|
103 | 97 | print("new sampling feature added to database", newsf)
|
104 | 98 |
|
|
125 | 119 |
|
126 | 120 |
|
127 | 121 | # Now get a particular Result using a ResultID
|
128 |
| -print("\n------- Example of Retrieving Attributes of a Time Series Result -------") |
| 122 | +print("\n------- Example of Retrieving Attributes of a Result -------") |
129 | 123 | try:
|
130 |
| - tsResult = read.getTimeSeriesResultByResultId(1) |
| 124 | + tsResult = read.getResults(ids = [1])[0] |
131 | 125 | print (
|
132 |
| - "The following are some of the attributes for the TimeSeriesResult retrieved using getTimeSeriesResultByResultID(): \n" + |
133 |
| - "ResultTypeCV: " + tsResult.ResultObj.ResultTypeCV + "\n" + |
| 126 | + "The following are some of the attributes for the TimeSeriesResult retrieved using getResults(ids=[1]): \n" + |
| 127 | + "ResultTypeCV: " + tsResult.ResultTypeCV + "\n" + |
134 | 128 | # Get the ProcessingLevel from the TimeSeriesResult's ProcessingLevel object
|
135 |
| - "ProcessingLevel: " + tsResult.ResultObj.ProcessingLevelObj.Definition + "\n" + |
136 |
| - "SampledMedium: " + tsResult.ResultObj.SampledMediumCV + "\n" + |
| 129 | + "ProcessingLevel: " + tsResult.ProcessingLevelObj.Definition + "\n" + |
| 130 | + "SampledMedium: " + tsResult.SampledMediumCV + "\n" + |
137 | 131 | # Get the variable information from the TimeSeriesResult's Variable object
|
138 |
| - "Variable: " + tsResult.ResultObj.VariableObj.VariableCode + ": " + tsResult.ResultObj.VariableObj.VariableNameCV + "\n" |
139 |
| - "AggregationStatistic: " + tsResult.AggregationStatisticCV + "\n" + |
140 |
| - "Elevation_m: " + str(sf.Elevation_m) + "\n" + |
| 132 | + "Variable: " + tsResult.VariableObj.VariableCode + ": " + tsResult.VariableObj.VariableNameCV + "\n" |
| 133 | + #"AggregationStatistic: " + tsResult.AggregationStatisticCV + "\n" + |
| 134 | + |
141 | 135 | # Get the site information by drilling down
|
142 |
| - "SamplingFeature: " + tsResult.ResultObj.FeatureActionObj.SamplingFeatureObj.SamplingFeatureCode + " - " + |
143 |
| - tsResult.ResultObj.FeatureActionObj.SamplingFeatureObj.SamplingFeatureName) |
| 136 | + "SamplingFeature: " + tsResult.FeatureActionObj.SamplingFeatureObj.SamplingFeatureCode + " - " + |
| 137 | + tsResult.FeatureActionObj.SamplingFeatureObj.SamplingFeatureName) |
144 | 138 | except Exception as e:
|
145 | 139 | print("Unable to demo Example of retrieving Attributes of a time Series Result: ", e)
|
146 | 140 |
|
147 | 141 | # Get the values for a particular TimeSeriesResult
|
148 | 142 | print("\n-------- Example of Retrieving Time Series Result Values ---------")
|
149 | 143 |
|
150 |
| -tsValues = read.getTimeSeriesResultValuesByResultId(1) # Return type is a pandas dataframe |
| 144 | +tsValues = read.getResultValues(resultid = 1) # Return type is a pandas datafram |
151 | 145 |
|
152 | 146 | # Print a few Time Series Values to the console
|
153 | 147 | # tsValues.set_index('ValueDateTime', inplace=True)
|
|
159 | 153 | # Plot the time series
|
160 | 154 |
|
161 | 155 | try:
|
162 |
| - fig = plt.figure() |
163 |
| - ax = fig.add_subplot(111) |
164 |
| - tsValues.plot(x='ValueDateTime', y='DataValue', kind='line', |
165 |
| - title=tsResult.ResultObj.VariableObj.VariableNameCV + " at " + tsResult.ResultObj.FeatureActionObj.SamplingFeatureObj.SamplingFeatureName, |
166 |
| - ax=ax) |
167 |
| - ax.set_ylabel(tsResult.ResultObj.VariableObj.VariableNameCV + " (" + tsResult.ResultObj.UnitsObj.UnitsAbbreviation + ")") |
168 |
| - ax.set_xlabel("Date/Time") |
169 |
| - ax.xaxis.set_minor_locator(dates.MonthLocator()) |
170 |
| - ax.xaxis.set_minor_formatter(dates.DateFormatter('%b')) |
171 |
| - ax.xaxis.set_major_locator(dates.YearLocator()) |
172 |
| - ax.xaxis.set_major_formatter(dates.DateFormatter('\n%Y')) |
173 |
| - ax.grid(True) |
| 156 | + plt.figure() |
| 157 | + ax=tsValues.plot(x='ValueDateTime', y='DataValue') |
| 158 | + |
174 | 159 | plt.show()
|
175 | 160 | except Exception as e:
|
176 | 161 | print("Unable to demo plotting of tsValues: ", e)
|
0 commit comments