forked from bentut/udaman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit.diff
536 lines (508 loc) · 68.4 KB
/
git.diff
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
diff --git a/Gemfile b/Gemfile
index 64289f1..3490a6d 100644
--- a/Gemfile
+++ b/Gemfile
@@ -42,7 +42,7 @@ gem 'nokogiri'
group :development, :test do
gem 'rspec-rails'
- gem 'cucumber-rails'
+ gem 'cucumber-rails', :require => false
gem 'watchr'
gem 'database_cleaner'
gem 'test-unit', '1.2.3'
diff --git a/Gemfile.lock b/Gemfile.lock
index bc9c97a..c82b81c 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -105,7 +105,7 @@ GEM
rake (>= 0.8.7)
rdoc (~> 3.4)
thor (~> 0.14.4)
- rake (0.9.2)
+ rake (0.9.2.2)
rdoc (3.9.1)
roo (1.9.6)
choice (>= 0.1.4)
diff --git a/app/mailers/packager_mailer.rb b/app/mailers/packager_mailer.rb
index 6044728..0219aad 100644
--- a/app/mailers/packager_mailer.rb
+++ b/app/mailers/packager_mailer.rb
@@ -16,7 +16,8 @@ class PackagerMailer < ActionMailer::Base
@dates = dates
subject = "UDAMAN Error (#{rake_task})" if is_error
subject = "UDAMAN New Download (#{rake_task})" unless is_error
- mail(:to => ["[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]"], :subject => subject)
+ mail(:to => ["[email protected]"], :subject => subject)
end
def rake_error(e, output_path)
diff --git a/config/initializers/string_extension.rb b/config/initializers/string_extension.rb
index cace11d..a5d4296 100644
--- a/config/initializers/string_extension.rb
+++ b/config/initializers/string_extension.rb
@@ -12,11 +12,11 @@ class String
end
def ts_eval=(eval_statement)
- #begin
+ # begin
Series.eval self, eval_statement
- # rescue Exception
- # puts "ERROR | #{self} | #{eval_statement}"
- # end
+ # rescue Exception
+ # puts "ERROR | #{self} | #{eval_statement}"
+ # end
end
def ts_append(series)
diff --git a/config/schedule.rb b/config/schedule.rb
index 7fa18bc..104a4fd 100644
--- a/config/schedule.rb
+++ b/config/schedule.rb
@@ -19,11 +19,11 @@
# Learn more: http://github.com/javan/whenever
-hour = "4"
+hour = "2"
set :output, "~/Documents/cronlog/udaman-download.log"
set :environment, "development"
#job_type :rake, "cd :path && rake :task :output"
-job_type :rake, "cd :path && rake :task"
+job_type :rake, "cd :path && rake :task :output"
#job_type :rake, "cd :path && RAILS_ENV=:environment bundle exec rake :task :output"
every 1.day, :at => "#{hour}:00 am" do
diff --git a/lib/download/download_processor.rb b/lib/download/download_processor.rb
index fef8b11..e45a4c2 100644
--- a/lib/download/download_processor.rb
+++ b/lib/download/download_processor.rb
@@ -42,19 +42,10 @@ class DownloadProcessor
date_info = {}
date_info[:start] = @options[:start_date] unless @options[:start_date].nil?
date_info[:start] = read_date_from_file(@options[:start_row], @options[:start_col]) if @options[:start_date].nil?
- date_info[:start] = adjust_for_frequency(date_info[:start])
date_info[:rev] = @options[:rev] == true ? true : false
date_info
end
- def adjust_for_frequency(date_string)
- date_parts = date_string.split("-")
- #need cases for annual and quarterly too. For now just doing monthly
- #this should be written in as tests
- return "#{date_parts[0]}-#{date_parts[1]}-01" if @options[:frequency] == "M"
- return date_string
- end
-
def read_date_from_file(start_row, start_col)
#assumption is that these will not be files with dates to process. just static file and sheet strings
#assuming that date is a recognizable format to ruby
@@ -64,7 +55,7 @@ class DownloadProcessor
return date_cell.to_s if date_cell.class == Date
return Date.new(date_cell.split(".")[0].to_i, date_cell.split(".")[1].to_i,1).to_s if date_cell.class == String and !date_cell.index(".").nil?
return Date.new(date_cell.to_s.split(".")[0].to_i, date_cell.to_s.split(".")[1].to_i,1).to_s if date_cell.class == Float
- return Date.parse(date_cell).to_s
+ return Date.parse date_cell
end
def validate_csv
diff --git a/lib/download/packager.rb b/lib/download/packager.rb
index d79c06d..6c6ba05 100644
--- a/lib/download/packager.rb
+++ b/lib/download/packager.rb
@@ -1,18 +1,5 @@
class Packager
- def Packager.temp
- const_q = {
- "[email protected]" => %Q|Series.load_from_download "[email protected]", { :file_type => "xls", :start_date => "1993-01-01", :sheet => "G-25", :row => "block:6:1:4", :col => "repeat:2:5", :frequency => "Q" }|,
- "[email protected]" => %Q|Series.load_from_download "[email protected]", { :file_type => "xls", :start_date => "1993-01-01", :sheet => "G-26", :row => "block:5:1:4", :col => "repeat:2:5", :frequency => "Q" }|,
- "[email protected]" => %Q|Series.load_from_download "[email protected]", { :file_type => "xls", :start_date => "1982-01-01", :sheet => "E-7", :row => "block:6:1:4", :col => "repeat:2:5", :frequency => "Q" }|
- }
-
- p = Packager.new
- p.add_definitions const_q
- p.write_definitions_to "/Volumes/UHEROwork/data/misc/const/update/const_upd_q_NEW.xls"
- nil
- end
-
def definitions
@definitions
end
@@ -117,33 +104,36 @@ class Packager
return if @definitions.nil?
@series = get_data_from_definitions
-
- old_file = File::exists?(@output_path) ? open(@output_path, "rb").read : nil
- old_file_xls = Excel.new(@output_path) if File::exists?(@output_path)
-
- xls = Spreadsheet::Workbook.new @output_path
- sheet1 = xls.create_worksheet
- write_dates(sheet1)
- col = 1
- @series.sort.each do |name, data|
- write_series(name, data, sheet1, col)
- col += 1
- end
+
+ # uncomment to get back to development version or do different branch
+ # old_file = File::exists?(@output_path) ? open(@output_path, "rb").read : nil
+ # old_file_xls = Excel.new(@output_path) if File::exists?(@output_path)
+ #
+ # xls = Spreadsheet::Workbook.new @output_path
+ # sheet1 = xls.create_worksheet
+ # write_dates(sheet1)
+ # col = 1
+ # @series.sort.each do |name, data|
+ # write_series(name, data, sheet1, col)
+ # col += 1
+ # end
+
puts download_results_string
puts errors_string
puts series_summary_string
- xls.write @output_path
- new_file_xls = Excel.new(@output_path)
+ # xls.write @output_path
+ # new_file_xls = Excel.new(@output_path)
- if new_file_xls.to_s != old_file_xls.to_s or errors != [] or download_problem?
- puts new_file_xls.to_s != old_file_xls.to_s
+# if new_file_xls.to_s != old_file_xls.to_s or errors != [] or download_problem?
+# puts new_file_xls.to_s != old_file_xls.to_s
puts errors != []
puts download_problem?
- backup(old_file) unless old_file.nil?
+#uncomment this one too
+# backup(old_file) unless old_file.nil?
puts "SENDING EMAIL"
job_name = @output_path.split("/")[-1].split(".")[0]
PackagerMailer.rake_notification(job_name, download_results, errors, @series, @output_path, dates, (errors != [] or download_problem?)).deliver
- end
+# end
end
diff --git a/lib/download/xls_file_processor.rb b/lib/download/xls_file_processor.rb
index ab3149f..145041e 100644
--- a/lib/download/xls_file_processor.rb
+++ b/lib/download/xls_file_processor.rb
@@ -20,14 +20,11 @@ class XlsFileProcessor
sheet = @sheet_processor.compute(date)
path = @path_processor.nil? ? nil : @path_processor.compute(date)
- # puts index
- # puts path
- # puts sheet
begin
row = @row_processor.compute(index, @cached_files, handle, sheet)
col = @col_processor.compute(index, @cached_files, handle, sheet)
-# puts "#{row}, #{col}"
+
#puts "trying: h:#{handle}, s:#{sheet}, r:#{row}, c:#{col}, p:#{path}"
worksheet = @cached_files.xls(handle, sheet, path)
@@ -47,9 +44,7 @@ class XlsFileProcessor
raise e
end
- # puts worksheet.cell(row,col)
observation_value = parse_cell(worksheet.cell(row,col))
-# puts observation_value
return "END" if observation_value == "BREAK IN DATA" unless @handle_processor.date_sensitive?
return {} if observation_value == "BREAK IN DATA" if @handle_processor.date_sensitive?
diff --git a/lib/tasks/BLS.rake b/lib/tasks/BLS.rake
index 8d5a534..81e2973 100644
--- a/lib/tasks/BLS.rake
+++ b/lib/tasks/BLS.rake
@@ -679,7 +679,7 @@ task :hiwi_upd => :environment do
p = Packager.new
p.add_definitions hiwi_upd
p.write_definitions_to "/Volumes/UHEROwork/data/bls/update/hiwi_upd_HI_NEW.xls"
-
+
p = Packager.new
p.add_definitions hiwi_upd_hon
p.write_definitions_to "/Volumes/UHEROwork/data/bls/update/hiwi_upd_HON_NEW.xls"
@@ -710,6 +710,56 @@ task :bls_identities => :environment do
"[email protected]".ts_eval= %Q|"[email protected]".ts|
"[email protected]".ts_eval= %Q|"[email protected]".ts|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+ '[email protected]'.ts_eval= %Q|'[email protected]'.ts.interpolate :quarter, :linear|
+
+ #special cases with more frequent data
+ "[email protected]".ts_append_eval %Q|"[email protected]".ts.aggregate(:quarter, :average)|
+ "[email protected]".ts_append_eval %Q|"[email protected]".ts.aggregate(:quarter, :average)|
+ "[email protected]".ts_append_eval %Q|"[email protected]".ts.aggregate(:quarter, :average)|
+
+
+
#needs EMN up here....
["HI", "HON", "HAW", "MAU", "KAU"].each do |cnty|
diff --git a/lib/tasks/MISC.rake b/lib/tasks/MISC.rake
index 0248254..3c7341c 100644
--- a/lib/tasks/MISC.rake
+++ b/lib/tasks/MISC.rake
@@ -60,6 +60,15 @@ task :const_upd_q => :environment do
"[email protected]" => %Q|Series.load_from_download "[email protected]", { :file_type => "xls", :start_date => "1982-01-01", :sheet => "E-5", :row => "block:5:1:4", :col => "repeat:2:5", :frequency => "Q" }|,
"[email protected]" => %Q|Series.load_from_download "[email protected]", { :file_type => "xls", :start_date => "1982-01-01", :sheet => "E-6", :row => "block:6:1:4", :col => "repeat:2:5", :frequency => "Q" }|,
"[email protected]" => %Q|Series.load_from_download "[email protected]", { :file_type => "xls", :start_date => "1982-01-01", :sheet => "E-7", :row => "block:6:1:4", :col => "repeat:2:5", :frequency => "Q" }|,
+ #PRUD identities included here
+ "[email protected]" => %Q|"[email protected]".ts|,
+ "[email protected]" => %Q|"[email protected]".ts|,
+ "[email protected]" => %Q|"[email protected]".ts|,
+ "[email protected]" => %Q|"[email protected]".ts|,
+ "[email protected]" => %Q|"[email protected]".ts|,
+ "[email protected]" => %Q|"[email protected]".ts|,
+ "[email protected]" => %Q|"[email protected]".ts|,
+ "[email protected]" => %Q|"[email protected]".ts|
}
@@ -122,18 +131,6 @@ task :const_upd_m => :environment do
end
task :const_identities => :environment do
-
- #PRUD identities included here
- "[email protected]".ts_eval= %Q|"[email protected]".ts|
- "[email protected]".ts_eval= %Q|"[email protected]".ts|
- "[email protected]".ts_eval= %Q|"[email protected]".ts|
- "[email protected]".ts_eval= %Q|"[email protected]".ts|
- "[email protected]".ts_eval= %Q|"[email protected]".ts|
- "[email protected]".ts_eval= %Q|"[email protected]".ts|
- "[email protected]".ts_eval= %Q|"[email protected]".ts|
- "[email protected]".ts_eval= %Q|"[email protected]".ts|
-
-
["KRSGFNS", "KRCONNS"].each do |s_name|
["HON", "HAW", "MAU", "KAU"].each do |county|
"#{s_name}_NMC@#{county}.Q".ts_append_eval %Q|"#{s_name}@#{county}.Q".ts.load_from "/Volumes/UHEROwork/data/rawdata/History/prud_upd.xls"|
diff --git a/lib/tasks/TOUR.rake b/lib/tasks/TOUR.rake
index e0e3441..07b18e8 100644
--- a/lib/tasks/TOUR.rake
+++ b/lib/tasks/TOUR.rake
@@ -700,77 +700,48 @@ task :tour_upd => :environment do
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 6, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 7, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 8, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 11, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 12, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 13, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 14, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 15, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 16, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 11, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 12, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 13, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 14, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 15, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 16, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 21, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 22, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 23, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 24, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 25, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 26, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 29, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 30, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 31, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 32, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 33, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 34, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 29, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 30, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 31, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 32, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 33, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 34, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 38, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 39, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 40, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 41, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 42, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 43, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 46, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 47, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 48, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 49, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 50, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 51, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 46, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 47, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 48, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 49, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 50, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 51, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 55, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 56, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 57, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 58, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 59, :col => "repeat:2:13", :frequency => "M" })/1000|,
"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 60, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 63, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 64, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 65, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 66, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 67, :col => "repeat:2:13", :frequency => "M" })/1000|,
-# "[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 68, :col => "repeat:2:13", :frequency => "M" })/1000|,
-
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => "header_range:col:1:Oahu:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => "header_range:col:1:Kauai:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => "header_range:col:1:Maui:10:45", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => "header_range:col:1:Molokai *:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => "header_range:col:1:Lanai *:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => "header_range:col:1:Big Island[or]hawaii island:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:4", :row => "header_range:col:1:Oahu:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:4", :row => "header_range:col:1:Kauai:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:4", :row => "header_range:col:1:Maui:10:45", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:4", :row => "header_range:col:1:Molokai *:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:4", :row => "header_range:col:1:Lanai *:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:4", :row => "header_range:col:1:Big Island[or]hawaii island:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "Japan", :row => "header_range:col:1:Oahu:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "Japan", :row => "header_range:col:1:Kauai:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "Japan", :row => "header_range:col:1:Maui:10:45", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "Japan", :row => "header_range:col:1:Molokai *:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "Japan", :row => "header_range:col:1:Lanai *:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "Japan", :row => "header_range:col:1:Big Island[or]hawaii island:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "Canada", :row => "header_range:col:1:Oahu:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "Canada", :row => "header_range:col:1:Kauai:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "Canada", :row => "header_range:col:1:Maui:10:45", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "Canada", :row => "header_range:col:1:Molokai *:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "Canada", :row => "header_range:col:1:Lanai *:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-"[email protected]" => %Q|Series.load_from_download( "TOUR_%b%[email protected]", { :file_type => "xls", :start_date => "2011-01-01", :sheet => "Canada", :row => "header_range:col:1:Big Island[or]hawaii island:10:45:no_okina", :col => 2, :frequency => "M" })/1000|,
-
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 63, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 64, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 65, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 66, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 67, :col => "repeat:2:13", :frequency => "M" })/1000|,
+"[email protected]" => %Q|Series.load_from_file("/Volumes/UHEROwork/data/rawdata/TOUR_CYFENG%y.xls", {:file_type => "xls", :start_date => "2011-01-01", :sheet => "sheet_num:3", :row => 68, :col => "repeat:2:13", :frequency => "M" })/1000|,
diff --git a/lib/tasks/source_map.rake b/lib/tasks/source_map.rake
index b4c1881..485a6da 100644
--- a/lib/tasks/source_map.rake
+++ b/lib/tasks/source_map.rake
@@ -69,11 +69,38 @@ task :load_all_v_series => :environment do
end
end
+
+
+# Current Process
+# AremosSeries.delete_all
+# Series.delete_all
+# DataPoint.delete_all
+# DataSource.delete_all
+# Load DataSourceDownload
+# on dev server: mysqldump -u root uhero_db_dev data_source_downloads > ~/Dropbox/Personal/dumpfilename.sql
+# on new machine: mysql -u root uhero_db_dev < ~/Dropbox/Personal/dumpfilename.sql
+# rake reload_aremos
+# rake load_all_histories
+# nightly runs
+# add manual_and_other to nightly runs
+# units list below
+# run this line... some are not there yet
+#to_find_units.each {|s_name| s_name.ts.find_units rescue puts "\n\n\n\nSERIES:#{s_name} doesn't exist yet\n\n\n"};0
+
+# issues:
+# Series in second half of load_all_series aren't ready yet / now these are in a manual thing
+# need to get a list of units
+# units list below
+# to resolve the missing things, export a csv that has series and their diffs?
+
+
task :load_all_histories => :environment do
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/tax_hist_new.xls"
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/tax_hist_new.xls", "collec"
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/tour_upd1_hist.xls"
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/tour_upd2_hist.xls"
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/tour_upd3_hist.xls"
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/inc_hist.xls"
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/inc_hist.xls", "HI_Q"
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/inc_hist.xls", "HI"
@@ -89,18 +116,41 @@ task :load_all_histories => :environment do
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/SQ5NHistory.xls"
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/gsp_hist.xls"
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/bls_job_hist.xls"
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/bls_histextend_date_format_correct.xls", "hiwi"
+
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/SICDATA1.xls"
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/SICDATA2.xls"
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/SIC_income.xls", "hi"
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/SIC_income.xls", "hon"
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/SIC_income.xls", "haw"
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/SIC_income.xls", "kau"
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/SIC_income.xls", "mau"
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/SIC_income.xls"
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/SICHistory.xls"
+
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/AgricultureForNewDB.xls"
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/Kauai.xls"
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/const_hist_m.xls"
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/permits_upd.xls"
+
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/bls_sic_detail.xls"
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/prud_hist.xls"
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/prud_upd.xls" #also manual? not sure if we need both, or one one screws up the other?
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/hiwi_hist.xls"
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/History/v_day.xls"
+
+end
+
+
+
+task :load_manual_and_other => :environment do
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/Manual/TOUR_OCUP.xls"
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/Manual/hbr_upd_m.csv"
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/Manual/census_upd.xls"
Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/Manual/hud_upd.xls"
-
+ Series.load_all_series_from "/Volumes/UHEROwork/data/rawdata/Manual/TRMS.xls"
+
#3/21/12 Ben: try to replace all of these with individual calls since they change and should go in the loads in the other jobs
#Series.load_all_mean_corrected_sa_series_from "/Volumes/UHEROwork/data/tour/seasadj/sadata.xls", "sadata"
#Series.load_all_sa_series_from "/Volumes/UHEROwork/data/bls/seasadj/sadata.xls", "sadata"
@@ -194,9 +244,14 @@ task :load_all_histories => :environment do
#seasonal adjustments
"[email protected]".ts_eval= %Q|"[email protected]".ts.apply_seasonal_adjustment :additive|
#"[email protected]".ts.apply_seasonal_adjustment :additive
-
end
+
+
+
+#["[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "YLPMNCH&@HAW.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "YOTLAB&@HI.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "NRBEA&@HI.A", "YPCBEA&@HI.A", "YLP&@HI.A", "YTWPER&@HI.A", "YNETR&@HI.A", "YDIR&@HI.A", "YV&@HI.A", "YWAGE&@HI.A", "YPROP&@HI.A", "YLPMNPR&@HI.A", "YLPR&@HI.A", "YLPRTR&@HI.A", "YLPRTT&@HI.A", "YLPROT&@HI.A", "YLPRTA&@HI.A", "YLPRSV&@HI.A", "YLPRCM&@HI.A", "YLPRUT&@HI.A", "YLPTW&@HI.A", "YLPTR&@HI.A", "YLPTRBL&@HI.A", "YLPTRGM&@HI.A", "YPCBEA&@HON.A", "YLP&@HON.A", "YTWPER&@HON.A", "YRESADJ&@HON.A", "YLPAGFA&@HON.A", "YL_NF&@HON.A", "YL_PR&@HON.A", "YLPAGFFA&@HON.A", "YLPRLT&@HON.A", "YLPRUT&@HON.A", "YLPTRBL&@HON.A", "YLPTRGM&@HON.A", "YLPTRFD&@HON.A", "YLPTRAT&@HON.A", "YLPTRAP&@HON.A", "YLPTRFR&@HON.A", "YLPTRET&@HON.A", "YLPTROT&@HON.A", "YLPFIRDP&@HON.A", "YLPFIROF&@HON.A", "YLPFIRSE&@HON.A", "YPROPFA&@HAW.A", "YPROPNF&@HAW.A", "YLPAGFA&@HAW.A", "YL_NF&@HAW.A", "YL_PR&@HAW.A", "YLPAGFFA&@HAW.A", "YLPAGFFF&@HAW.A", "YLPMIOL&@HAW.A", "YLPMINM&@HAW.A", "YLPCGB&@HAW.A", "YLPCHV&@HAW.A", "YLPCST&@HAW.A", "YLPMDFR&@HAW.A", "YLPTRFD&@HAW.A", "YLPTRAT&@HAW.A", "YLPTRAP&@HAW.A", "YLPTRFR&@HAW.A", "YLPTRET&@HAW.A", "YLPTROT&@HAW.A", "YLPFIRDP&@HAW.A", "YLPFIROF&@HAW.A", "YLPFIRSE&@HAW.A", "YLPFIRIC&@HAW.A", "YLPFIRIA&@HAW.A", "YLPFIRRE&@HAW.A", "YLPFIRHD&@HAW.A", "YLPSVPS&@HAW.A", "YLPSVPH&@HAW.A", "YLPSVMO&@HAW.A", "YLPSVMS&@HAW.A", "YLPMIOL&@MAU.A", "YLPCGB&@MAU.A", "YLPCHV&@MAU.A", "YLPCST&@MAU.A", "YLPMDWD&@MAU.A", "YLPMDFR&@MAU.A", "YLPMDST&@MAU.A", "YLPMDPM&@MAU.A", "YLPMDFB&@MAU.A", "YLPMDMS&@MAU.A", "YLPMNAP&@MAU.A", "YLPFIRIC&@MAU.A", "YLPFIRIA&@MAU.A", "YLPFIRRE&@MAU.A", "YLPFIRCR&@MAU.A", "YLPFIRHD&@MAU.A", "YLPSVPS&@MAU.A", "YLPSVPH&@MAU.A", "YLPSVAU&@MAU.A", "YLPSVMO&@MAU.A", "YLPMDFR&@KAU.A", "YLPMDST&@KAU.A", "YLPMDTR&@KAU.A", "YLPMDMS&@KAU.A", "YLPMNFD&@KAU.A", "YLPSVLG&@KAU.A", "YLPSVED&@KAU.A", "YLPSVMU&@KAU.A", "YLPSVEN&@KAU.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "YPROPNF&@HI.A", "YLPMDST&@HAW.A", "YLPMN&@HAW.A", "YLPSVAU&@HAW.A", "YLPSVMR&@HAW.A", "YLPMI&@MAU.A", "YLPG&@MAU.A", "YLPGFC&@MAU.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "YP&@HI.A", "YLPMNPT&@HI.A", "YLPMNRB&@HI.A", "YLPRTW&@HI.A", "YLPRLT&@HI.A", "YLPMNPR&@KAU.A", "YLPSVMB&@KAU.A", "YLPSVMS&@KAU.A", "[email protected]", "[email protected]", "YLPSV&@KAU.A", "YLPSVHL&@KAU.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "YL_PR&@HI.A", "YLPAGFF&@HI.A", "YLPAGFFA&@HI.A", "YLPAGFFF&@HI.A", "YLPMI&@HI.A", "YLPMIMT&@HI.A", "YLPMICO&@HI.A", "YLPMIOL&@HI.A", "YLPMINM&@HI.A", "YLPC&@HI.A", "YLPCGB&@HI.A", "YLPCHV&@HI.A", "YLPCST&@HI.A", "YLPM&@HI.A", "YLPMDEL&@HI.A", "YLPMDMV&@HI.A", "YLPMDEL&@HON.A", "YLPSVEN&@HON.A", "YLPRTW&@HAW.A", "YLPAGFFA&@MAU.A", "YLPFIRSE&@KAU.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "YPROPFA&@HI.A", "YLPAGFA&@HI.A", "YL_NF&@HI.A", "YLPMDIS&@HI.A", "YLPTRFD&@HI.A", "YLPTRFR&@HI.A", "YLPMINM&@HON.A", "YLPMDFB&@HAW.A", "YLPSVAM&@HAW.A", "YLPSVMS&@MAU.A", "YLPRTT&@KAU.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "YLPSVHE&@KAU.A", "YLPMN&@MAU.A", "YLPMI&@HAW.A", "YLPSVHL&@MAU.A", "YLPTR&@HAW.A", "YLPAGFF&@KAU.A", "YLPFIR&@MAU.A", "YLPFIR&@HON.A", "YLPAGFF&@MAU.A", "YLPTW&@HAW.A", "YLPSV&@HON.A", "YLPTR&@KAU.A", "YLPMI&@KAU.A", "YLPM&@HON.A", "YLPFIR&@HAW.A", "YLPSVBS&@HI.A", "YLPMN&@KAU.A", "YLPSV&@HAW.A", "[email protected]", "YNETR&@HON.A", "YDIR&@HON.A", "YLPMIOL&@HON.A", "YLPSVSO&@MAU.A", "YLPSVMU&@MAU.A", "YLPSVMB&@MAU.A", "YLPSVEN&@MAU.A", "YLPMDWD&@KAU.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "YLPC&@KAU.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "YLPSVAU&@KAU.A", "YLPSVMR&@KAU.A", "YLPSVAM&@KAU.A", "YLPSVMO&@KAU.A", "YLPSVSO&@KAU.A", "YLPGFM&@KAU.A", "YLPGSL&@KAU.A", "YLPGST&@KAU.A", "YLPGL&@KAU.A", "YV&@HON.A", "YWAGE&@HON.A", "YOTLAB&@HON.A", "YPROP&@HON.A", "YPROPNF&@HON.A", "YLPAGFFF&@HON.A", "YLPMIMT&@HON.A", "YLPRTA&@HON.A", "YLPSVAM&@MAU.A", "YLPSVLG&@MAU.A", "YLPSVED&@MAU.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "YLPMICO&@HON.A", "YLPFIRIC&@HON.A", "YLPFIRIA&@HON.A", "YLPFIRRE&@HON.A", "YLPMDWD&@HAW.A", "YLPMDPM&@HAW.A", "YLPMDMC&@HAW.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "YLPMD&@HI.A", "YLPMDWD&@HI.A", "YLPMDFR&@HI.A", "YLPMDST&@HI.A", "YLPMDPM&@HI.A", "YLPMDFB&@HI.A", "YLPMDMC&@HI.A", "YLPMDTR&@HI.A", "YLPMDMS&@HI.A", "YLPMN&@HI.A", "YLPMNFD&@HI.A", "YLPMNXM&@HI.A", "YLPMNAP&@HI.A", "YLPMNPA&@HI.A", "YLPMNCH&@HI.A", "YLPMNLT&@HI.A", "YLPTRET&@HI.A", "YLPTROT&@HI.A", "YLPFIR&@HI.A", "YLPFIRDP&@HI.A", "YLPFIROF&@HI.A", "YLPFIRSE&@HI.A", "YLPFIRIC&@HI.A", "YLPFIRIA&@HI.A", "YLPFIRRE&@HI.A", "YLPFIRCR&@HI.A", "YLPFIRHD&@HI.A", "YLPSV&@HI.A", "YLPSVHL&@HI.A", "YLPSVPS&@HI.A", "YLPSVPH&@HI.A", "YLPSVAU&@HI.A", "YLPSVMR&@HI.A", "YLPSVAM&@HI.A", "YLPSVMO&@HI.A", "YLPSVHE&@HI.A", "YLPSVLG&@HI.A", "YLPSVED&@HI.A", "YLPSVMU&@HI.A", "YLPSVMB&@HI.A", "YLPSVEN&@HI.A", "YLPSVMS&@HI.A", "YLPG&@HI.A", "YLPGFC&@HI.A", "YLPGFM&@HI.A", "YLPGSL&@HI.A", "YLPGST&@HI.A", "YLPGL&@HI.A", "YP&@HON.A", "NRBEA&@HON.A", "YLPMI&@HON.A", "YLPC&@HON.A", "YLPCGB&@HON.A", "YLPCHV&@HON.A", "YLPCST&@HON.A", "YLPMD&@HON.A", "YLPMDWD&@HON.A", "YLPMDFR&@HON.A", "YLPMDST&@HON.A", "YLPMDPM&@HON.A", "YLPMDFB&@HON.A", "YLPMDMC&@HON.A", "YLPMDMV&@HON.A", "YLPMDTR&@HON.A", "YLPMDIS&@HON.A", "YLPMDMS&@HON.A", "YLPMNFD&@HON.A", "YLPMNTB&@HON.A", "YLPMNXM&@HON.A", "YLPMNAP&@HON.A", "YLPMNPA&@HON.A", "YLPMNPR&@HON.A", "YLPMNCH&@HON.A", "YLPMNPT&@HON.A", "YLPMNRB&@HON.A", "YLPMNLT&@HON.A", "YLPR&@HON.A", "YLPRTR&@HON.A", "YLPRTT&@HON.A", "YLPRTW&@HON.A", "YLPROT&@HON.A", "YLPTW&@HON.A", "YLPFIRHD&@HON.A", "YLPSVPS&@HON.A", "YLPSVPH&@HON.A", "YLPSVBS&@HON.A", "YLPSVAU&@HON.A", "YLPSVMR&@HON.A", "YLPSVAM&@HON.A", "YLPSVMO&@HON.A", "YLPSVHE&@HON.A", "YLPSVLG&@HON.A", "YLPSVED&@HON.A", "YLPSVSO&@HON.A", "YLPSVMU&@HON.A", "YLPSVMB&@HON.A", "YLPSVMS&@HON.A", "YLPG&@HON.A", "YLPGFC&@HON.A", "YLPGFM&@HON.A", "YLPGSL&@HON.A", "YLPGST&@HON.A", "YLPGL&@HON.A", "YP&@HAW.A", "NRBEA&@HAW.A", "YPCBEA&@HAW.A", "YLP&@HAW.A", "YTWPER&@HAW.A", "YRESADJ&@HAW.A", "YNETR&@HAW.A", "YDIR&@HAW.A", "YV&@HAW.A", "YWAGE&@HAW.A", "YOTLAB&@HAW.A", "YPROP&@HAW.A", "YLPAGFF&@HAW.A", "YLPC&@HAW.A", "YLPMDEL&@HAW.A", "YLPMDMV&@HAW.A", "YLPMDTR&@HAW.A", "YLPMDIS&@HAW.A", "YLPMDMS&@HAW.A", "YLPMNFD&@HAW.A", "YLPMNAP&@HAW.A", "YLPMNPR&@HAW.A", "YLPMNPT&@HAW.A", "YLPMNRB&@HAW.A", "YLPRTT&@HAW.A", "YLPROT&@HAW.A", "YLPRLT&@HAW.A", "YLPRTA&@HAW.A", "YLPRSV&@HAW.A", "YLPRCM&@HAW.A", "YLPRUT&@HAW.A", "YLPTRBL&@HAW.A", "YLPTRGM&@HAW.A", "YLPSVHE&@HAW.A", "YLPSVLG&@HAW.A", "YLPSVED&@HAW.A", "YLPSVSO&@HAW.A", "YLPSVMU&@HAW.A", "YLPSVMB&@HAW.A", "YLPSVEN&@HAW.A", "YLPG&@HAW.A", "YLPGFC&@HAW.A", "YLPGFM&@HAW.A", "YLPGSL&@HAW.A", "YLPGST&@HAW.A", "YLPGL&@HAW.A", "YP&@MAU.A", "NRBEA&@MAU.A", "YPCBEA&@MAU.A", "YLP&@MAU.A", "YTWPER&@MAU.A", "YRESADJ&@MAU.A", "YNETR&@MAU.A", "YDIR&@MAU.A", "YV&@MAU.A", "YWAGE&@MAU.A", "YOTLAB&@MAU.A", "YPROP&@MAU.A", "YPROPFA&@MAU.A", "YPROPNF&@MAU.A", "YLPAGFA&@MAU.A", "YL_NF&@MAU.A", "YL_PR&@MAU.A", "YLPAGFFF&@MAU.A", "YLPC&@MAU.A", "YLPMD&@MAU.A", "YLPMNFD&@MAU.A", "YLPMNXM&@MAU.A", "YLPMNPR&@MAU.A", "YLPMNCH&@MAU.A", "YLPR&@MAU.A", "YLPRTT&@MAU.A", "YLPRTW&@MAU.A", "YLPROT&@MAU.A", "YLPRLT&@MAU.A", "YLPRTA&@MAU.A", "YLPRSV&@MAU.A", "YLPRCM&@MAU.A", "YLPRUT&@MAU.A", "YLPTW&@MAU.A", "YLPTRBL&@MAU.A", "YLPTRGM&@MAU.A", "YLPTRFD&@MAU.A", "YLPTRAT&@MAU.A", "YLPTRAP&@MAU.A", "YLPTRFR&@MAU.A", "YLPTRET&@MAU.A", "YLPTROT&@MAU.A", "YLPFIRDP&@MAU.A", "YLPFIROF&@MAU.A", "YLPFIRSE&@MAU.A", "YLPSVHE&@MAU.A", "YLPGFM&@MAU.A", "YLPGSL&@MAU.A", "YLPGST&@MAU.A", "YLPGL&@MAU.A", "YP&@KAU.A", "NRBEA&@KAU.A", "YPCBEA&@KAU.A", "YLP&@KAU.A", "YTWPER&@KAU.A", "YRESADJ&@KAU.A", "YNETR&@KAU.A", "YDIR&@KAU.A", "YV&@KAU.A", "YWAGE&@KAU.A", "YOTLAB&@KAU.A", "YPROP&@KAU.A", "YPROPFA&@KAU.A", "YPROPNF&@KAU.A", "YLPAGFA&@KAU.A", "YL_NF&@KAU.A", "YL_PR&@KAU.A", "YLPAGFFA&@KAU.A", "YLPAGFFF&@KAU.A", "YLPCGB&@KAU.A", "YLPCHV&@KAU.A", "YLPCST&@KAU.A", "YLPM&@KAU.A", "YLPMD&@KAU.A", "YLPMNAP&@KAU.A", "YLPR&@KAU.A", "YLPRTW&@KAU.A", "YLPROT&@KAU.A", "YLPRLT&@KAU.A", "YLPRTA&@KAU.A", "YLPRSV&@KAU.A", "YLPRCM&@KAU.A", "YLPRUT&@KAU.A", "YLPTW&@KAU.A", "YLPTRBL&@KAU.A", "YLPTRGM&@KAU.A", "YLPTRFD&@KAU.A", "YLPTRAT&@KAU.A", "YLPTRAP&@KAU.A", "YLPTRFR&@KAU.A", "YLPTRET&@KAU.A", "YLPTROT&@KAU.A", "YLPFIR&@KAU.A", "YLPFIRDP&@KAU.A", "YLPFIROF&@KAU.A", "YLPFIRIC&@KAU.A", "YLPFIRIA&@KAU.A", "YLPFIRRE&@KAU.A", "YLPFIRHD&@KAU.A", "YLPSVPS&@KAU.A", "YLPSVPH&@KAU.A", "YLPSVBS&@KAU.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "YLPSVBS&@HAW.A", "YLPAGFF&@HON.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "YLPG&@KAU.A", "YLPGFC&@KAU.A", "[email protected]", "[email protected]", "[email protected]", "YLPSVSO&@HI.A", "YPROPFA&@HON.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "YLPMNTB&@HI.A", "[email protected]", "[email protected]", "YLPTRAT&@HI.A", "YLPTRAP&@HI.A", "YLPMDFB&@KAU.A", "[email protected]", "YLPTR&@MAU.A", "[email protected]", "[email protected]", "[email protected]", "YLPSVBS&@MAU.A", "[email protected]", "[email protected]", "YLPM&@HAW.A", "YLPMN&@HON.A", "YLPSVHL&@HON.A", "YLPR&@HAW.A", "YLPSV&@MAU.A", "YLPSVHL&@HAW.A", "YLPM&@MAU.A", "YLPTR&@HON.A", "YLPMD&@HAW.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "YLPRSV&@HON.A", "YLPRCM&@HON.A", "YLPFIRCR&@HON.A", "YLPSVMR&@MAU.A", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]", "[email protected]"]
+
+
# fixed a problem with the semi-annual reads
# DataSource.where("eval LIKE '%load_from_bls%\"S\"%'").each do |ds|
# dsd=ds