8ab31ccce5629d57ad6ca671a90c39d54fdda568,pudl/models/ferc1.py,PlantSteamFERC1,PlantSteamFERC1_1,#,111

Before Change


        Enum(*pc.ferc1_plant_kind_strings, name="ferc1_plant_kind"),
        comment="Simplified plant type, categorized by PUDL based on our best guess of what was intended based on freeform string reported to FERC. Unidentifiable types are null."
    )
    construction_type = Column(
        Enum(*pc.ferc1_construction_type_strings,
             name="ferc1_construction_type"),
        comment="Type of plant construction. Categorized by PUDL based on our best guess of intended value in FERC1 freeform strings."
    )
    construction_year = Column(
        Integer,
        comment="Year the plant"s oldest still operational unit was built."
    )

After Change


        ForeignKeyConstraint(
            ["utility_id_ferc1", "plant_name"],
            ["plants_ferc.utility_id_ferc1", "plants_ferc.plant_name"]),
        {"comment": "Large thermal generating plants, as reported on page 402 of FERC Form 1."}
    )

    id = Column(Integer, autoincrement=True,
                primary_key=True, comment=id_comment)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: catalyst-cooperative/pudl
Commit Name: 8ab31ccce5629d57ad6ca671a90c39d54fdda568
Time: 2019-01-02
Author: cgosnell@catalyst.coop
File Name: pudl/models/ferc1.py
Class Name: PlantSteamFERC1
Method Name: PlantSteamFERC1_1


Project Name: catalyst-cooperative/pudl
Commit Name: 8ab31ccce5629d57ad6ca671a90c39d54fdda568
Time: 2019-01-02
Author: cgosnell@catalyst.coop
File Name: pudl/models/ferc1.py
Class Name: PurchasedPowerFERC1
Method Name: PurchasedPowerFERC1_1


Project Name: catalyst-cooperative/pudl
Commit Name: b265d972591d4a7127c6818c4fd1099bf3e63a1d
Time: 2018-12-26
Author: zane.selvans@catalyst.coop
File Name: pudl/models/ferc1.py
Class Name: PurchasedPowerFERC1
Method Name: PurchasedPowerFERC1_1