-
Notifications
You must be signed in to change notification settings - Fork 2
Declare runtime deps in pyproject.toml for all platforms #87
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
Open
elliott-ruebush
wants to merge
5
commits into
main
Choose a base branch
from
feature/pyproject-deps-ci
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
87f1411
Declare runtime deps in pyproject.toml for all platforms.
elliott-ruebush 63c7f61
Additional iteration on readme setup steps + remove redundant readme …
elliott-ruebush d38c4ed
Ignore .DS_store
elliott-ruebush b46d08d
Refine readme some more + transfer config explanation from readme to …
elliott-ruebush c3f7906
Additional readme installation section tweaks
elliott-ruebush File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Felt that this README was somewhat redundant vs. the Installation section in the root README. Unless there's a reason to keep it, I think it's nice to get rid of the extra file |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,20 +1,51 @@ | ||
| # Copy to <environment>.config (e.g. DENA.config) and fill in paths for your deployment. | ||
| # The environment name is passed to scripts as -e / --environment. | ||
|
|
||
| # Required if pulling tracks from the database in run_ground_truthing.py or run_audible_transits.py | ||
| [database:overflights] | ||
| # Database name | ||
| name = | ||
| # Database credentials username | ||
| username = | ||
| # Database credentials password | ||
| password = | ||
| # Database port | ||
| port = | ||
| # Database host | ||
| host = | ||
|
|
||
| [data] | ||
| # Absolute path to the file containing site metadata. | ||
| # Required for run_ground_truthing.py and generate_active_space.py | ||
| site_metadata = | ||
| # Absolute path to the directory where all NVSPL sound data is stored. | ||
| # Required for run_ground_truthing.py and generate_active_space.py | ||
| nvspl_archive = | ||
| # Absolute path to the directory where ADS-B track data is stored. | ||
| # Required if pulling ADS-B tracks in run_ground_truthing.py or run_audible_transits.py | ||
| adsb = | ||
| # Absolute path to the directory where AIS track data is stored. | ||
| # Required if pulling AIS tracks in run_ground_truthing.py or run_audible_transits.py | ||
| ais = | ||
| # Absolute path to the DEM tif file to use for active space generation. | ||
| # Required for generate_active_space.py and generate_active_space_mesh.py | ||
| dem = | ||
| # Absolute path to the Mennitt ambience tif. | ||
| # Required for generate_active_space.py and generate_active_space_mesh.py | ||
| mennitt = | ||
|
|
||
| [project] | ||
| # Absolute path to the directory where all NPS-ActiveSpace project files are stored. | ||
| # Required for all scripts | ||
| dir = | ||
| # Absolute path to the NMSIM Nord2000batch.exe file. | ||
| # Required for generate_active_space.py, generate_3d_active_space.py, and generate_active_space_mesh.py | ||
| nmsim = | ||
| FAA_Releasable_db = | ||
| FAA_type_corrections = | ||
| # Absolute path to the FAA MASTER.txt database file from the FAA releasable aircraft download: | ||
| # https://www.faa.gov/licenses_certificates/aircraft_certification/aircraft_registry/releasable_aircraft_download | ||
| # Required for run_audible_transits.py | ||
| FAA_Releasable_db = | ||
| # Absolute path to a JSON file for correcting aircraft types in the FAA database. | ||
| # Keys are ICAO addresses; values are correct aircraft type. | ||
| # Required for run_ground_truthing.py and run_audible_transits.py | ||
| FAA_type_corrections = |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
moved this info into the
template.configfile