Skip to content

Commit

Permalink
568 - Create natural gas facility damage analysis (#574)
Browse files Browse the repository at this point in the history
* Fixes #568 - added gas facility damage analysis

* Reformatted

* Added test for gas facility damage analysis

* Removed print statement

* Update input dataset type
  • Loading branch information
navarroc authored May 22, 2024
1 parent 9e27a3f commit 4e66ba2
Show file tree
Hide file tree
Showing 7 changed files with 541 additions and 3 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
## [Unreleased]

### Added
- Gas Facility Damage Analysis [#568](https://github.com/IN-CORE/pyincore/issues/568)

### Changed
- join dataset has an option for only keeping the table dataset fields [#299](https://github.com/IN-CORE/pyincore/issues/299)

## [Unreleased]

### Fixed
- Permission error in clearing cache process [#563](https://github.com/IN-CORE/pyincore/issues/563)

Expand Down
7 changes: 7 additions & 0 deletions docs/source/modules.rst
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,13 @@ analyses/galvestoncge
.. autofunction:: galvestoncge.galvestonoutput.gams_to_dataframes
:members:

analyses/gasfacilitydamage
============================
.. autoclass:: gasfacilitydamage.gasfacilitydamage.GasFacilityDamage
:members:
.. autoclass:: gasfacilitydamage.gfutil.GfUtil
:members:

analyses/housingrecovery
========================
.. autoclass:: housingrecovery.housingrecovery.HousingRecovery
Expand Down
9 changes: 9 additions & 0 deletions pyincore/analyses/gasfacilitydamage/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Copyright (c) 2024 University of Illinois and others. All rights reserved.
#
# This program and the accompanying materials are made available under the
# terms of the Mozilla Public License v2.0 which accompanies this distribution,
# and is available at https://www.mozilla.org/en-US/MPL/2.0/


from pyincore.analyses.gasfacilitydamage.gasfacilitydamage import GasFacilityDamage
from pyincore.analyses.gasfacilitydamage.gfutil import GfUtil
Loading

0 comments on commit 4e66ba2

Please sign in to comment.