-
Notifications
You must be signed in to change notification settings - Fork 0
/
catalog.yml
52 lines (52 loc) · 1.53 KB
/
catalog.yml
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
sources:
recycling:
description: Recycling Flat
driver: csv
args:
urlpath: '{{ CATALOG_DIR }}/data/recycling_flat.csv'
csv_kwargs:
usecols: ['material', 'location', 'commodity_wt', 'date', 'location_type']
parse_dates: ['date']
landfill:
description: Landfill Flat
driver: csv
args:
urlpath: '{{ CATALOG_DIR }}/data/landfill_flat.csv'
csv_kwargs:
usecols: ['source', 'class', 'landfill_wt', 'date']
parse_dates: ['date']
solid_waste_mulch:
description: Solid Waste Mulch
driver: csv
args:
urlpath: '{{ CATALOG_DIR }}/data/processed/Mulch.csv'
csv_kwargs:
parse_dates: ['Month']
solid_waste_stream:
description: Solid Waste Stream
driver: csv
args:
urlpath: '{{ CATALOG_DIR }}/data/processed/TotalWasteStream.csv'
csv_kwargs:
parse_dates: ['Month']
solid_waste_landfill:
description: Solid Waste Landfilled
driver: csv
args:
urlpath: '{{ CATALOG_DIR }}/data/processed/Landfilled.csv'
csv_kwargs:
parse_dates: ['Month']
solid_waste_commodity_recycling:
description: Solid Waste Commodity Recycling
driver: csv
args:
urlpath: '{{ CATALOG_DIR }}/data/processed/CommodityRecycling.csv'
csv_kwargs:
parse_dates: ['Month']
solid_waste_recycled_diverted:
description: Solid Waste Recycled Diverted
driver: csv
args:
urlpath: '{{ CATALOG_DIR }}/data/processed/RecycledDiverted.csv'
csv_kwargs:
parse_dates: ['Month']