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
|
# File 'lib/residence/data.rb', line 6
def self.included(base)
base.data_miner do
schema do
string 'residence_class_id'
string 'urbanity_id'
string 'zip_code_id'
date 'construction_year'
boolean 'ownership'
float 'occupation'
integer 'residents'
integer 'floors'
float 'floorspace_estimate'
string 'air_conditioner_use_id'
string 'dishwasher_use_id'
string 'clothes_machine_use_id'
integer 'refrigerator_count'
integer 'freezer_count'
float 'lighting_efficiency'
integer 'bedrooms'
integer 'dining_rooms'
integer 'living_rooms'
integer 'kitchens'
integer 'full_bathrooms'
integer 'half_bathrooms'
float 'bathrooms'
integer 'other_rooms'
integer 'heated_garage_berths'
float 'annual_fuel_oil_volume_estimate'
float 'annual_fuel_oil_cost'
float 'monthly_natural_gas_volume_estimate'
float 'monthly_natural_gas_cost'
float 'monthly_electricity_use_estimate'
float 'monthly_electricity_cost'
float 'green_electricity'
float 'annual_propane_volume_estimate'
float 'annual_propane_cost'
float 'annual_wood_volume_estimate'
float 'annual_kerosene_volume_estimate'
float 'annual_coal_volume_estimate'
float 'annual_coal_cost'
date 'acquisition'
date 'retirement'
end
process "pull orphans" do
ResidenceFuelType.run_data_miner!
ResidenceFuelPrice.run_data_miner!
ResidentialEnergyConsumptionSurveyResponse.run_data_miner!
end
process :run_data_miner_on_belongs_to_associations
end
end
|