Skip to content

Commit 599b6cd

Browse files
author
Stephanie Reeder
committed
Merge Pull request #61 from ODM2/Dev1_0
resolve issues #60, #50, #36, #34, #33, #32, #29
2 parents 4acec1f + 9ac80e4 commit 599b6cd

18 files changed

+3883
-4505
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,4 @@ log
4343
.idea
4444

4545
.DS_Store
46+
.ipynb_checkpoints

Examples/Sample.py

+39-54
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,75 @@
11
__author__ = 'stephanie'
2-
import sys
3-
import os
2+
43

54

65
import matplotlib.pyplot as plt
76
from matplotlib import dates
87

98

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)
159

1610
from odm2api.ODMconnection import dbconnection
1711
from odm2api.ODM2.services.readService import *
12+
from odm2api.ODM2.services import CreateODM2
1813
# Create a connection to the ODM2 database
1914
# ----------------------------------------
2015

2116

2217
#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)
2824

2925

3026

3127
#_session = session_factory.getSession()
32-
3328
read = ReadODM2(session_factory)
29+
create =CreateODM2(session_factory)
3430

3531

3632

3733
# Run some basic sample queries.
3834
# ------------------------------
3935
# Get all of the variables from the database and print their names to the console
4036
allVars = read.getVariables()
41-
37+
print ("\n-------- Information about Variables ---------")
4238
for x in allVars:
4339
print(x.VariableCode + ": " + x.VariableNameCV)
4440

4541

4642

4743
# Get all of the people from the database
4844
allPeople = read.getPeople()
49-
45+
print ("\n-------- Information about People ---------")
5046
for x in allPeople:
5147
print(x.PersonFirstName + " " + x.PersonLastName)
5248

5349
try:
5450
print("\n-------- Information about an Affiliation ---------")
55-
allaff = read.getAllAffiliations()
51+
allaff = read.getAffiliations()
5652
for x in allaff:
5753
print(x.PersonObj.PersonFirstName + ": " + str(x.OrganizationID))
5854
except Exception as e:
5955
print("Unable to demo getAllAffiliations", e)
6056

6157
# Get all of the SamplingFeatures from the database that are Sites
6258
try:
63-
siteFeatures = read.getSamplingFeaturesByType('Site')
59+
print ("\n-------- Information about Sites ---------")
60+
siteFeatures = read.getSamplingFeatures()
61+
# siteFeatures = read.getSamplingFeatures(type='Site')
6462
numSites = len(siteFeatures)
6563

6664
for x in siteFeatures:
67-
print(x.SamplingFeatureCode + ": " + x.SamplingFeatureName)
65+
print(x.SamplingFeatureCode + ": " + x.SamplingFeatureTypeCV )
6866
except Exception as e:
6967
print("Unable to demo getSamplingFeaturesByType", e)
7068

7169

7270
# Now get the SamplingFeature object for a SamplingFeature code
7371
try:
74-
sf = read.getSamplingFeatureByCode('USU-LBR-Mendon')
72+
sf = read.getSamplingFeatures(code=['USU-LBR-Mendon'])[0]
7573
print(sf)
7674
print("\n-------- Information about an individual SamplingFeature ---------")
7775
print("The following are some of the attributes of a SamplingFeature retrieved using getSamplingFeatureByCode(): \n")
@@ -87,18 +85,14 @@
8785
#add sampling feature
8886
print("\n------------ Create Sampling Feature --------- \n")
8987
try:
90-
from odm2api.ODM2.models import SamplingFeatures
91-
newsf = SamplingFeatures()
88+
# from odm2api.ODM2.models import SamplingFeatures
9289
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)
10296
#session.commit()
10397
print("new sampling feature added to database", newsf)
10498

@@ -125,29 +119,29 @@
125119

126120

127121
# 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 -------")
129123
try:
130-
tsResult = read.getTimeSeriesResultByResultId(1)
124+
tsResult = read.getResults(ids = [1])[0]
131125
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" +
134128
# 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" +
137131
# 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+
141135
# 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)
144138
except Exception as e:
145139
print("Unable to demo Example of retrieving Attributes of a time Series Result: ", e)
146140

147141
# Get the values for a particular TimeSeriesResult
148142
print("\n-------- Example of Retrieving Time Series Result Values ---------")
149143

150-
tsValues = read.getTimeSeriesResultValuesByResultId(1) # Return type is a pandas dataframe
144+
tsValues = read.getResultValues(resultid = 1) # Return type is a pandas datafram
151145

152146
# Print a few Time Series Values to the console
153147
# tsValues.set_index('ValueDateTime', inplace=True)
@@ -159,18 +153,9 @@
159153
# Plot the time series
160154

161155
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+
174159
plt.show()
175160
except Exception as e:
176161
print("Unable to demo plotting of tsValues: ", e)

odm2api/ODM2/apiCustomType.py

-132
This file was deleted.

0 commit comments

Comments
 (0)