-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcronos.php
262 lines (244 loc) · 9.86 KB
/
cronos.php
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
<?php
/**
* @file cronos.php
* @brief The main CRONOS library
*
* @mainpage notitle
* @section License
* Licesned under the BSD Modified license.
* Copyright (c) 2011, The Open AgroClimate Project
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* * Neither the name of the The Open AgroClimate Project nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
if( ! defined( 'DEBUG_MODE' ) ) define('DEBUG_MODE', false);
require_once( dirname(__FILE__).'/lib/HttpClient.class.php' );
ini_set('memory_limit','-1'); // EVIL HACK... need to deal with large datasets better
/**
* @class CRONOS
* @brief The CRONOS class is the main interface to connect to the CRONOS database.
*
* This class is used to connect to the CRONOS database. It provides a connection handler and convenience functions.
*/
class CRONOS {
private $http;
private $hash;
private $filters;
/**
* Creates a new CRONOS instance.
*
* A new CRONOS instance is created using your CRONOS API key. If you need a key, email sco@climate.ncsu.edu.
*
* @param string $api_key
* A string containing your CRONOS API key. DEFAULT: ''
*
*/
public function __construct( $api_key = '' ) {
$this->http = new HttpClient('www.nc-climate.ncsu.edu');
$this->hash = $api_key;
$this->filters = array();
}
/**
* List stations available, with filters.
*
* List all stations available in the CRONOS database as an array. Can be filtered according to network, state and whether or not a station is active.
*
* @param array $networks
* The networks you want included in list. By passing an empty array, you will get all the networks available. DEFAULT: array()
*
* @param array $states
* The states you want included in the list. By passing an empty array, you will receive all the states available. DEFAULT: array()
*
* @param array $station
* The stations you want included in the list. By passing an empty array, you will receive all the stations available. DEFAULT: array()
*
* @param array $exclude_networks
* The networks you would like excluded from the list. By passing an empty array, you will not exclude any networks. DEFAULT: array()
*
* @param bool $active_only
* Only include active stations in the list. DEFAULT: false
*
* @return
* An indexed array of associative arrays containing:
* - station: The station id
* - name: The name of the station
* - lat: Latitude
* - lon: Longitude
* - elev: Elevation
* - network: Network the station belongs to
* - city: City
* - county: County
* - state: State
* - huc: ??
* - climdiv: Climate Division
* - startdate: Date this station started reporting
* - enddate: Date this station last reported
* - active: 1 is the station is active, 0 if it is not.
*/
public function listStations( $networks = array(), $states = array(), $station = array(), $exclude_networks = array(), $active_only = false ) {
$nets = implode( ',', $networks );
$sts = implode( ',', $states );
$stn = implode( ',', $station );
$data = array();
$data['network'] = $nets;
$data['state'] = $sts;
$data['station'] = $stn;
$data['hash'] = $this->hash;
if( count( $exclude_networks ) !== 0 ) {
$this->filters['exclude_networks'] = $exclude_networks;
} else {
unset( $this->filters['exclude_networks'] );
}
if( ! $this->http->get('/dynamic_scripts/cronos/getCRONOSinventory.php', $data ) ) {
if( DEBUG_MODE ) echo 'DEBUG (QUERY:FAILED):: ',$this->http->getRequestURL()."\n";
return false;
} else {
$results = $this->parseToObject( $this->http->getContent() );
if( DEBUG_MODE ) echo 'DEBUG (QUERY:FAILED):: ',$this->http->getRequestURL()."\n";
if( ( ! is_null( $this->filters ) ) && ( array_key_exists( 'exclude_networks', $this->filters ) ) ) {
$results = array_filter( $results, array( $this, 'exclude_networks' ) );
}
if( $active_only ) {
$results = array_filter( $results, array( $this, 'active_only' ) );
}
return $results;
}
}
/**
* Pull hourly data from an array of stations.
*
* Pull hourly data from an array of stations from the CRONOS database, based on a time window.
*
* @param array $stations
* A list of station ids. DEFAULT: array()
*
* @param string $start
* A starting datetime string formatted as YYYY-MM-DD hh:mm:ss DEFAULT: ''
*
* @param string $end
* A ending datetime string formatted as YYYY-MM-DD hh:mm:ss DEFAULT: ''
*
* @return
* An indexed array of associative arrays. The associcative arrays consist of the data provided by the station. They may or may not be consistant across networks.
*/
public function getHourlyData( $stations = array(), $start = "", $end = "", $params = array(), $quality = '' ) {
$data = array( 'station' => implode( $stations, ',' ), 'hash' => $this->hash, 'start' => $start, 'obtype' => 'H', 'parameter' => 'all' );
if( $end != '' ) {
$data['end'] = $end;
}
if( is_array( $params ) && count( $params ) > 0 ) {
$data['parameter'] = implode( ',', $params );
}
if( is_string( $quality ) && ( strtolower( $quality ) == 'good' || strtolower( $quality ) == 'bad' ) ) {
$data['qc'] = $quality;
}
return $this->getStationData( $data );
}
/**
* Pull daily data from an array of stations.
*
* Pull daily data from an array of stations from the CRONOS database, based on a date window.
*
* @param array $stations
* A list of station ids. DEFAULT: array()
*
* @param string $start
* A starting date string formatted as YYYY-MM-DD DEFAULT: ''
*
* @param string $end
* A ending date string formatted as YYYY-MM-DD DEFAULT: ''
*
* @param array $params
* A list of parameters to be requested from the CRONOS database. These are variable between station types. For a full list of parameters, please see @ref http://cirrus.meas.ncsu.edu/trac/wiki/Params DEFAULT: array() => 'all'
*
* @param string $quality
* The quality control restriction level to be applied to this query. Can be 'good', 'bad', or undefined for all data.
*
* @return
* An indexed array of associative arrays. The associcative arrays consist of the data provided by the station. They may or may not be consistant across networks.
*/
public function getDailyData( $stations = array(), $start = "", $end = "", $params = array(), $quality = '' ) {
$data = array( 'station' => implode( $stations, ',' ), 'hash' => $this->hash, 'start' => $start, 'obtype' => 'D', 'parameter' => 'all' );
if( $end != '' ) {
$data['end'] = $end;
}
if( is_array( $params ) && count( $params ) > 0 ) {
$data['parameter'] = implode( ',', $params );
}
if( is_string( $quality ) && ( strtolower( $quality ) == 'good' || strtolower( $quality ) == 'bad' ) ) {
$data['qc'] = $quality;
}
return $this->getStationData( $data );
}
private function getStationData( $data ) {
if( ! $this->http->get( '/dynamic_scripts/cronos/getCRONOSdata.php', $data ) ) {
if( DEBUG_MODE ) echo 'DEBUG (QUERY:FAILED):: ',$this->http->getRequestURL()."\n";
echo 'Failed (getStationData)';
return false;
} else {
if( DEBUG_MODE ) echo 'DEBUG (QUERY):: '.$this->http->getRequestURL()."\n";
return $this->parseToObject( $this->http->getContent() );
}
}
private function exclude_networks( $item ) {
if( in_array( $item['network'], $this->filters['exclude_networks'] ) ) {
return false;
} else {
return true;
}
}
private function active_only( $item ) {
return ( $item['active'] == 1 );
}
private function parseToObject( $content, $parseComments=false ) {
$first_line = true;
$map = array();
$results = array();
$token = strtok( $content, "\n" );
while( $token !== false ) {
if( DEBUG_MODE ) echo "DEBUG:: {$token}\n"; // Remove comments to get raw values from website displayed.
$tmp = array();
// Parse the line here.
if( substr( $token, 0, 1 ) == '#' || substr( $token, 0, 5 ) == '<pre>' ) {
} else {
if( $first_line ) {
$map = explode( '|', $token );
$first_line = false;
} else {
$tmp_line = explode( '|', $token );
$l = count( $tmp_line );
for( $i=0; $i < $l; $i++ ) {
$tmp[$map[$i]] = $tmp_line[$i];
}
$results[] = $tmp;
}
}
$token = strtok( "\n" );
}
return $results;
}
}
?>