cdss-ruby 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.rubocop.yml +86 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/README.md +101 -0
- data/Rakefile +26 -0
- data/docs/Cdss/AdminCalls.html +399 -0
- data/docs/Cdss/Analysis.html +972 -0
- data/docs/Cdss/Client.html +581 -0
- data/docs/Cdss/Climate.html +1257 -0
- data/docs/Cdss/Concerns/LogReadingAttributes.html +406 -0
- data/docs/Cdss/Concerns/WellReadingAttributes.html +414 -0
- data/docs/Cdss/Concerns.html +117 -0
- data/docs/Cdss/GroundWater.html +945 -0
- data/docs/Cdss/Models/AdminCall.html +252 -0
- data/docs/Cdss/Models/Analysis.html +397 -0
- data/docs/Cdss/Models/CallAnalysis.html +140 -0
- data/docs/Cdss/Models/ClimateStation.html +249 -0
- data/docs/Cdss/Models/DiversionRecord.html +248 -0
- data/docs/Cdss/Models/Reading.html +301 -0
- data/docs/Cdss/Models/ReferenceTable.html +339 -0
- data/docs/Cdss/Models/RouteAnalysis.html +140 -0
- data/docs/Cdss/Models/SourceRoute.html +140 -0
- data/docs/Cdss/Models/Station.html +248 -0
- data/docs/Cdss/Models/Structure.html +259 -0
- data/docs/Cdss/Models/WaterClass.html +249 -0
- data/docs/Cdss/Models/WaterRight.html +255 -0
- data/docs/Cdss/Models/Well.html +251 -0
- data/docs/Cdss/Models.html +117 -0
- data/docs/Cdss/Parser.html +2155 -0
- data/docs/Cdss/Parsers/AdminCallsParser.html +201 -0
- data/docs/Cdss/Parsers/AnalysisParser.html +296 -0
- data/docs/Cdss/Parsers/BaseParser.html +207 -0
- data/docs/Cdss/Parsers/ClimateParser.html +253 -0
- data/docs/Cdss/Parsers/ReadingParser.html +201 -0
- data/docs/Cdss/Parsers/ReferenceTablesParser.html +201 -0
- data/docs/Cdss/Parsers/StationParser.html +201 -0
- data/docs/Cdss/Parsers/StructuresParser.html +305 -0
- data/docs/Cdss/Parsers/WaterRightsParser.html +219 -0
- data/docs/Cdss/Parsers/WellParser.html +357 -0
- data/docs/Cdss/Parsers.html +117 -0
- data/docs/Cdss/ReferenceTables.html +332 -0
- data/docs/Cdss/Structures.html +1132 -0
- data/docs/Cdss/SurfaceWater.html +798 -0
- data/docs/Cdss/Telemetry.html +763 -0
- data/docs/Cdss/Utils.html +1276 -0
- data/docs/Cdss/WaterRights.html +634 -0
- data/docs/Cdss.html +292 -0
- data/docs/_index.html +493 -0
- data/docs/class_list.html +54 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +503 -0
- data/docs/file.README.html +108 -0
- data/docs/file_list.html +59 -0
- data/docs/frames.html +22 -0
- data/docs/index.html +108 -0
- data/docs/js/app.js +344 -0
- data/docs/js/full_list.js +242 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +790 -0
- data/docs/top-level-namespace.html +110 -0
- data/lib/cdss/admin_calls.rb +44 -0
- data/lib/cdss/analysis.rb +183 -0
- data/lib/cdss/client.rb +121 -0
- data/lib/cdss/climate.rb +155 -0
- data/lib/cdss/concerns/log_reading_attributes.rb +48 -0
- data/lib/cdss/concerns/well_reading_attributes.rb +56 -0
- data/lib/cdss/ground_water.rb +112 -0
- data/lib/cdss/models/admin_call.rb +45 -0
- data/lib/cdss/models/analysis.rb +77 -0
- data/lib/cdss/models/climate_station.rb +40 -0
- data/lib/cdss/models/reading.rb +54 -0
- data/lib/cdss/models/reference_table.rb +56 -0
- data/lib/cdss/models/station.rb +40 -0
- data/lib/cdss/models/structure.rb +101 -0
- data/lib/cdss/models/water_right.rb +47 -0
- data/lib/cdss/models/well.rb +43 -0
- data/lib/cdss/parser.rb +172 -0
- data/lib/cdss/parsers/admin_calls_parser.rb +47 -0
- data/lib/cdss/parsers/analysis_parser.rb +124 -0
- data/lib/cdss/parsers/base_parser.rb +18 -0
- data/lib/cdss/parsers/climate_parser.rb +86 -0
- data/lib/cdss/parsers/reading_parser.rb +90 -0
- data/lib/cdss/parsers/reference_tables_parser.rb +55 -0
- data/lib/cdss/parsers/station_parser.rb +42 -0
- data/lib/cdss/parsers/structures_parser.rb +96 -0
- data/lib/cdss/parsers/water_rights_parser.rb +77 -0
- data/lib/cdss/parsers/well_parser.rb +107 -0
- data/lib/cdss/reference_tables.rb +147 -0
- data/lib/cdss/structures.rb +235 -0
- data/lib/cdss/surface_water.rb +186 -0
- data/lib/cdss/telemetry.rb +98 -0
- data/lib/cdss/utils.rb +152 -0
- data/lib/cdss/version.rb +5 -0
- data/lib/cdss/water_rights.rb +95 -0
- data/lib/cdss.rb +27 -0
- data/sig/cdss/ruby.rbs +6 -0
- metadata +272 -0
@@ -0,0 +1,790 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html >
|
3
|
+
<head>
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
5
|
+
<meta charset="utf-8" />
|
6
|
+
|
7
|
+
<link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" />
|
8
|
+
|
9
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" />
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
14
|
+
|
15
|
+
<script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
|
16
|
+
|
17
|
+
|
18
|
+
<title>Method List</title>
|
19
|
+
<base id="base_target" target="_parent" />
|
20
|
+
</head>
|
21
|
+
<body>
|
22
|
+
<div id="content">
|
23
|
+
<div class="fixed_header">
|
24
|
+
<h1 id="full_list_header">Method List</h1>
|
25
|
+
<div id="full_list_nav">
|
26
|
+
|
27
|
+
<span><a target="_self" href="class_list.html">
|
28
|
+
Classes
|
29
|
+
</a></span>
|
30
|
+
|
31
|
+
<span><a target="_self" href="method_list.html">
|
32
|
+
Methods
|
33
|
+
</a></span>
|
34
|
+
|
35
|
+
<span><a target="_self" href="file_list.html">
|
36
|
+
Files
|
37
|
+
</a></span>
|
38
|
+
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div id="search">
|
42
|
+
<label for="search-class">Search:</label>
|
43
|
+
<input id="search-class" type="text" />
|
44
|
+
</div>
|
45
|
+
</div>
|
46
|
+
|
47
|
+
<ul id="full_list" class="method">
|
48
|
+
|
49
|
+
|
50
|
+
<li class="odd ">
|
51
|
+
<div class="item">
|
52
|
+
<span class='object_link'><a href="Cdss/Client.html#api_key-instance_method" title="Cdss::Client#api_key (method)">#api_key</a></span>
|
53
|
+
<small>Cdss::Client</small>
|
54
|
+
</div>
|
55
|
+
</li>
|
56
|
+
|
57
|
+
|
58
|
+
<li class="even ">
|
59
|
+
<div class="item">
|
60
|
+
<span class='object_link'><a href="Cdss/Models/Analysis.html#attribute_list-class_method" title="Cdss::Models::Analysis.attribute_list (method)">attribute_list</a></span>
|
61
|
+
<small>Cdss::Models::Analysis</small>
|
62
|
+
</div>
|
63
|
+
</li>
|
64
|
+
|
65
|
+
|
66
|
+
<li class="odd ">
|
67
|
+
<div class="item">
|
68
|
+
<span class='object_link'><a href="Cdss/Models/Analysis.html#attributes-class_method" title="Cdss::Models::Analysis.attributes (method)">attributes</a></span>
|
69
|
+
<small>Cdss::Models::Analysis</small>
|
70
|
+
</div>
|
71
|
+
</li>
|
72
|
+
|
73
|
+
|
74
|
+
<li class="even ">
|
75
|
+
<div class="item">
|
76
|
+
<span class='object_link'><a href="Cdss/Utils.html#batch_dates-instance_method" title="Cdss::Utils#batch_dates (method)">#batch_dates</a></span>
|
77
|
+
<small>Cdss::Utils</small>
|
78
|
+
</div>
|
79
|
+
</li>
|
80
|
+
|
81
|
+
|
82
|
+
<li class="odd ">
|
83
|
+
<div class="item">
|
84
|
+
<span class='object_link'><a href="Cdss/Models/ReferenceTable.html#blank_or_nil%3F-instance_method" title="Cdss::Models::ReferenceTable#blank_or_nil? (method)">#blank_or_nil?</a></span>
|
85
|
+
<small>Cdss::Models::ReferenceTable</small>
|
86
|
+
</div>
|
87
|
+
</li>
|
88
|
+
|
89
|
+
|
90
|
+
<li class="even ">
|
91
|
+
<div class="item">
|
92
|
+
<span class='object_link'><a href="Cdss/Utils.html#build_query-instance_method" title="Cdss::Utils#build_query (method)">#build_query</a></span>
|
93
|
+
<small>Cdss::Utils</small>
|
94
|
+
</div>
|
95
|
+
</li>
|
96
|
+
|
97
|
+
|
98
|
+
<li class="odd ">
|
99
|
+
<div class="item">
|
100
|
+
<span class='object_link'><a href="Cdss.html#client-class_method" title="Cdss.client (method)">client</a></span>
|
101
|
+
<small>Cdss</small>
|
102
|
+
</div>
|
103
|
+
</li>
|
104
|
+
|
105
|
+
|
106
|
+
<li class="even ">
|
107
|
+
<div class="item">
|
108
|
+
<span class='object_link'><a href="Cdss/Utils.html#fetch_paginated_data-instance_method" title="Cdss::Utils#fetch_paginated_data (method)">#fetch_paginated_data</a></span>
|
109
|
+
<small>Cdss::Utils</small>
|
110
|
+
</div>
|
111
|
+
</li>
|
112
|
+
|
113
|
+
|
114
|
+
<li class="odd ">
|
115
|
+
<div class="item">
|
116
|
+
<span class='object_link'><a href="Cdss/Utils.html#format_date-instance_method" title="Cdss::Utils#format_date (method)">#format_date</a></span>
|
117
|
+
<small>Cdss::Utils</small>
|
118
|
+
</div>
|
119
|
+
</li>
|
120
|
+
|
121
|
+
|
122
|
+
<li class="even ">
|
123
|
+
<div class="item">
|
124
|
+
<span class='object_link'><a href="Cdss/Utils.html#format_query_param-instance_method" title="Cdss::Utils#format_query_param (method)">#format_query_param</a></span>
|
125
|
+
<small>Cdss::Utils</small>
|
126
|
+
</div>
|
127
|
+
</li>
|
128
|
+
|
129
|
+
|
130
|
+
<li class="odd ">
|
131
|
+
<div class="item">
|
132
|
+
<span class='object_link'><a href="Cdss/AdminCalls.html#get_admin_calls-instance_method" title="Cdss::AdminCalls#get_admin_calls (method)">#get_admin_calls</a></span>
|
133
|
+
<small>Cdss::AdminCalls</small>
|
134
|
+
</div>
|
135
|
+
</li>
|
136
|
+
|
137
|
+
|
138
|
+
<li class="even ">
|
139
|
+
<div class="item">
|
140
|
+
<span class='object_link'><a href="Cdss/Analysis.html#get_call_analysis_gnisid-instance_method" title="Cdss::Analysis#get_call_analysis_gnisid (method)">#get_call_analysis_gnisid</a></span>
|
141
|
+
<small>Cdss::Analysis</small>
|
142
|
+
</div>
|
143
|
+
</li>
|
144
|
+
|
145
|
+
|
146
|
+
<li class="odd ">
|
147
|
+
<div class="item">
|
148
|
+
<span class='object_link'><a href="Cdss/Analysis.html#get_call_analysis_wdid-instance_method" title="Cdss::Analysis#get_call_analysis_wdid (method)">#get_call_analysis_wdid</a></span>
|
149
|
+
<small>Cdss::Analysis</small>
|
150
|
+
</div>
|
151
|
+
</li>
|
152
|
+
|
153
|
+
|
154
|
+
<li class="even ">
|
155
|
+
<div class="item">
|
156
|
+
<span class='object_link'><a href="Cdss/Climate.html#get_climate_frost_dates-instance_method" title="Cdss::Climate#get_climate_frost_dates (method)">#get_climate_frost_dates</a></span>
|
157
|
+
<small>Cdss::Climate</small>
|
158
|
+
</div>
|
159
|
+
</li>
|
160
|
+
|
161
|
+
|
162
|
+
<li class="odd ">
|
163
|
+
<div class="item">
|
164
|
+
<span class='object_link'><a href="Cdss/Climate.html#get_climate_stations-instance_method" title="Cdss::Climate#get_climate_stations (method)">#get_climate_stations</a></span>
|
165
|
+
<small>Cdss::Climate</small>
|
166
|
+
</div>
|
167
|
+
</li>
|
168
|
+
|
169
|
+
|
170
|
+
<li class="even ">
|
171
|
+
<div class="item">
|
172
|
+
<span class='object_link'><a href="Cdss/Climate.html#get_climate_ts-instance_method" title="Cdss::Climate#get_climate_ts (method)">#get_climate_ts</a></span>
|
173
|
+
<small>Cdss::Climate</small>
|
174
|
+
</div>
|
175
|
+
</li>
|
176
|
+
|
177
|
+
|
178
|
+
<li class="odd ">
|
179
|
+
<div class="item">
|
180
|
+
<span class='object_link'><a href="Cdss/Climate.html#get_climate_ts_day-instance_method" title="Cdss::Climate#get_climate_ts_day (method)">#get_climate_ts_day</a></span>
|
181
|
+
<small>Cdss::Climate</small>
|
182
|
+
</div>
|
183
|
+
</li>
|
184
|
+
|
185
|
+
|
186
|
+
<li class="even ">
|
187
|
+
<div class="item">
|
188
|
+
<span class='object_link'><a href="Cdss/Climate.html#get_climate_ts_month-instance_method" title="Cdss::Climate#get_climate_ts_month (method)">#get_climate_ts_month</a></span>
|
189
|
+
<small>Cdss::Climate</small>
|
190
|
+
</div>
|
191
|
+
</li>
|
192
|
+
|
193
|
+
|
194
|
+
<li class="odd ">
|
195
|
+
<div class="item">
|
196
|
+
<span class='object_link'><a href="Cdss/Structures.html#get_diversion_records_ts-instance_method" title="Cdss::Structures#get_diversion_records_ts (method)">#get_diversion_records_ts</a></span>
|
197
|
+
<small>Cdss::Structures</small>
|
198
|
+
</div>
|
199
|
+
</li>
|
200
|
+
|
201
|
+
|
202
|
+
<li class="even ">
|
203
|
+
<div class="item">
|
204
|
+
<span class='object_link'><a href="Cdss/GroundWater.html#get_geophysical_log_picks-instance_method" title="Cdss::GroundWater#get_geophysical_log_picks (method)">#get_geophysical_log_picks</a></span>
|
205
|
+
<small>Cdss::GroundWater</small>
|
206
|
+
</div>
|
207
|
+
</li>
|
208
|
+
|
209
|
+
|
210
|
+
<li class="odd ">
|
211
|
+
<div class="item">
|
212
|
+
<span class='object_link'><a href="Cdss/GroundWater.html#get_geophysical_log_wells-instance_method" title="Cdss::GroundWater#get_geophysical_log_wells (method)">#get_geophysical_log_wells</a></span>
|
213
|
+
<small>Cdss::GroundWater</small>
|
214
|
+
</div>
|
215
|
+
</li>
|
216
|
+
|
217
|
+
|
218
|
+
<li class="even ">
|
219
|
+
<div class="item">
|
220
|
+
<span class='object_link'><a href="Cdss/ReferenceTables.html#get_reference_table-instance_method" title="Cdss::ReferenceTables#get_reference_table (method)">#get_reference_table</a></span>
|
221
|
+
<small>Cdss::ReferenceTables</small>
|
222
|
+
</div>
|
223
|
+
</li>
|
224
|
+
|
225
|
+
|
226
|
+
<li class="odd ">
|
227
|
+
<div class="item">
|
228
|
+
<span class='object_link'><a href="Cdss/Analysis.html#get_source_route_analysis-instance_method" title="Cdss::Analysis#get_source_route_analysis (method)">#get_source_route_analysis</a></span>
|
229
|
+
<small>Cdss::Analysis</small>
|
230
|
+
</div>
|
231
|
+
</li>
|
232
|
+
|
233
|
+
|
234
|
+
<li class="even ">
|
235
|
+
<div class="item">
|
236
|
+
<span class='object_link'><a href="Cdss/Analysis.html#get_source_route_framework-instance_method" title="Cdss::Analysis#get_source_route_framework (method)">#get_source_route_framework</a></span>
|
237
|
+
<small>Cdss::Analysis</small>
|
238
|
+
</div>
|
239
|
+
</li>
|
240
|
+
|
241
|
+
|
242
|
+
<li class="odd ">
|
243
|
+
<div class="item">
|
244
|
+
<span class='object_link'><a href="Cdss/Structures.html#get_stage_volume_ts-instance_method" title="Cdss::Structures#get_stage_volume_ts (method)">#get_stage_volume_ts</a></span>
|
245
|
+
<small>Cdss::Structures</small>
|
246
|
+
</div>
|
247
|
+
</li>
|
248
|
+
|
249
|
+
|
250
|
+
<li class="even ">
|
251
|
+
<div class="item">
|
252
|
+
<span class='object_link'><a href="Cdss/Structures.html#get_structures-instance_method" title="Cdss::Structures#get_structures (method)">#get_structures</a></span>
|
253
|
+
<small>Cdss::Structures</small>
|
254
|
+
</div>
|
255
|
+
</li>
|
256
|
+
|
257
|
+
|
258
|
+
<li class="odd ">
|
259
|
+
<div class="item">
|
260
|
+
<span class='object_link'><a href="Cdss/SurfaceWater.html#get_sw_stations-instance_method" title="Cdss::SurfaceWater#get_sw_stations (method)">#get_sw_stations</a></span>
|
261
|
+
<small>Cdss::SurfaceWater</small>
|
262
|
+
</div>
|
263
|
+
</li>
|
264
|
+
|
265
|
+
|
266
|
+
<li class="even ">
|
267
|
+
<div class="item">
|
268
|
+
<span class='object_link'><a href="Cdss/SurfaceWater.html#get_sw_ts-instance_method" title="Cdss::SurfaceWater#get_sw_ts (method)">#get_sw_ts</a></span>
|
269
|
+
<small>Cdss::SurfaceWater</small>
|
270
|
+
</div>
|
271
|
+
</li>
|
272
|
+
|
273
|
+
|
274
|
+
<li class="odd ">
|
275
|
+
<div class="item">
|
276
|
+
<span class='object_link'><a href="Cdss/Telemetry.html#get_telemetry_stations-instance_method" title="Cdss::Telemetry#get_telemetry_stations (method)">#get_telemetry_stations</a></span>
|
277
|
+
<small>Cdss::Telemetry</small>
|
278
|
+
</div>
|
279
|
+
</li>
|
280
|
+
|
281
|
+
|
282
|
+
<li class="even ">
|
283
|
+
<div class="item">
|
284
|
+
<span class='object_link'><a href="Cdss/Telemetry.html#get_telemetry_ts-instance_method" title="Cdss::Telemetry#get_telemetry_ts (method)">#get_telemetry_ts</a></span>
|
285
|
+
<small>Cdss::Telemetry</small>
|
286
|
+
</div>
|
287
|
+
</li>
|
288
|
+
|
289
|
+
|
290
|
+
<li class="odd ">
|
291
|
+
<div class="item">
|
292
|
+
<span class='object_link'><a href="Cdss/Structures.html#get_water_classes-instance_method" title="Cdss::Structures#get_water_classes (method)">#get_water_classes</a></span>
|
293
|
+
<small>Cdss::Structures</small>
|
294
|
+
</div>
|
295
|
+
</li>
|
296
|
+
|
297
|
+
|
298
|
+
<li class="even ">
|
299
|
+
<div class="item">
|
300
|
+
<span class='object_link'><a href="Cdss/GroundWater.html#get_water_level_wells-instance_method" title="Cdss::GroundWater#get_water_level_wells (method)">#get_water_level_wells</a></span>
|
301
|
+
<small>Cdss::GroundWater</small>
|
302
|
+
</div>
|
303
|
+
</li>
|
304
|
+
|
305
|
+
|
306
|
+
<li class="odd ">
|
307
|
+
<div class="item">
|
308
|
+
<span class='object_link'><a href="Cdss/WaterRights.html#get_water_rights_net_amounts-instance_method" title="Cdss::WaterRights#get_water_rights_net_amounts (method)">#get_water_rights_net_amounts</a></span>
|
309
|
+
<small>Cdss::WaterRights</small>
|
310
|
+
</div>
|
311
|
+
</li>
|
312
|
+
|
313
|
+
|
314
|
+
<li class="even ">
|
315
|
+
<div class="item">
|
316
|
+
<span class='object_link'><a href="Cdss/WaterRights.html#get_water_rights_transactions-instance_method" title="Cdss::WaterRights#get_water_rights_transactions (method)">#get_water_rights_transactions</a></span>
|
317
|
+
<small>Cdss::WaterRights</small>
|
318
|
+
</div>
|
319
|
+
</li>
|
320
|
+
|
321
|
+
|
322
|
+
<li class="odd ">
|
323
|
+
<div class="item">
|
324
|
+
<span class='object_link'><a href="Cdss/GroundWater.html#get_well_measurements-instance_method" title="Cdss::GroundWater#get_well_measurements (method)">#get_well_measurements</a></span>
|
325
|
+
<small>Cdss::GroundWater</small>
|
326
|
+
</div>
|
327
|
+
</li>
|
328
|
+
|
329
|
+
|
330
|
+
<li class="even ">
|
331
|
+
<div class="item">
|
332
|
+
<span class='object_link'><a href="Cdss/Concerns/WellReadingAttributes.html#included-class_method" title="Cdss::Concerns::WellReadingAttributes.included (method)">included</a></span>
|
333
|
+
<small>Cdss::Concerns::WellReadingAttributes</small>
|
334
|
+
</div>
|
335
|
+
</li>
|
336
|
+
|
337
|
+
|
338
|
+
<li class="odd ">
|
339
|
+
<div class="item">
|
340
|
+
<span class='object_link'><a href="Cdss/Concerns/LogReadingAttributes.html#included-class_method" title="Cdss::Concerns::LogReadingAttributes.included (method)">included</a></span>
|
341
|
+
<small>Cdss::Concerns::LogReadingAttributes</small>
|
342
|
+
</div>
|
343
|
+
</li>
|
344
|
+
|
345
|
+
|
346
|
+
<li class="even ">
|
347
|
+
<div class="item">
|
348
|
+
<span class='object_link'><a href="Cdss/Models/Analysis.html#inherited-class_method" title="Cdss::Models::Analysis.inherited (method)">inherited</a></span>
|
349
|
+
<small>Cdss::Models::Analysis</small>
|
350
|
+
</div>
|
351
|
+
</li>
|
352
|
+
|
353
|
+
|
354
|
+
<li class="odd ">
|
355
|
+
<div class="item">
|
356
|
+
<span class='object_link'><a href="Cdss/Models/Station.html#initialize-instance_method" title="Cdss::Models::Station#initialize (method)">#initialize</a></span>
|
357
|
+
<small>Cdss::Models::Station</small>
|
358
|
+
</div>
|
359
|
+
</li>
|
360
|
+
|
361
|
+
|
362
|
+
<li class="even ">
|
363
|
+
<div class="item">
|
364
|
+
<span class='object_link'><a href="Cdss/Models/Analysis.html#initialize-instance_method" title="Cdss::Models::Analysis#initialize (method)">#initialize</a></span>
|
365
|
+
<small>Cdss::Models::Analysis</small>
|
366
|
+
</div>
|
367
|
+
</li>
|
368
|
+
|
369
|
+
|
370
|
+
<li class="odd ">
|
371
|
+
<div class="item">
|
372
|
+
<span class='object_link'><a href="Cdss/Models/Structure.html#initialize-instance_method" title="Cdss::Models::Structure#initialize (method)">#initialize</a></span>
|
373
|
+
<small>Cdss::Models::Structure</small>
|
374
|
+
</div>
|
375
|
+
</li>
|
376
|
+
|
377
|
+
|
378
|
+
<li class="even ">
|
379
|
+
<div class="item">
|
380
|
+
<span class='object_link'><a href="Cdss/Models/DiversionRecord.html#initialize-instance_method" title="Cdss::Models::DiversionRecord#initialize (method)">#initialize</a></span>
|
381
|
+
<small>Cdss::Models::DiversionRecord</small>
|
382
|
+
</div>
|
383
|
+
</li>
|
384
|
+
|
385
|
+
|
386
|
+
<li class="odd ">
|
387
|
+
<div class="item">
|
388
|
+
<span class='object_link'><a href="Cdss/Models/WaterClass.html#initialize-instance_method" title="Cdss::Models::WaterClass#initialize (method)">#initialize</a></span>
|
389
|
+
<small>Cdss::Models::WaterClass</small>
|
390
|
+
</div>
|
391
|
+
</li>
|
392
|
+
|
393
|
+
|
394
|
+
<li class="even ">
|
395
|
+
<div class="item">
|
396
|
+
<span class='object_link'><a href="Cdss/Models/AdminCall.html#initialize-instance_method" title="Cdss::Models::AdminCall#initialize (method)">#initialize</a></span>
|
397
|
+
<small>Cdss::Models::AdminCall</small>
|
398
|
+
</div>
|
399
|
+
</li>
|
400
|
+
|
401
|
+
|
402
|
+
<li class="odd ">
|
403
|
+
<div class="item">
|
404
|
+
<span class='object_link'><a href="Cdss/Models/WaterRight.html#initialize-instance_method" title="Cdss::Models::WaterRight#initialize (method)">#initialize</a></span>
|
405
|
+
<small>Cdss::Models::WaterRight</small>
|
406
|
+
</div>
|
407
|
+
</li>
|
408
|
+
|
409
|
+
|
410
|
+
<li class="even ">
|
411
|
+
<div class="item">
|
412
|
+
<span class='object_link'><a href="Cdss/Models/Well.html#initialize-instance_method" title="Cdss::Models::Well#initialize (method)">#initialize</a></span>
|
413
|
+
<small>Cdss::Models::Well</small>
|
414
|
+
</div>
|
415
|
+
</li>
|
416
|
+
|
417
|
+
|
418
|
+
<li class="odd ">
|
419
|
+
<div class="item">
|
420
|
+
<span class='object_link'><a href="Cdss/Models/ClimateStation.html#initialize-instance_method" title="Cdss::Models::ClimateStation#initialize (method)">#initialize</a></span>
|
421
|
+
<small>Cdss::Models::ClimateStation</small>
|
422
|
+
</div>
|
423
|
+
</li>
|
424
|
+
|
425
|
+
|
426
|
+
<li class="even ">
|
427
|
+
<div class="item">
|
428
|
+
<span class='object_link'><a href="Cdss/Client.html#initialize-instance_method" title="Cdss::Client#initialize (method)">#initialize</a></span>
|
429
|
+
<small>Cdss::Client</small>
|
430
|
+
</div>
|
431
|
+
</li>
|
432
|
+
|
433
|
+
|
434
|
+
<li class="odd ">
|
435
|
+
<div class="item">
|
436
|
+
<span class='object_link'><a href="Cdss/Models/Reading.html#initialize-instance_method" title="Cdss::Models::Reading#initialize (method)">#initialize</a></span>
|
437
|
+
<small>Cdss::Models::Reading</small>
|
438
|
+
</div>
|
439
|
+
</li>
|
440
|
+
|
441
|
+
|
442
|
+
<li class="even ">
|
443
|
+
<div class="item">
|
444
|
+
<span class='object_link'><a href="Cdss/Models/ReferenceTable.html#initialize-instance_method" title="Cdss::Models::ReferenceTable#initialize (method)">#initialize</a></span>
|
445
|
+
<small>Cdss::Models::ReferenceTable</small>
|
446
|
+
</div>
|
447
|
+
</li>
|
448
|
+
|
449
|
+
|
450
|
+
<li class="odd ">
|
451
|
+
<div class="item">
|
452
|
+
<span class='object_link'><a href="Cdss.html#loader-class_method" title="Cdss.loader (method)">loader</a></span>
|
453
|
+
<small>Cdss</small>
|
454
|
+
</div>
|
455
|
+
</li>
|
456
|
+
|
457
|
+
|
458
|
+
<li class="even ">
|
459
|
+
<div class="item">
|
460
|
+
<span class='object_link'><a href="Cdss/Concerns/LogReadingAttributes.html#log_reading%3F-instance_method" title="Cdss::Concerns::LogReadingAttributes#log_reading? (method)">#log_reading?</a></span>
|
461
|
+
<small>Cdss::Concerns::LogReadingAttributes</small>
|
462
|
+
</div>
|
463
|
+
</li>
|
464
|
+
|
465
|
+
|
466
|
+
<li class="odd ">
|
467
|
+
<div class="item">
|
468
|
+
<span class='object_link'><a href="Cdss/Client.html#options-instance_method" title="Cdss::Client#options (method)">#options</a></span>
|
469
|
+
<small>Cdss::Client</small>
|
470
|
+
</div>
|
471
|
+
</li>
|
472
|
+
|
473
|
+
|
474
|
+
<li class="even ">
|
475
|
+
<div class="item">
|
476
|
+
<span class='object_link'><a href="Cdss/Parsers/AdminCallsParser.html#parse_admin_calls-class_method" title="Cdss::Parsers::AdminCallsParser.parse_admin_calls (method)">parse_admin_calls</a></span>
|
477
|
+
<small>Cdss::Parsers::AdminCallsParser</small>
|
478
|
+
</div>
|
479
|
+
</li>
|
480
|
+
|
481
|
+
|
482
|
+
<li class="odd ">
|
483
|
+
<div class="item">
|
484
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_admin_calls-class_method" title="Cdss::Parser.parse_admin_calls (method)">parse_admin_calls</a></span>
|
485
|
+
<small>Cdss::Parser</small>
|
486
|
+
</div>
|
487
|
+
</li>
|
488
|
+
|
489
|
+
|
490
|
+
<li class="even ">
|
491
|
+
<div class="item">
|
492
|
+
<span class='object_link'><a href="Cdss/Parsers/AnalysisParser.html#parse_call_analyses-class_method" title="Cdss::Parsers::AnalysisParser.parse_call_analyses (method)">parse_call_analyses</a></span>
|
493
|
+
<small>Cdss::Parsers::AnalysisParser</small>
|
494
|
+
</div>
|
495
|
+
</li>
|
496
|
+
|
497
|
+
|
498
|
+
<li class="odd ">
|
499
|
+
<div class="item">
|
500
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_call_analyses-class_method" title="Cdss::Parser.parse_call_analyses (method)">parse_call_analyses</a></span>
|
501
|
+
<small>Cdss::Parser</small>
|
502
|
+
</div>
|
503
|
+
</li>
|
504
|
+
|
505
|
+
|
506
|
+
<li class="even ">
|
507
|
+
<div class="item">
|
508
|
+
<span class='object_link'><a href="Cdss/Parsers/ClimateParser.html#parse_climate_readings-class_method" title="Cdss::Parsers::ClimateParser.parse_climate_readings (method)">parse_climate_readings</a></span>
|
509
|
+
<small>Cdss::Parsers::ClimateParser</small>
|
510
|
+
</div>
|
511
|
+
</li>
|
512
|
+
|
513
|
+
|
514
|
+
<li class="odd ">
|
515
|
+
<div class="item">
|
516
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_climate_readings-class_method" title="Cdss::Parser.parse_climate_readings (method)">parse_climate_readings</a></span>
|
517
|
+
<small>Cdss::Parser</small>
|
518
|
+
</div>
|
519
|
+
</li>
|
520
|
+
|
521
|
+
|
522
|
+
<li class="even ">
|
523
|
+
<div class="item">
|
524
|
+
<span class='object_link'><a href="Cdss/Parsers/ClimateParser.html#parse_climate_stations-class_method" title="Cdss::Parsers::ClimateParser.parse_climate_stations (method)">parse_climate_stations</a></span>
|
525
|
+
<small>Cdss::Parsers::ClimateParser</small>
|
526
|
+
</div>
|
527
|
+
</li>
|
528
|
+
|
529
|
+
|
530
|
+
<li class="odd ">
|
531
|
+
<div class="item">
|
532
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_climate_stations-class_method" title="Cdss::Parser.parse_climate_stations (method)">parse_climate_stations</a></span>
|
533
|
+
<small>Cdss::Parser</small>
|
534
|
+
</div>
|
535
|
+
</li>
|
536
|
+
|
537
|
+
|
538
|
+
<li class="even ">
|
539
|
+
<div class="item">
|
540
|
+
<span class='object_link'><a href="Cdss/Parsers/BaseParser.html#parse_collection-instance_method" title="Cdss::Parsers::BaseParser#parse_collection (method)">#parse_collection</a></span>
|
541
|
+
<small>Cdss::Parsers::BaseParser</small>
|
542
|
+
</div>
|
543
|
+
</li>
|
544
|
+
|
545
|
+
|
546
|
+
<li class="odd ">
|
547
|
+
<div class="item">
|
548
|
+
<span class='object_link'><a href="Cdss/Parsers/StructuresParser.html#parse_diversion_records-class_method" title="Cdss::Parsers::StructuresParser.parse_diversion_records (method)">parse_diversion_records</a></span>
|
549
|
+
<small>Cdss::Parsers::StructuresParser</small>
|
550
|
+
</div>
|
551
|
+
</li>
|
552
|
+
|
553
|
+
|
554
|
+
<li class="even ">
|
555
|
+
<div class="item">
|
556
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_diversion_records-class_method" title="Cdss::Parser.parse_diversion_records (method)">parse_diversion_records</a></span>
|
557
|
+
<small>Cdss::Parser</small>
|
558
|
+
</div>
|
559
|
+
</li>
|
560
|
+
|
561
|
+
|
562
|
+
<li class="odd ">
|
563
|
+
<div class="item">
|
564
|
+
<span class='object_link'><a href="Cdss/Parsers/WellParser.html#parse_geophysical_wells-class_method" title="Cdss::Parsers::WellParser.parse_geophysical_wells (method)">parse_geophysical_wells</a></span>
|
565
|
+
<small>Cdss::Parsers::WellParser</small>
|
566
|
+
</div>
|
567
|
+
</li>
|
568
|
+
|
569
|
+
|
570
|
+
<li class="even ">
|
571
|
+
<div class="item">
|
572
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_geophysical_wells-class_method" title="Cdss::Parser.parse_geophysical_wells (method)">parse_geophysical_wells</a></span>
|
573
|
+
<small>Cdss::Parser</small>
|
574
|
+
</div>
|
575
|
+
</li>
|
576
|
+
|
577
|
+
|
578
|
+
<li class="odd ">
|
579
|
+
<div class="item">
|
580
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_log_picks-class_method" title="Cdss::Parser.parse_log_picks (method)">parse_log_picks</a></span>
|
581
|
+
<small>Cdss::Parser</small>
|
582
|
+
</div>
|
583
|
+
</li>
|
584
|
+
|
585
|
+
|
586
|
+
<li class="even ">
|
587
|
+
<div class="item">
|
588
|
+
<span class='object_link'><a href="Cdss/Parsers/WellParser.html#parse_log_picks-class_method" title="Cdss::Parsers::WellParser.parse_log_picks (method)">parse_log_picks</a></span>
|
589
|
+
<small>Cdss::Parsers::WellParser</small>
|
590
|
+
</div>
|
591
|
+
</li>
|
592
|
+
|
593
|
+
|
594
|
+
<li class="odd ">
|
595
|
+
<div class="item">
|
596
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_readings-class_method" title="Cdss::Parser.parse_readings (method)">parse_readings</a></span>
|
597
|
+
<small>Cdss::Parser</small>
|
598
|
+
</div>
|
599
|
+
</li>
|
600
|
+
|
601
|
+
|
602
|
+
<li class="even ">
|
603
|
+
<div class="item">
|
604
|
+
<span class='object_link'><a href="Cdss/Parsers/ReadingParser.html#parse_readings-class_method" title="Cdss::Parsers::ReadingParser.parse_readings (method)">parse_readings</a></span>
|
605
|
+
<small>Cdss::Parsers::ReadingParser</small>
|
606
|
+
</div>
|
607
|
+
</li>
|
608
|
+
|
609
|
+
|
610
|
+
<li class="odd ">
|
611
|
+
<div class="item">
|
612
|
+
<span class='object_link'><a href="Cdss/Parsers/ReferenceTablesParser.html#parse_reference_table-class_method" title="Cdss::Parsers::ReferenceTablesParser.parse_reference_table (method)">parse_reference_table</a></span>
|
613
|
+
<small>Cdss::Parsers::ReferenceTablesParser</small>
|
614
|
+
</div>
|
615
|
+
</li>
|
616
|
+
|
617
|
+
|
618
|
+
<li class="even ">
|
619
|
+
<div class="item">
|
620
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_reference_table-class_method" title="Cdss::Parser.parse_reference_table (method)">parse_reference_table</a></span>
|
621
|
+
<small>Cdss::Parser</small>
|
622
|
+
</div>
|
623
|
+
</li>
|
624
|
+
|
625
|
+
|
626
|
+
<li class="odd ">
|
627
|
+
<div class="item">
|
628
|
+
<span class='object_link'><a href="Cdss/Parsers/AnalysisParser.html#parse_route_analyses-class_method" title="Cdss::Parsers::AnalysisParser.parse_route_analyses (method)">parse_route_analyses</a></span>
|
629
|
+
<small>Cdss::Parsers::AnalysisParser</small>
|
630
|
+
</div>
|
631
|
+
</li>
|
632
|
+
|
633
|
+
|
634
|
+
<li class="even ">
|
635
|
+
<div class="item">
|
636
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_route_analyses-class_method" title="Cdss::Parser.parse_route_analyses (method)">parse_route_analyses</a></span>
|
637
|
+
<small>Cdss::Parser</small>
|
638
|
+
</div>
|
639
|
+
</li>
|
640
|
+
|
641
|
+
|
642
|
+
<li class="odd ">
|
643
|
+
<div class="item">
|
644
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_source_routes-class_method" title="Cdss::Parser.parse_source_routes (method)">parse_source_routes</a></span>
|
645
|
+
<small>Cdss::Parser</small>
|
646
|
+
</div>
|
647
|
+
</li>
|
648
|
+
|
649
|
+
|
650
|
+
<li class="even ">
|
651
|
+
<div class="item">
|
652
|
+
<span class='object_link'><a href="Cdss/Parsers/AnalysisParser.html#parse_source_routes-class_method" title="Cdss::Parsers::AnalysisParser.parse_source_routes (method)">parse_source_routes</a></span>
|
653
|
+
<small>Cdss::Parsers::AnalysisParser</small>
|
654
|
+
</div>
|
655
|
+
</li>
|
656
|
+
|
657
|
+
|
658
|
+
<li class="odd ">
|
659
|
+
<div class="item">
|
660
|
+
<span class='object_link'><a href="Cdss/Parsers/StationParser.html#parse_stations-class_method" title="Cdss::Parsers::StationParser.parse_stations (method)">parse_stations</a></span>
|
661
|
+
<small>Cdss::Parsers::StationParser</small>
|
662
|
+
</div>
|
663
|
+
</li>
|
664
|
+
|
665
|
+
|
666
|
+
<li class="even ">
|
667
|
+
<div class="item">
|
668
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_stations-class_method" title="Cdss::Parser.parse_stations (method)">parse_stations</a></span>
|
669
|
+
<small>Cdss::Parser</small>
|
670
|
+
</div>
|
671
|
+
</li>
|
672
|
+
|
673
|
+
|
674
|
+
<li class="odd ">
|
675
|
+
<div class="item">
|
676
|
+
<span class='object_link'><a href="Cdss/Parsers/StructuresParser.html#parse_structures-class_method" title="Cdss::Parsers::StructuresParser.parse_structures (method)">parse_structures</a></span>
|
677
|
+
<small>Cdss::Parsers::StructuresParser</small>
|
678
|
+
</div>
|
679
|
+
</li>
|
680
|
+
|
681
|
+
|
682
|
+
<li class="even ">
|
683
|
+
<div class="item">
|
684
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_structures-class_method" title="Cdss::Parser.parse_structures (method)">parse_structures</a></span>
|
685
|
+
<small>Cdss::Parser</small>
|
686
|
+
</div>
|
687
|
+
</li>
|
688
|
+
|
689
|
+
|
690
|
+
<li class="odd ">
|
691
|
+
<div class="item">
|
692
|
+
<span class='object_link'><a href="Cdss/Utils.html#parse_timestamp-instance_method" title="Cdss::Utils#parse_timestamp (method)">#parse_timestamp</a></span>
|
693
|
+
<small>Cdss::Utils</small>
|
694
|
+
</div>
|
695
|
+
</li>
|
696
|
+
|
697
|
+
|
698
|
+
<li class="even ">
|
699
|
+
<div class="item">
|
700
|
+
<span class='object_link'><a href="Cdss/Parsers/StructuresParser.html#parse_water_classes-class_method" title="Cdss::Parsers::StructuresParser.parse_water_classes (method)">parse_water_classes</a></span>
|
701
|
+
<small>Cdss::Parsers::StructuresParser</small>
|
702
|
+
</div>
|
703
|
+
</li>
|
704
|
+
|
705
|
+
|
706
|
+
<li class="odd ">
|
707
|
+
<div class="item">
|
708
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_water_classes-class_method" title="Cdss::Parser.parse_water_classes (method)">parse_water_classes</a></span>
|
709
|
+
<small>Cdss::Parser</small>
|
710
|
+
</div>
|
711
|
+
</li>
|
712
|
+
|
713
|
+
|
714
|
+
<li class="even ">
|
715
|
+
<div class="item">
|
716
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_water_rights-class_method" title="Cdss::Parser.parse_water_rights (method)">parse_water_rights</a></span>
|
717
|
+
<small>Cdss::Parser</small>
|
718
|
+
</div>
|
719
|
+
</li>
|
720
|
+
|
721
|
+
|
722
|
+
<li class="odd ">
|
723
|
+
<div class="item">
|
724
|
+
<span class='object_link'><a href="Cdss/Parsers/WaterRightsParser.html#parse_water_rights-class_method" title="Cdss::Parsers::WaterRightsParser.parse_water_rights (method)">parse_water_rights</a></span>
|
725
|
+
<small>Cdss::Parsers::WaterRightsParser</small>
|
726
|
+
</div>
|
727
|
+
</li>
|
728
|
+
|
729
|
+
|
730
|
+
<li class="even ">
|
731
|
+
<div class="item">
|
732
|
+
<span class='object_link'><a href="Cdss/Parsers/WellParser.html#parse_well_measurements-class_method" title="Cdss::Parsers::WellParser.parse_well_measurements (method)">parse_well_measurements</a></span>
|
733
|
+
<small>Cdss::Parsers::WellParser</small>
|
734
|
+
</div>
|
735
|
+
</li>
|
736
|
+
|
737
|
+
|
738
|
+
<li class="odd ">
|
739
|
+
<div class="item">
|
740
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_well_measurements-class_method" title="Cdss::Parser.parse_well_measurements (method)">parse_well_measurements</a></span>
|
741
|
+
<small>Cdss::Parser</small>
|
742
|
+
</div>
|
743
|
+
</li>
|
744
|
+
|
745
|
+
|
746
|
+
<li class="even ">
|
747
|
+
<div class="item">
|
748
|
+
<span class='object_link'><a href="Cdss/Parser.html#parse_wells-class_method" title="Cdss::Parser.parse_wells (method)">parse_wells</a></span>
|
749
|
+
<small>Cdss::Parser</small>
|
750
|
+
</div>
|
751
|
+
</li>
|
752
|
+
|
753
|
+
|
754
|
+
<li class="odd ">
|
755
|
+
<div class="item">
|
756
|
+
<span class='object_link'><a href="Cdss/Parsers/WellParser.html#parse_wells-class_method" title="Cdss::Parsers::WellParser.parse_wells (method)">parse_wells</a></span>
|
757
|
+
<small>Cdss::Parsers::WellParser</small>
|
758
|
+
</div>
|
759
|
+
</li>
|
760
|
+
|
761
|
+
|
762
|
+
<li class="even ">
|
763
|
+
<div class="item">
|
764
|
+
<span class='object_link'><a href="Cdss/Utils.html#safe_float-instance_method" title="Cdss::Utils#safe_float (method)">#safe_float</a></span>
|
765
|
+
<small>Cdss::Utils</small>
|
766
|
+
</div>
|
767
|
+
</li>
|
768
|
+
|
769
|
+
|
770
|
+
<li class="odd ">
|
771
|
+
<div class="item">
|
772
|
+
<span class='object_link'><a href="Cdss/Utils.html#safe_integer-instance_method" title="Cdss::Utils#safe_integer (method)">#safe_integer</a></span>
|
773
|
+
<small>Cdss::Utils</small>
|
774
|
+
</div>
|
775
|
+
</li>
|
776
|
+
|
777
|
+
|
778
|
+
<li class="even ">
|
779
|
+
<div class="item">
|
780
|
+
<span class='object_link'><a href="Cdss/Concerns/WellReadingAttributes.html#well_reading%3F-instance_method" title="Cdss::Concerns::WellReadingAttributes#well_reading? (method)">#well_reading?</a></span>
|
781
|
+
<small>Cdss::Concerns::WellReadingAttributes</small>
|
782
|
+
</div>
|
783
|
+
</li>
|
784
|
+
|
785
|
+
|
786
|
+
|
787
|
+
</ul>
|
788
|
+
</div>
|
789
|
+
</body>
|
790
|
+
</html>
|