Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Get Started!
Ready to contribute? Here's are a few steps we will go over for contributing
to `act`.

1. Fork the `arm-community-toolkit` repo on GitHub and clone your fork locally.
1. Fork the `atmospheric-data-community-toolkit` repo on GitHub and clone your fork locally.

2. Install your local copy into an Anaconda environment. Assuming you have
anaconda installed.
Expand All @@ -77,7 +77,7 @@ to `act`.

Fork and Cloning the ACT Repository
-----------------------------------
To start, you will first fork the `arm-community-toolkit` repo on GitHub by
To start, you will first fork the `atmospheric-data-community-toolkit` repo on GitHub by
clicking the fork icon button found on the main page here:

- https://github.com/ARM-DOE/ACT
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ forking the repository is highly recommended.
We welcome contributions for all uses of ACT, provided the code can be
distributed under the BSD 3-clause license. A copy of this license is
available in the **LICENSE.txt** file in this directory. For more on
contributing, see the `contributor's guide. <https://github.com/ARM-DOE/ACT/blob/master/CONTRIBUTING.rst>`_
contributing, see the `contributor's guide. <https://github.com/ARM-DOE/ACT/blob/main/CONTRIBUTING.rst>`_ as well as the `code of conduct. <https://github.com/ARM-DOE/ACT/blob/main/CODE_OF_CONDUCT.md>`_

Testing
~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion tests/discovery/test_airnow.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def test_get_airnow():
results = act.discovery.get_airnow_forecast(token, '2022-05-01', zipcode=60108, distance=50)
assert results['CategoryName'].values[0] == 'Good'
assert results['AQI'].values[2] == -1
assert results['ReportingArea'].values[3] == 'North and West Suburbs (Chicago)'
assert results['ReportingArea'].values[3] == 'South and West Suburbs (Chicago)'

results = act.discovery.get_airnow_forecast(
token, '2022-05-01', distance=50, latlon=[41.958, -88.12]
Expand Down
Loading