-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
221 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
cff-version: 1.2.0 | ||
message: "To cite MOVES3, use the metadata from this file." | ||
message: "To cite MOVES3.1, use the metadata from this file." | ||
authors: | ||
- name: "USEPA" | ||
title: "Motor Vehicle Emission Simulator: MOVES3" | ||
title: "Motor Vehicle Emission Simulator: MOVES3.1" | ||
type: software | ||
identifiers: | ||
- type: other | ||
value: "Office of Transportation and Air Quality. US Environmental Protection Agency. Ann Arbor, MI." | ||
description: "Publisher" | ||
url: "https://www.epa.gov/moves" | ||
version: 3.0.4 | ||
date-released: 2022-08-05 | ||
version: 3.1 | ||
date-released: 2022-12-09 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
mysql -uroot -pmoves --force < CreateMOVESUser.sql | ||
mysql -uroot -pmoves < movesdb20220802.sql | ||
mysql -uroot -pmoves < movesdb20221007.sql |
Binary file renamed
BIN
+26.5 MB
database/Setup/movesdb20220802.zip → database/Setup/movesdb20221007.zip
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/************************************************************************************************** | ||
* @(#)ConverterAction.java | ||
* | ||
* | ||
* | ||
*************************************************************************************************/ | ||
package gov.epa.otaq.moves.master.gui; | ||
|
||
import javax.swing.Action; | ||
|
||
/** | ||
* Class for Open GitHub menu option. | ||
**/ | ||
public class OpenGitHubAction extends JLFAbstractAction { | ||
/** Constant command key text. **/ | ||
static final String ACTION_COMMAND_KEY = | ||
"openGitHub"; | ||
/** Constant action name. **/ | ||
static final String NAME = | ||
"Open MOVES GitHub"; | ||
/** Constant short description text. **/ | ||
static final String SHORT_DESCRIPTION = | ||
"Open MOVES GitHub"; | ||
/** Constant long description text. **/ | ||
static final String LONG_DESCRIPTION = | ||
"Open MOVES GitHub"; | ||
/** Constant mnemonic key. **/ | ||
static final int MNEMONIC_KEY = 'G'; | ||
|
||
/** | ||
* Implements the menu option UI, including command keys, | ||
* name, descriptions, and icons. | ||
**/ | ||
public OpenGitHubAction() { | ||
putValue(Action.NAME, NAME); | ||
putValue(Action.SHORT_DESCRIPTION, SHORT_DESCRIPTION); | ||
putValue(Action.LONG_DESCRIPTION, LONG_DESCRIPTION); | ||
putValue(Action.MNEMONIC_KEY, Integer.valueOf(MNEMONIC_KEY)); | ||
putValue(Action.ACTION_COMMAND_KEY, ACTION_COMMAND_KEY); | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
gov/epa/otaq/moves/master/gui/OpenNonroadCheatSheetAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/************************************************************************************************** | ||
* @(#)ConverterAction.java | ||
* | ||
* | ||
* | ||
*************************************************************************************************/ | ||
package gov.epa.otaq.moves.master.gui; | ||
|
||
import javax.swing.Action; | ||
|
||
/** | ||
* Class for Open Nonroad Cheatsheet menu option. | ||
**/ | ||
public class OpenNonroadCheatSheetAction extends JLFAbstractAction { | ||
/** Constant command key text. **/ | ||
static final String ACTION_COMMAND_KEY = | ||
"openNonroadCheatsheet"; | ||
/** Constant action name. **/ | ||
static final String NAME = | ||
"Open Nonroad Cheat Sheet"; | ||
/** Constant short description text. **/ | ||
static final String SHORT_DESCRIPTION = | ||
"Open Nonroad Cheat Sheet"; | ||
/** Constant long description text. **/ | ||
static final String LONG_DESCRIPTION = | ||
"Open Nonroad Cheat Sheet"; | ||
/** Constant mnemonic key. **/ | ||
static final int MNEMONIC_KEY = 'N'; | ||
|
||
/** | ||
* Implements the menu option UI, including command keys, | ||
* name, descriptions, and icons. | ||
**/ | ||
public OpenNonroadCheatSheetAction() { | ||
putValue(Action.NAME, NAME); | ||
putValue(Action.SHORT_DESCRIPTION, SHORT_DESCRIPTION); | ||
putValue(Action.LONG_DESCRIPTION, LONG_DESCRIPTION); | ||
putValue(Action.MNEMONIC_KEY, Integer.valueOf(MNEMONIC_KEY)); | ||
putValue(Action.ACTION_COMMAND_KEY, ACTION_COMMAND_KEY); | ||
} | ||
} |
41 changes: 41 additions & 0 deletions
41
gov/epa/otaq/moves/master/gui/OpenOnroadCheatSheetAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/************************************************************************************************** | ||
* @(#)ConverterAction.java | ||
* | ||
* | ||
* | ||
*************************************************************************************************/ | ||
package gov.epa.otaq.moves.master.gui; | ||
|
||
import javax.swing.Action; | ||
|
||
/** | ||
* Class for Open Onroad Cheatsheet menu option. | ||
**/ | ||
public class OpenOnroadCheatSheetAction extends JLFAbstractAction { | ||
/** Constant command key text. **/ | ||
static final String ACTION_COMMAND_KEY = | ||
"openOnroadCheatsheet"; | ||
/** Constant action name. **/ | ||
static final String NAME = | ||
"Open Onroad Cheat Sheet"; | ||
/** Constant short description text. **/ | ||
static final String SHORT_DESCRIPTION = | ||
"Open Onroad Cheat Sheet"; | ||
/** Constant long description text. **/ | ||
static final String LONG_DESCRIPTION = | ||
"Open Onroad Cheat Sheet"; | ||
/** Constant mnemonic key. **/ | ||
static final int MNEMONIC_KEY = 'O'; | ||
|
||
/** | ||
* Implements the menu option UI, including command keys, | ||
* name, descriptions, and icons. | ||
**/ | ||
public OpenOnroadCheatSheetAction() { | ||
putValue(Action.NAME, NAME); | ||
putValue(Action.SHORT_DESCRIPTION, SHORT_DESCRIPTION); | ||
putValue(Action.LONG_DESCRIPTION, LONG_DESCRIPTION); | ||
putValue(Action.MNEMONIC_KEY, Integer.valueOf(MNEMONIC_KEY)); | ||
putValue(Action.ACTION_COMMAND_KEY, ACTION_COMMAND_KEY); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.