Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make emissions analysis classes public #2081

Merged
merged 5 commits into from
Jul 15, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* Sums up emissions by pollutant. Basically wraps a hash map but is here for better
* readability of {@link org.matsim.contrib.emissions.analysis.EmissionsOnLinkEventHandler}
*/
class EmissionsByPollutant {
public class EmissionsByPollutant {
// The EmissionsByPollutant potentially adds up the same emissions coming from cold and warm. Thus, this cannot be combined into the enum approach
// without some thinking. kai, jan'20
// yyyy todo I think that this now can be done. kai, jan'20
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
/**
* Collects Warm- and Cold-Emission-Events by time bin and by link-id
*/
class EmissionsOnLinkEventHandler implements WarmEmissionEventHandler, ColdEmissionEventHandler {
public class EmissionsOnLinkEventHandler implements WarmEmissionEventHandler, ColdEmissionEventHandler {

private final TimeBinMap<Map<Id<Link>, EmissionsByPollutant>> timeBins;

Expand Down