Skip to content
Merged
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
3 changes: 2 additions & 1 deletion ansible/templates/nhsn-params-prod.json.j2
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"indicator": {
"wip_signal": true,
"static_file_dir": "./static",
"socrata_token": "{{ nhsn_token }}"
"socrata_token": "{{ nhsn_token }}",
"export_start_date": "2020-08-08"
},
"validation": {
"common": {
Expand Down
4 changes: 2 additions & 2 deletions nhsn/delphi_nhsn/pull.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def pull_data(socrata_token: str, dataset_id: str):


def pull_nhsn_data(socrata_token: str, backup_dir: str, custom_run: bool, logger: Optional[logging.Logger] = None):
"""Pull the latest NSSP ER visits data, and conforms it into a dataset.
"""Pull the latest NHSN hospital admission data, and conforms it into a dataset.

The output dataset has:

Expand Down Expand Up @@ -77,7 +77,7 @@ def pull_nhsn_data(socrata_token: str, backup_dir: str, custom_run: bool, logger
def pull_preliminary_nhsn_data(
socrata_token: str, backup_dir: str, custom_run: bool, logger: Optional[logging.Logger] = None
):
"""Pull the latest NSSP ER visits data, and conforms it into a dataset.
"""Pull the latest preliminary NHSN hospital admission data, and conforms it into a dataset.

The output dataset has:

Expand Down
Loading